R Markdown

Run this Rmd file to refresh the database Install packages

# install.packages('RSQLite')

Load data into sqlite

rm(list=ls())
library(DBI)
# for testing
# con <- dbConnect(RSQLite::SQLite(), ":memory:")

con <- dbConnect(RSQLite::SQLite(), "../database/db.sqlite")

### Load Hospital Info
  #Pull Data
hospital_info <- read.csv(file="../data/hospital_general_information.csv", header=TRUE, sep=",", 
                          colClasses = rep("character", 29))
  #replace .'s with _s
names(hospital_info) <- gsub("\\.", "_", names(hospital_info))


# spending by claim
spending_by_claim <- read.csv(file="../data/claims/medicare_hospital_spending_by_claim.csv", header=TRUE, sep=",",
                              colClasses = c("character", "character", "character", "factor", "factor", "numeric", "numeric", "numeric", "factor", "factor", "factor", "factor", "factor"))
  #Clean %'s
spending_by_claim$Percent.of.Spending.Hospital <- as.numeric(gsub("%", "", spending_by_claim$Percent.of.Spending.Hospital))
spending_by_claim$Percent.of.Spending.State <- as.numeric(gsub("%", "", spending_by_claim$Percent.of.Spending.State))
spending_by_claim$Percent.of.Spending.Nation <- as.numeric(gsub("%", "", spending_by_claim$Percent.of.Spending.Nation))
  #replace .'s with _s
names(spending_by_claim) <- gsub("\\.", "_", names(spending_by_claim))

# spending by beneficiary
spending_by_beneficiary <- read.csv(file="../data/claims/medicare_spending_per_beneficiary___hospital.csv", header=TRUE, sep=",",
                                    colClasses = c("character", "character", "character", "character", "character", "character", "character", "character", "factor", "factor", "factor", "factor", "factor", "factor", "factor"))
  #Clean spending field
spending_by_beneficiary$Score <- as.numeric(ifelse(spending_by_beneficiary$Score == "Not Available", NA, spending_by_beneficiary$Score))


# outcomes tables
outcomes_performance_scores <- read.csv(
  file="../data/outcomes/hospital_value-based_purchasing__hvbp____total_performance_score.csv",
  header=TRUE,
  sep=",")
outcomes_efficiency_scores <- read.csv(
  file="../data/outcomes/hospital_value-based_purchasing__hvbp____efficiency_scores.csv",
  header=TRUE, sep=","
)
outcomes_readmissions_reductions <- read.csv(
  file="../data/outcomes/hospital_readmissions_reduction_program.csv",
  header=TRUE,
  sep=","
)
outcomes_clinical_care_domain_scores <- read.csv(
  file="../data/outcomes/hospital_value-based_purchasing__hvbp____clinical_care_domain_scores.csv",
  header=TRUE,
  sep=","
)
outcomes_hac_reductions <- read.csv(
  file="../data/outcomes/hospital-acquired_condition_reduction_program.csv",
  header=TRUE,
  sep=","
)
outcomes_acs_measures <- read.csv(
  file="../data/outcomes/hospital_acs_measures.csv",
  header=TRUE,
  sep=","
)
outcomes_pt_experience_scores <- read.csv(
  file="../data/outcomes/hospital_value-based_purchasing__hvbp____patient_experience_of_care_domain_scores__hcahps_.csv",
  header=TRUE,
  sep=","
)
outcomes_safety_scores <- read.csv(
  file="../data/outcomes/hospital_value-based_purchasing__hvbp____safety.csv",
  header=TRUE,
  sep=","
)
outcomes_complications_and_deaths <- read.csv(
  file="../data/outcomes/complications_and_deaths_-_hospital.csv",
  header=TRUE,
  sep=","
)

# load tables
dbRemoveTable(con, "hospital_info", hospital_info); dbWriteTable(con, "hospital_info", hospital_info)
dbRemoveTable(con, "spending_by_claim", spending_by_claim); dbWriteTable(con, "spending_by_claim", spending_by_claim)
dbRemoveTable(con, "spending_by_beneficiary", spending_by_beneficiary); dbWriteTable(con, "spending_by_beneficiary", spending_by_beneficiary)
dbRemoveTable(con, "outcomes_performance_scores", outcomes_performance_scores); dbWriteTable(con, "outcomes_performance_scores", outcomes_performance_scores)
dbRemoveTable(con, "outcomes_efficiency_scores", outcomes_efficiency_scores); dbWriteTable(con, "outcomes_efficiency_scores", outcomes_efficiency_scores)
dbRemoveTable(con, "outcomes_readmissions_reductions", outcomes_readmissions_reductions); dbWriteTable(con, "outcomes_readmissions_reductions", outcomes_readmissions_reductions)
dbRemoveTable(con, "outcomes_clinical_care_domain_scores", outcomes_clinical_care_domain_scores); dbWriteTable(con, "outcomes_clinical_care_domain_scores", outcomes_clinical_care_domain_scores)
dbRemoveTable(con, "outcomes_hac_reductions", outcomes_hac_reductions); dbWriteTable(con, "outcomes_hac_reductions", outcomes_hac_reductions)
dbRemoveTable(con, "outcomes_acs_measures", outcomes_acs_measures); dbWriteTable(con, "outcomes_acs_measures", outcomes_acs_measures)
dbRemoveTable(con, "outcomes_pt_experience_scores", outcomes_pt_experience_scores); dbWriteTable(con, "outcomes_pt_experience_scores", outcomes_pt_experience_scores)
dbRemoveTable(con, "outcomes_safety_scores", outcomes_safety_scores); dbWriteTable(con, "outcomes_safety_scores", outcomes_safety_scores)
dbRemoveTable(con, "outcomes_complications_and_deaths", outcomes_complications_and_deaths); dbWriteTable(con, "outcomes_complications_and_deaths", outcomes_complications_and_deaths)

#Pull Data from DB
dbListTables(con)
##  [1] "hospital_info"                       
##  [2] "outcomes_acs_measures"               
##  [3] "outcomes_clinical_care_domain_scores"
##  [4] "outcomes_complications_and_deaths"   
##  [5] "outcomes_efficiency_scores"          
##  [6] "outcomes_hac_reductions"             
##  [7] "outcomes_performance_scores"         
##  [8] "outcomes_pt_experience_scores"       
##  [9] "outcomes_readmissions_reductions"    
## [10] "outcomes_safety_scores"              
## [11] "spending_by_beneficary"              
## [12] "spending_by_beneficiary"             
## [13] "spending_by_claim"
dbListFields(con, "hospital_info")
##  [1] "Facility_ID"                                                  
##  [2] "Facility_Name"                                                
##  [3] "Address"                                                      
##  [4] "City"                                                         
##  [5] "State"                                                        
##  [6] "ZIP_Code"                                                     
##  [7] "County_Name"                                                  
##  [8] "Phone_Number"                                                 
##  [9] "Hospital_Type"                                                
## [10] "Hospital_Ownership"                                           
## [11] "Emergency_Services"                                           
## [12] "Meets_criteria_for_meaningful_use_of_EHRs"                    
## [13] "Hospital_overall_rating"                                      
## [14] "Hospital_overall_rating_footnote"                             
## [15] "Mortality_national_comparison"                                
## [16] "Mortality_national_comparison_footnote"                       
## [17] "Safety_of_care_national_comparison"                           
## [18] "Safety_of_care_national_comparison_footnote"                  
## [19] "Readmission_national_comparison"                              
## [20] "Readmission_national_comparison_footnote"                     
## [21] "Patient_experience_national_comparison"                       
## [22] "Patient_experience_national_comparison_footnote"              
## [23] "Effectiveness_of_care_national_comparison"                    
## [24] "Effectiveness_of_care_national_comparison_footnote"           
## [25] "Timeliness_of_care_national_comparison"                       
## [26] "Timeliness_of_care_national_comparison_footnote"              
## [27] "Efficient_use_of_medical_imaging_national_comparison"         
## [28] "Efficient_use_of_medical_imaging_national_comparison_footnote"
## [29] "Location"
dbReadTable(con, "hospital_info")
##      Facility_ID                                      Facility_Name
## 1         400120                              HIMA SAN PABLO-CAGUAS
## 2         314005                                  ANCORA PSYCH HOSP
## 3         194073                       OCEANS HOSPITAL OF BROUSSARD
## 4         100183                              CORAL GABLES HOSPITAL
## 5         454008                         NORTH TEXAS STATE HOSPITAL
## 6         250124                             MAGEE GENERAL HOSPITAL
## 7         454108                             CYPRESS CREEK HOSPITAL
## 8         431312            MARSHALL COUNTY HEALTHCARE CENTER - CAH
## 9         504012                   SMOKEY POINT BEHAVIORAL HOSPITAL
## 10        363306                         DAYTON CHILDREN'S HOSPITAL
## 11        104074                                PARK ROYAL HOSPITAL
## 12        070018                   GREENWICH HOSPITAL ASSOCIATION -
## 13        454103                            KINGWOOD PINES HOSPITAL
## 14        234025                                        CARO CENTER
## 15        161318                         VETERANS MEMORIAL HOSPITAL
## 16        143301                      LARABIDA CHILDRENS HOSPITAL I
## 17        281309                               SYRACUSE AREA HEALTH
## 18        400011                                   HOSPITAL ORIENTE
## 19        464014                   PROVO CANYON BEHAVIORAL HOSPITAL
## 20        334054                       MANHATTAN PSYCHIATRIC CENTER
## 21        530034                              SUMMIT MEDICAL CENTER
## 22        051323                      COLORADO RIVER MEDICAL CENTER
## 23        371342                        MCCURTAIN MEMORIAL HOSPITAL
## 24        264024                  LAKELAND BEHAVIORAL HEALTH SYSTEM
## 25        340156                 CHEROKEE INDIAN HOSPITAL AUTHORITY
## 26        030074                                     SELLS HOSPITAL
## 27        454122              OCEANS BEHAVIORAL HOSPITAL OF ABILENE
## 28        431331                   AVERA DELLS AREA HOSPITAL  - CAH
## 29        474001                                BRATTLEBORO RETREAT
## 30        010051                             GREENE COUNTY HOSPITAL
## 31        171312                           COMANCHE COUNTY HOSPITAL
## 32        454113                                  SUNDANCE HOSPITAL
## 33        424011              PATRICK B HARRIS PSYCHIATRIC HOSPITAL
## 34        144039                             GARFIELD PARK HOSPITAL
## 35        640001                        LBJ TROPICAL MEDICAL CENTER
## 36        404004                        FIRST HOSPITAL PANAMERICANO
## 37        454139                             SUN BEHAVIORAL HOUSTON
## 38        021309                                 KANAKANAK HOSPITAL
## 39        430089                            DUNES SURGICAL HOSPITAL
## 40        400131                           CARIBBEAN MEDICAL CENTER
## 41        334026                             BRUNSWICK PSYCH CENTER
## 42        451329                     RANKIN HOSPITAL MEDICAL CLINIC
## 43        270003                                 ST PETERS HOSPITAL
## 44        450797                           US PAIN & SPINE HOSPITAL
## 45        194094                     PHYSICIANS BEHAVIORAL HOSPITAL
## 46        474004                  VERMONT PSYCHIATRIC CARE HOSPITAL
## 47        400117                             HOSPITAL DR SUSONI INC
## 48        254010                        MS STATE HOSPITAL-WHITFIELD
## 49        250134                WHITFIELD MEDICAL SURGICAL HOSPITAL
## 50        154058                  DOCTORS NEUROPSYCHIATRIC HOSPITAL
## 51        524041                     WILLOW CREEK BEHAVIORAL HEALTH
## 52        114036                                   GREENLEAF CENTER
## 53        400133                               HIMA SAN PABLO CUPEY
## 54        404005                  SAN JUAN CAPESTRANO  HOSPITAL INC
## 55        214018                       SPRING GROVE HOSPITAL CENTER
## 56        521311             ASCENSION OUR LADY OF VICTORY HOSPITAL
## 57        670103                              MEDICAL CITY ALLIANCE
## 58        110209                             TURNING POINT HOSPITAL
## 59        390321    SURGICAL SPECIALTY CENTER AT COORDINATED HEALTH
## 60        180049                            BAPTIST HEALTH RICHMOND
## 61        453311                    SHRINERS HOSPITALS FOR CHILDREN
## 62        431323                    REGIONAL HEALTH CUSTER HOSPITAL
## 63        344029                            GOOD HOPE HOSPITAL, INC
## 64        141348                          RED BUD REGIONAL HOSPITAL
## 65        250099                         GREENWOOD LEFLORE HOSPITAL
## 66        471302                               MT ASCUTNEY HOSPITAL
## 67        330055                       NEW YORK-PRESBYTERIAN/QUEENS
## 68        210064     LEVINDALE HEBREW GERIATRIC CENTER AND HOSPITAL
## 69        110105                   COLQUITT REGIONAL MEDICAL CENTER
## 70        050327               LOMA LINDA UNIVERSITY MEDICAL CENTER
## 71        210023                        ANNE ARUNDEL MEDICAL CENTER
## 72        170122      ASCENSION VIA CHRISTI HOSPITALS WICHITA, INC.
## 73        220019                     HARRINGTON MEMORIAL HOSPITAL-1
## 74        060107                             NATIONAL JEWISH HEALTH
## 75        271309                         PRAIRIE COMMUNITY HOSPITAL
## 76        670080                SETON MEDICAL CENTER HARKER HEIGHTS
## 77        250163                     PATIENTS CHOICE MEDICAL CENTER
## 78        170017                    SUSAN B ALLEN MEMORIAL HOSPITAL
## 79        050609 KAISER FOUNDATION HOSPITAL - ORANGE COUNTY - ANAHE
## 80        050132                  SAN GABRIEL VALLEY MEDICAL CENTER
## 81        224032             WORCESTER RECOVERY CENTER AND HOSPITAL
## 82        451363                          JACKSON HEALTHCARE CENTER
## 83        344023             JULIAN F KEITH ALCOHOL & DRUG ABUSE TX
## 84        340141                NEW HANOVER REGIONAL MEDICAL CENTER
## 85        344031              STRATEGIC BEHAVIORAL CENTER-CHARLOTTE
## 86        451337                      W J MANGOLD MEMORIAL HOSPITAL
## 87        510055                     CABELL HUNTINGTON HOSPITAL INC
## 88        264031         OSAGE BEACH CENTER FOR COGNITIVE DISORDERS
## 89        281344                             CHERRY COUNTY HOSPITAL
## 90        490033                           WARREN MEMORIAL HOSPITAL
## 91        510022                     CHARLESTON AREA MEDICAL CENTER
## 92        300017                            PARKLAND MEDICAL CENTER
## 93        450358                         HOUSTON METHODIST HOSPITAL
## 94        130014                         WEST VALLEY MEDICAL CENTER
## 95        100048                                       JAY HOSPITAL
## 96        431301                       FAULKTON AREA MEDICAL CENTER
## 97        100057                              ADVENTHEALTH WATERMAN
## 98        420072                    HAMPTON REGIONAL MEDICAL CENTER
## 99        521318                             LADD MEMORIAL HOSPITAL
## 100       190263                        HEART HOSPITAL OF LAFAYETTE
## 101       241357                            ESSENTIA HEALTH FOSSTON
## 102       230099                 PROMEDICA MONROE REGIONAL HOSPITAL
## 103       220015                  COOLEY DICKINSON HOSPITAL INC,THE
## 104       050581                   LAKEWOOD REGIONAL MEDICAL CENTER
## 105       390127                              PHOENIXVILLE HOSPITAL
## 106       030121                  MOUNTAIN VISTA MEDICAL CENTER, LP
## 107       360133                GRANDVIEW HOSPITAL & MEDICAL CENTER
## 108       260180             CHRISTIAN HOSPITAL NORTHEAST-NORTHWEST
## 109       500150                 LEGACY SALMON CREEK MEDICAL CENTER
## 110       170183                   KANSAS SURGERY & RECOVERY CENTER
## 111       281362                      PHELPS MEMORIAL HEALTH CENTER
## 112       391300                    GEISINGER JERSEY SHORE HOSPITAL
## 113       210011                               SAINT AGNES HOSPITAL
## 114       100256              REGIONAL MEDICAL CENTER BAYONET POINT
## 115       180093                        BAPTIST HEALTH MADISONVILLE
## 116       204005                             SPRING HARBOR HOSPITAL
## 117       330409                            THE BURDETT CARE CENTER
## 118       061326              UCHEALTH PIKES PEAK REGIONAL HOSPITAL
## 119       453300                      COOK CHILDRENS MEDICAL CENTER
## 120       501325                           FORKS COMMUNITY HOSPITAL
## 121       151312  INDIANA UNIVERSITY HEALTH WHITE MEMORIAL HOSPITAL
## 122       054032                                  BHC ALHAMBRA HOSP
## 123       100084                   LEESBURG REGIONAL MEDICAL CENTER
## 124       520027      ASCENSION COLUMBIA ST MARY'S HOSPITAL OZAUKEE
## 125       461335                             BEAVER VALLEY HOSPITAL
## 126       440231                                TRUSTPOINT HOSPITAL
## 127       450834                              PHYSICIANS CENTRE,THE
## 128       150004                          FRANCISCAN HEALTH HAMMOND
## 129       034022                  SONORA BEHAVIORAL HEALTH HOSPITAL
## 130       521350                          ASPIRUS LANGLADE HOSPITAL
## 131       110076                             EMORY DECATUR HOSPITAL
## 132       191301                             UNION GENERAL HOSPITAL
## 133       330047                    ST MARY'S HOSPITAL AT AMSTERDAM
## 134       461304                CENTRAL VALLEY MEDICAL CENTER - CAH
## 135       191323                     RICHLAND PARISH HOSPITAL-DELHI
## 136       281334                         BOONE COUNTY HEALTH CENTER
## 137       171308                            MERCY HOSPITAL COLUMBUS
## 138       244012                        COMM BEHAVIORAL HEALTH HOSP
## 139       170006                 VIA CHRISTI HOSPITAL PITTSBURG INC
## 140       050242                                 DOMINICAN HOSPITAL
## 141       281354                          CRETE AREA MEDICAL CENTER
## 142       334001                          HUTCHINGS PSYCHIATRIC CTR
## 143       274004                        SHODAIR CHILDREN'S HOSPITAL
## 144       050515                  KAISER FOUNDATION HOSPITAL - ZION
## 145       030110                                 ABRAZO WEST CAMPUS
## 146       371305                 JANE PHILLIPS NOWATA HOSPITAL, INC
## 147       110109                             EMANUEL MEDICAL CENTER
## 148       140304                     ADVENTIST BOLINGBROOK HOSPITAL
## 149       400022                                 HOSPITAL DAMAS INC
## 150       030084          CHINLE COMPREHENSIVE HEALTH CARE FACILITY
## 151       140187                       HSHS ST ELIZABETH'S HOSPITAL
## 152       171302                          OSWEGO COMMUNITY HOSPITAL
## 153       150058                    MEMORIAL HOSPITAL OF SOUTH BEND
## 154       241320                                 RIVERVIEW HOSPITAL
## 155       210062          MEDSTAR SOUTHERN MARYLAND HOSPITAL CENTER
## 156       190086                  NORTHERN LOUISIANA MEDICAL CENTER
## 157       051300           EASTERN PLUMAS HOSPITAL - PORTOLA CAMPUS
## 158       170190                    MANHATTAN SURGICAL HOSPITAL LLC
## 159       460054                             CACHE VALLEY  HOSPITAL
## 160       521352                                UPLAND HILLS HEALTH
## 161       443303                  EAST TENNESSEE CHILDRENS HOSPITAL
## 162       381302                   SAMARITAN NORTH LINCOLN HOSPITAL
## 163       460011                                CASTLEVIEW HOSPITAL
## 164       340001              CAROLINAS HEALTHCARE SYSTEM NORTHEAST
## 165       200031                                CARY MEDICAL CENTER
## 166       034026                                    VALLEY HOSPITAL
## 167       110184                          WELLSTAR DOUGLAS HOSPITAL
## 168       340053          NOVANT HEALTH PRESBYTERIAN MEDICAL CENTER
## 169       171332                     KIOWA COUNTY MEMORIAL HOSPITAL
## 170       100040                   ASCENSION ST VINCENT'S RIVERSIDE
## 171       451358                                  MEMORIAL HOSPITAL
## 172       450447                          NAVARRO REGIONAL HOSPITAL
## 173       291314                          SOUTH LYON MEDICAL CENTER
## 174       230132                              HURLEY MEDICAL CENTER
## 175       451364                      OTTO KAISER MEMORIAL HOSPITAL
## 176       350006                                  TRINITY HOSPITALS
## 177       050076         KAISER FOUNDATION HOSPITAL - SAN FRANCISCO
## 178       190298                CENTRAL LOUISIANA SURGICAL HOSPITAL
## 179       241376                             GLACIAL RIDGE HOSPITAL
## 180       120005                                HILO MEDICAL CENTER
## 181       350063    P H S INDIAN HOSP AT BELCOURT-QUENTIN N BURDICK
## 182       050028                       MAD RIVER COMMUNITY HOSPITAL
## 183       330128                           ELMHURST HOSPITAL CENTER
## 184       444005             BEHAVIORAL HEALTHCARE CENTER AT MARTIN
## 185       050008  CALIFORNIA PACIFIC MEDICAL CTR-DAVIES CAMPUS HOSP
## 186       490037                  RIVERSIDE SHORE MEMORIAL HOSPITAL
## 187       140275                              GENESIS HEALTH SYSTEM
## 188       230015                                THREE RIVERS HEALTH
## 189       340183          NOVANT HEALTH HUNTERSVILLE MEDICAL CENTER
## 190       330003                           ALBANY MEMORIAL HOSPITAL
## 191       450856            SOUTH TEXAS SPINE AND SURGICAL HOSPITAL
## 192       060027                                 FOOTHILLS HOSPITAL
## 193       394040                         MEADOWS PSYCHIATRIC CENTER
## 194       040078                       NATIONAL PARK MEDICAL CENTER
## 195       053300                         VALLEY CHILDREN'S HOSPITAL
## 196       240002           ESSENTIA HEALTH ST MARY'S MEDICAL CENTER
## 197       331320                       COBLESKILL REGIONAL HOSPITAL
## 198       260163                             PARKLAND HEALTH CENTER
## 199       010091                       GROVE HILL MEMORIAL HOSPITAL
## 200       511301                   WEBSTER COUNTY MEMORIAL HOSPITAL
## 201       154050                                NORTHEASTERN CENTER
## 202       230080                           MCLAREN CENTRAL MICHIGAN
## 203       324014            CENTRAL DESERT BEHAVIORAL HEALTH CENTER
## 204       040001                   SILOAM SPRINGS REGIONAL HOSPITAL
## 205       050397                   COALINGA REGIONAL MEDICAL CENTER
## 206       461302                             MOAB REGIONAL HOSPITAL
## 207       281353                        VALLEY COUNTY HEALTH SYSTEM
## 208       390139                MAIN LINE HOSPITAL BRYN MAWR CAMPUS
## 209       040134                       ARKANSAS HEART HOSPITAL, LLC
## 210       150072                                  MEMORIAL HOSPITAL
## 211       104080                     CORAL SHORES BEHAVIORAL HEALTH
## 212       031312                    COPPER QUEEN COMMUNITY HOSPITAL
## 213       381305                             BLUE MOUNTAIN HOSPITAL
## 214       370099                         HILLCREST HOSPITAL CUSHING
## 215       051308                 SURPRISE VALLEY COMMUNITY HOSPITAL
## 216       381315   SAINT ALPHONSUS MEDICAL CENTER - BAKER CITY, INC
## 217       100121                     BARTOW REGIONAL MEDICAL CENTER
## 218       370093                                       O U MEDICINE
## 219       351329                   SANFORD MEDICAL CENTER HILLSBORO
## 220       271342                          DANIELS MEMORIAL HOSPITAL
## 221       360006                       RIVERSIDE METHODIST HOSPITAL
## 222       440060                             MILAN GENERAL HOSPITAL
## 223       250040                        SINGING RIVER HEALTH SYSTEM
## 224       101304                           CALHOUN-LIBERTY HOSPITAL
## 225       220073                                    MORTON HOSPITAL
## 226       451369                   GOLDEN PLAINS COMMUNITY HOSPITAL
## 227       400126                  HOSPITAL METROPOLITANO SAN GERMAN
## 228       440057                           CLAIBORNE MEDICAL CENTER
## 229       360010                                     UNION HOSPITAL
## 230       501305                                   LINCOLN HOSPITAL
## 231       161319                   MERCY ONE ELKADER MEDICAL CENTER
## 232       110002                      UPSON REGIONAL MEDICAL CENTER
## 233       501303                            WILLAPA HARBOR HOSPITAL
## 234       450709                 HOUSTON METHODIST ST JOHN HOSPITAL
## 235       030037                           ST LUKE'S MEDICAL CENTER
## 236       240076                                   BUFFALO HOSPITAL
## 237       160110                                     ALLEN HOSPITAL
## 238       520038               AURORA MEDICAL CTR WASHINGTON COUNTY
## 239       390168                           BUTLER MEMORIAL HOSPITAL
## 240       110233               SOUTHEASTERN REGIONAL MEDICAL CENTER
## 241       260050                  MOSAIC MEDICAL CENTER - MARYVILLE
## 242       190202               OCHSNER MEDICAL CENTER - BATON ROUGE
## 243       450855                           HARLINGEN MEDICAL CENTER
## 244       330014                    JAMAICA HOSPITAL MEDICAL CENTER
## 245       330350      UNIVERSITY HOSPITAL OF BROOKLYN ( DOWNSTATE )
## 246       151315            CAMERON MEMORIAL COMMUNITY HOSPITAL INC
## 247       360078        UNIVERSITY HOSPITALS PORTAGE MEDICAL CENTER
## 248       670118                               FIRST TEXAS HOSPITAL
## 249       364029  WINDSOR LAURELWOOD CENTER FOR BEHAVORIAL MEDICINE
## 250       051307                     CATALINA ISLAND MEDICAL CENTER
## 251       230047                         HENRY FORD MACOMB HOSPITAL
## 252       074008                                  NATCHAUG HOSPITAL
## 253       050153                                  O'CONNOR HOSPITAL
## 254       361322                                  BLUFFTON HOSPITAL
## 255       050234             SHARP CORONADO HOSPITAL AND HLTHCR CTR
## 256       330151                            ST JAMES MERCY HOSPITAL
## 257       440035                     TENNOVA HEALTHCARE-CLARKSVILLE
## 258       170049                              OLATHE MEDICAL CENTER
## 259       291311                               DESERT VIEW HOSPITAL
## 260       210002                                 UMD MEDICAL CENTER
## 261       014000              HILL CREST BEHAVIORAL HEALTH SERVICES
## 262       320090               PRESBYTERIAN SANTA FE MEDICAL CENTER
## 263       190007               NATCHITOCHES REGIONAL MEDICAL CENTER
## 264       281355                        OGALLALA COMMUNITY HOSPITAL
## 265       050159                      VENTURA COUNTY MEDICAL CENTER
## 266       251302                           MONROE REGIONAL HOSPITAL
## 267       100321                 ASCENSION ST VINCENT'S CLAY COUNTY
## 268       194082                      JENNINGS SENIOR CARE HOSPITAL
## 269       050541          KAISER FOUNDATION HOSPITAL - REDWOOD CITY
## 270       250036                      GEORGE REGIONAL HEALTH SYSTEM
## 271       240044                             WINONA HEALTH SERVICES
## 272       391309                      BARNES-KASSON COUNTY HOSPITAL
## 273       021314                              MT EDGECUMBE HOSPITAL
## 274       281303                           NIOBRARA VALLEY HOSPITAL
## 275       451301                           REAGAN MEMORIAL HOSPITAL
## 276       010033                     UNIVERSITY OF ALABAMA HOSPITAL
## 277       161346                                SIOUX CENTER HEALTH
## 278       161334                  HUMBOLDT COUNTY MEMORIAL HOSPITAL
## 279       100161                  CENTRAL FLORIDA REGIONAL HOSPITAL
## 280       041323                       ASHLEY COUNTY MEDICAL CENTER
## 281       190201                CHRISTUS OCHSNER LAKE AREA HOSPITAL
## 282       240214                               MAPLE GROVE HOSPITAL
## 283       110003                            MEMORIAL SATILLA HEALTH
## 284       670124    THE HOSPITALS OF PROVIDENCE HORIZON CITY CAMPUS
## 285       111319                     WELLSTAR SYLVAN GROVE HOSPITAL
## 286       171376                              GIRARD MEDICAL CENTER
## 287       464011                          COPPER HILLS YOUTH CENTER
## 288       340024                    SAMPSON REGIONAL MEDICAL CENTER
## 289       010128                             JACKSON MEDICAL CENTER
## 290       450672                 PLAZA MEDICAL CENTER OF FORT WORTH
## 291       441313                            HANCOCK COUNTY HOSPITAL
## 292       050677        KAISER FOUNDATION HOSPITAL - WOODLAND HILLS
## 293       280132                            BELLEVUE MEDICAL CENTER
## 294       054146      TELECARE HERITAGE PSYCHIATRIC HEALTH FACILITY
## 295       041308                                   MCGEHEE HOSPITAL
## 296       144038             CHOATE MENTAL HEALTH & DEVELOPMENT CTR
## 297       230269                            BEAUMONT HOSPITAL, TROY
## 298       360096                       EAST LIVERPOOL CITY HOSPITAL
## 299       374001      NORTHWEST CENTER FOR BEHAVIORAL HEALTH (NCBH)
## 300       371317                   MERCY HOSPITAL LOGAN COUNTY, INC
## 301       224028            DR JOHN C CORRIGAN MENTAL HEALTH CENTER
## 302       451385                           GOODALL WITCHER HOSPITAL
## 303       050118                        DOCTORS HOSPITAL OF MANTECA
## 304       670109                             ALTUS BAYTOWN HOSPITAL
## 305       214003                         BROOK LANE HEALTH SERVICES
## 306       494023                                  DOMINION HOSPITAL
## 307       100329                              OVIEDO MEDICAL CENTER
## 308       450369                  CHILDRESS REGIONAL MEDICAL CENTER
## 309       034032                       COPPER SPRINGS HOSPITAL, LLC
## 310       170199                MINIMALLY INVASIVE SURGERY HOSPITAL
## 311       260095                         CENTERPOINT MEDICAL CENTER
## 312       170086                             STORMONT VAIL HOSPITAL
## 313       140155                         PRESENCE ST MARYS HOSPITAL
## 314       340013                 RUTHERFORD REGIONAL MEDICAL CENTER
## 315       531314                      NIOBRARA HEALTH & LIFE CENTER
## 316       490004                         SENTARA RMH MEDICAL CENTER
## 317       230059                           SAINT MARY'S HEALTH CARE
## 318       260214                     BELTON REGIONAL MEDICAL CENTER
## 319       010008                        CRENSHAW COMMUNITY HOSPITAL
## 320       050684                      MENIFEE VALLEY MEDICAL CENTER
## 321       330239                             UPMC CHAUTAUQUA AT WCA
## 322       140008                  LOYOLA GOTTLIEB MEMORIAL HOSPITAL
## 323       330203                                    CROUSE HOSPITAL
## 324       174006                              LARNED STATE HOSPITAL
## 325       250007                                MERIT HEALTH BILOXI
## 326       161332                 MANNING REGIONAL HEALTHCARE CENTER
## 327       390142                     ALBERT EINSTEIN MEDICAL CENTER
## 328       450803                     UNITED MEMORIAL MEDICAL CENTER
## 329       330008                  WYOMING COUNTY COMMUNITY HOSPITAL
## 330       034033            CORNERSTONE BEHAVIORAL HEALTH EL DORADO
## 331       070017                            MIDSTATE MEDICAL CENTER
## 332       150008                          ST CATHERINE HOSPITAL INC
## 333       100269                                PALMS WEST HOSPITAL
## 334       240104                 ST FRANCIS REGIONAL MEDICAL CENTER
## 335       420037                    GHS HILLCREST MEMORIAL HOSPITAL
## 336       194114                      RIVER PLACE BEHAVIORAL HEALTH
## 337       500011                            HIGHLINE MEDICAL CENTER
## 338       444024       BEHAVIORAL HEALTHCARE CENTER AT MEMPHIS, INC
## 339       240101           ESSENTIA HEALTH ST MARYS - DETROIT LAKES
## 340       100092                         STEWARD ROCKLEDGE HOSPITAL
## 341       180035                  ST ELIZABETH MEDICAL CENTER NORTH
## 342       261318                   SALEM MEMORIAL DISTRICT HOSPITAL
## 343       520049                           BELLIN MEMORIAL HOSPITAL
## 344       354005                 RED RIVER BEHAVIORAL HEALTH SYSTEM
## 345       110023                                ADVENTHEALTH GORDON
## 346       140166                                  ST MARYS HOSPITAL
## 347       364052                      CLEAR VISTA HEALTH & WELLNESS
## 348       190088                          SPRINGHILL MEDICAL CENTER
## 349       150034                         ST MARY MEDICAL CENTER INC
## 350       260068                              BOONE HOSPITAL CENTER
## 351       010095                               HALE COUNTY HOSPITAL
## 352       330331                                 PLAINVIEW HOSPITAL
## 353       320062                     CROWNPOINT HEALTHCARE FACILITY
## 354       140082                    LOUIS A WEISS MEMORIAL HOSPITAL
## 355       361331                   FAYETTE COUNTY MEMORIAL HOSPITAL
## 356       450379                              DALLAS MEDICAL CENTER
## 357       190020                       LANE REGIONAL MEDICAL CENTER
## 358       100140                    BAPTIST MEDICAL CENTER - NASSAU
## 359       050084             ST JOSEPH'S MEDICAL CENTER OF STOCKTON
## 360       191308                          PREVOST MEMORIAL HOSPITAL
## 361       440067                          LAKEWAY REGIONAL HOSPITAL
## 362       330250   CHAMPLAIN VALLEY PHYSICIANS HOSPITAL MEDICAL CTR
## 363       150162                     FRANCISCAN HEALTH INDIANAPOLIS
## 364       230100                       ASCENSION ST JOSEPH HOSPITAL
## 365       050320                                  HIGHLAND HOSPITAL
## 366       260052                          MERCY HOSPITAL WASHINGTON
## 367       280023                              CHI HEALTH ST FRANCIS
## 368       140208          ADVOCATE CHRIST HOSPITAL & MEDICAL CENTER
## 369       050040                 LAC/OLIVE VIEW-UCLA MEDICAL CENTER
## 370       050226               AHMC ANAHEIM REGIONAL MEDICAL CENTER
## 371       450395                 MEMORIAL MEDICAL CENTER LIVINGSTON
## 372       390112        CHAN SOON- SHIONG MEDICAL CENTER AT WINDBER
## 373       430015                           AVERA ST MARY'S HOSPITAL
## 374       050125                REGIONAL MEDICAL CENTER OF SAN JOSE
## 375       524018                           ROGERS MEMORIAL HOSPITAL
## 376       141344                  LAWRENCE COUNTY MEMORIAL HOSPITAL
## 377       430083                 PHS INDIAN HOSPITAL AT EAGLE BUTTE
## 378       260024                     TEXAS COUNTY MEMORIAL HOSPITAL
## 379       320057                       SANTA FE PHS INDIAN HOSPITAL
## 380       380021                         TUALITY COMMUNITY HOSPITAL
## 381       490115                      TWIN COUNTY REGIONAL HOSPITAL
## 382       363305                     NATIONWIDE CHILDREN'S HOSPITAL
## 383       450677     TEXAS HEALTH HUGULEY HOSPITAL FORT WORTH SOUTH
## 384       054095                                   AURORA SAN DIEGO
## 385       104007                   NORTHEAST FLORIDA STATE HOSPITAL
## 386       370206                            OKLAHOMA SPINE HOSPITAL
## 387       050424                             SCRIPPS GREEN HOSPITAL
## 388       241365                       SWIFT COUNTY BENSON HOSPITAL
## 389       060009                            LUTHERAN MEDICAL CENTER
## 390       010016                      SHELBY BAPTIST MEDICAL CENTER
## 391       100224             UNIVERSITY HOSPITAL AND MEDICAL CENTER
## 392       140160                              FHN MEMORIAL HOSPITAL
## 393       101308               NORTHWEST FLORIDA COMMUNITY HOSPITAL
## 394       260064             SSM HEALTH ST. MARY'S HOSPITAL-AUDRAIN
## 395       030092             HONORHEALTH DEER VALLEY MEDICAL CENTER
## 396       050760               KAISER FOUNDATION HOSPITAL - ANTIOCH
## 397       190133                              ALLEN PARISH HOSPITAL
## 398       170014                                ADVENTHEALTH OTTAWA
## 399       420107                               MCLEOD HEALTH CHERAW
## 400       450610      MEMORIAL HERMANN MEMORIAL CITY MEDICAL CENTER
## 401       454121                               AUSTIN OAKS HOSPITAL
## 402       141320                           PARIS COMMUNITY HOSPITAL
## 403       400127             ADMIN DE SERVICIOS MEDICOS  PUERTO RIC
## 404       040016                                UAMS MEDICAL CENTER
## 405       104016                      RIVER POINT BEHAVIORAL HEALTH
## 406       010108                        PRATTVILLE BAPTIST HOSPITAL
## 407       364050                        ACCESS HOSPITAL DAYTON, LLC
## 408       141309                          ADVOCATE EUREKA  HOSPITAL
## 409       381309                             LAKE DISTRICT HOSPITAL
## 410       030108             CORE INSTITUTE SPECIALTY HOSPITAL, THE
## 411       210016 ADVENTIST HEALTHCARE WASHINGTON ADVENTIST HOSPITAL
## 412       020012                        FAIRBANKS MEMORIAL HOSPITAL
## 413       271336                              NORTH VALLEY HOSPITAL
## 414       380009                          OHSU HOSPITAL AND CLINICS
## 415       451303                           LIMESTONE MEDICAL CENTER
## 416       320002        CHRISTUS ST VINCENT REGIONAL MEDICAL CENTER
## 417       364007                  TWIN VALLEY BEHAVIORAL HEALTHCARE
## 418       033303                 HACIENDA CHILDREN'S HOSPITAL, INC.
## 419       380037                  PROVIDENCE NEWBERG MEDICAL CENTER
## 420       400098                             HOSPITAL SAN FRANCISCO
## 421       670099                     EMIL J FREIREICH CANCER CENTER
## 422       290005                               NORTH VISTA HOSPITAL
## 423       270014                                ST PATRICK HOSPITAL
## 424       234040                        SAMARITAN BEHAVIORAL CENTER
## 425       440068               STARR REGIONAL MEDICAL CENTER ATHENS
## 426       150150                                DUPONT HOSPITAL LLC
## 427       451306                                    KIMBLE HOSPITAL
## 428       380005                  ASANTE ASHLAND COMMUNITY HOSPITAL
## 429       250017                  TRACE REGIONAL HOSP AND SWING BED
## 430       500050               PEACEHEALTH SOUTHWEST MEDICAL CENTER
## 431       390090                                 WEST PENN HOSPITAL
## 432       140137                       GREENVILLE REGIONAL HOSPITAL
## 433       410008                          SOUTH COUNTY HOSPITAL INC
## 434       050168                             ST JUDE MEDICAL CENTER
## 435       171328                        OTTAWA COUNTY HEALTH CENTER
## 436       670025                    THE HEART HOSPITAL BAYLOR PLANO
## 437       501333                 KITTITAS VALLEY COMMUNITY HOSPITAL
## 438       180020 MIDDLESBORO APPALACHIAN REGIONAL HEALTHCARE HOSPIT
## 439       190098                      OCHSNER LSU HEALTH SHREVEPORT
## 440       204004                    DOROTHEA DIX PSYCHIATRIC CENTER
## 441       271320                       CABINET PEAKS MEDICAL CENTER
## 442       061305                          MELISSA MEMORIAL HOSPITAL
## 443       151310                      PARKVIEW WABASH HOSPITAL, INC
## 444       110192                            EASTSIDE MEDICAL CENTER
## 445       391303                       FULTON COUNTY MEDICAL CENTER
## 446       340010                            WAYNE MEMORIAL HOSPITAL
## 447       490059                      BON SECOURS ST MARYS HOSPITAL
## 448       364044                             LINDNER CENTER OF HOPE
## 449       320005                   SAN JUAN REGIONAL MEDICAL CENTER
## 450       190026                    RAPIDES REGIONAL MEDICAL CENTER
## 451       194022                                  LONGLEAF HOSPITAL
## 452       241333               MAYO CLINIC HEALTH SYSTEM - ST JAMES
## 453       141331                         MARSHALL BROWNING HOSPITAL
## 454       390065                                GETTYSBURG HOSPITAL
## 455       280081                                CHI HEALTH IMMANUEL
## 456       050239                  GLENDALE ADVENTIST MEDICAL CENTER
## 457       431305               DOUGLAS COUNTY MEMORIAL HOSPITAL-CAH
## 458       020026                       ALASKA NATIVE MEDICAL CENTER
## 459       140290                          ST ALEXIUS MEDICAL CENTER
## 460       330241  UNIVERSITY HOSPITAL S U N Y HEALTH SCIENCE CENTER
## 461       520087                  GUNDERSEN LUTHERAN MEDICAL CENTER
## 462       450272                       CENTRAL TEXAS MEDICAL CENTER
## 463       491307                        PAGE MEMORIAL HOSPITAL, INC
## 464       390198                       MILLCREEK COMMUNITY HOSPITAL
## 465       051316                           FAIRCHILD MEDICAL CENTER
## 466       240022                 SANFORD WORTHINGTON MEDICAL CENTER
## 467       090011                 MEDSTAR WASHINGTON HOSPITAL CENTER
## 468       330211                     CLAXTON-HEPBURN MEDICAL CENTER
## 469       161356                         HENRY COUNTY HEALTH CENTER
## 470       040071                  JEFFERSON REGIONAL MEDICAL CENTER
## 471       300029                       PORTSMOUTH REGIONAL HOSPITAL
## 472       521332                              SPOONER HEALTH SYSTEM
## 473       450771           TEXAS HEALTH PRESBYTERIAN HOSPITAL PLANO
## 474       340129                LAKE NORMAN REGIONAL MEDICAL CENTER
## 475       053310                    SHRINERS HOSPITALS FOR CHILDREN
## 476       491300                            BATH COMMUNITY HOSPITAL
## 477       490066       SENTARA WILLIAMSBURG REGIONAL MEDICAL CENTER
## 478       530006                         SHERIDAN MEMORIAL HOSPITAL
## 479       050133                       ADVENTIST HEALTH AND RIDEOUT
## 480       090005                           SIBLEY MEMORIAL HOSPITAL
## 481       190050                       BEAUREGARD MEMORIAL HOSPITAL
## 482       520002                     ASCENSION ST MICHAELS HOSPITAL
## 483       100127                              MORTON PLANT HOSPITAL
## 484       310058                   BERGEN NEW BRIDGE MEDICAL CENTER
## 485       050290              PROVIDENCE SAINT JOHN'S HEALTH CENTER
## 486       331318                        CARTHAGE AREA HOSPITAL, INC
## 487       361302                         TRINITY HOSPITAL TWIN CITY
## 488       240210                      HEALTHEAST ST JOHN'S HOSPITAL
## 489       030024           ST. JOSEPH'S HOSPITAL AND MEDICAL CENTER
## 490       050726                       STANISLAUS SURGICAL HOSPITAL
## 491       350002                              CHI ST ALEXIUS HEALTH
## 492       390107                                     UPMC PASSAVANT
## 493       160029                                     MERCY HOSPITAL
## 494       290032                     NORTHERN NEVADA MEDICAL CENTER
## 495       450018                 UNIVERSITY OF TEXAS MEDICAL BRANCH
## 496       330141                     LONG ISLAND COMMUNITY HOSPITAL
## 497       330158                 GOOD SAMARITAN HOSPITAL OF SUFFERN
## 498       500054             PROV SACRED HRT MED CTR & CHILDS HOSP.
## 499       231300                      PAUL OLIVER MEMORIAL HOSPITAL
## 500       131310                                   ST LUKE'S JEROME
## 501       330405                               HELEN HAYES HOSPITAL
## 502       194008                    EASTERN LA MENTAL HEALTH SYSTEM
## 503       430097                    SANFORD ABERDEEN MEDICAL CENTER
## 504       210035               UMD CHARLES REGIONAL  MEDICAL CENTER
## 505       140167                         IROQUOIS MEMORIAL HOSPITAL
## 506       290042                                    HARMON HOSPITAL
## 507       454060                      LAUREL RIDGE TREATMENT CENTER
## 508       451354                                  HAMILTON HOSPITAL
## 509       054074                           ADVENTIST HEALTH VALLEJO
## 510       060003                           LONGMONT UNITED HOSPITAL
## 511       271307                       BENEFIS TETON MEDICAL CENTER
## 512       050441                               STANFORD HEALTH CARE
## 513       380060                          ADVENTIST HEALTH PORTLAND
## 514       140034           SSM HEALTH ST MARY'S HOSPITAL -CENTRALIA
## 515       361318                        FOSTORIA COMMUNITY HOSPITAL
## 516       181302               THE JAMES B HAGGIN MEMORIAL HOSPITAL
## 517       194069                        COVINGTON BEHAVIORAL HEALTH
## 518       200024                       CENTRAL MAINE MEDICAL CENTER
## 519       310017                             CHILTON MEDICAL CENTER
## 520       260081              SSM HEALTH ST CLARE HOSPITAL - FENTON
## 521       451371                       SETON EDGAR B DAVIS HOSPITAL
## 522       141342                              UNION COUNTY HOSPITAL
## 523       310086                       JEFFERSON STRATFORD HOSPITAL
## 524       440081                             LECONTE MEDICAL CENTER
## 525       250057         KING'S DAUGHTERS MEDICAL CENTER-BROOKHAVEN
## 526       390256                    MILTON S HERSHEY MEDICAL CENTER
## 527       040014                        WHITE COUNTY MEDICAL CENTER
## 528       454093                            SUNRISE CANYON HOSPITAL
## 529       670076 BAYLOR SCOTT AND WHITE SURGICAL HOSPITAL AT SHERMA
## 530       500051                   OVERLAKE HOSPITAL MEDICAL CENTER
## 531       171324                          SATANTA DISTRICT HOSPITAL
## 532       170110          BOB WILSON MEMORIAL GRANT COUNTY HOSPITAL
## 533       520102                     AURORA LAKELAND MEDICAL CENTER
## 534       340090                                    JOHNSTON HEALTH
## 535       141333               SARAH D CULBERTSON MEMORIAL HOSPITAL
## 536       310006                         ST MARY'S GENERAL HOSPITAL
## 537       440194              TRISTAR HENDERSONVILLE MEDICAL CENTER
## 538       150167         ORTHOPAEDIC HOSPITAL AT PARKVIEW NORTH LLC
## 539       050351                   TORRANCE MEMORIAL MEDICAL CENTER
## 540       151311      INDIANA UNIVERSITY HEALTH TIPTON HOSPITAL INC
## 541       050102         PARKVIEW COMMUNITY HOSPITAL MEDICAL CENTER
## 542       431337     AVERA HAND COUNTY MEMORIAL HOSPITAL AND CLINIC
## 543       390019                                 PALMERTON HOSPITAL
## 544       051306                               GLENN MEDICAL CENTER
## 545       030010                                ST. MARY'S HOSPITAL
## 546       050567               MISSION HOSPITAL REGIONAL MED CENTER
## 547       320089               UNM SANDOVAL REGIONAL MEDICAL CENTER
## 548       400105               HOSPITAL UNIVERSITARIO DR RUIZ ARNAU
## 549       150109                        FRANCISCAN HEALTH LAFAYETTE
## 550       050342              PIONEERS MEMORIAL HEALTHCARE DISTRICT
## 551       310044           CAPITAL HEALTH MEDICAL CENTER - HOPEWELL
## 552       450347                       HUNTSVILLE MEMORIAL HOSPITAL
## 553       053306                     CHILDREN'S HOSPITAL AT MISSION
## 554       371324                   HARPER COUNTY COMMUNITY HOSPITAL
## 555       100151                                        MAYO CLINIC
## 556       500024                       PROVIDENCE ST PETER HOSPITAL
## 557       130003                  ST JOSEPH REGIONAL MEDICAL CENTER
## 558       260094                         COX MEDICAL CENTER BRANSON
## 559       420051             MCLEOD REGIONAL MEDICAL CENTER-PEE DEE
## 560       330024                               MOUNT SINAI HOSPITAL
## 561       050724                         BAKERSFIELD HEART HOSPITAL
## 562       190014                      TECHE REGIONAL MEDICAL CENTER
## 563       281321                    MERCYONE OAKLAND MEDICAL CENTER
## 564       050723          KAISER FOUNDATION HOSPITAL - BALDWIN PARK
## 565       261327                       RAY COUNTY MEMORIAL HOSPITAL
## 566       500030                                 ST JOSEPH HOSPITAL
## 567       050189                     GEORGE L MEE MEMORIAL HOSPITAL
## 568       460058                                  RIVERTON HOSPITAL
## 569       051315                                   TRINITY HOSPITAL
## 570       171307                       RAWLINS COUNTY HEALTH CENTER
## 571       670023                 METHODIST MANSFIELD MEDICAL CENTER
## 572       100142                                   JACKSON HOSPITAL
## 573       240115                                     MERCY HOSPITAL
## 574       180088 NORTON HOSPITAL / NORTON HEALTHCARE PAVILION / NOR
## 575       224007                        MCLEAN HOSPITAL CORPORATION
## 576       450124     DELL SETON  MED CENTER AT THE UNIVERSITY OF TX
## 577       050280                       MERCY MEDICAL CENTER REDDING
## 578       050128                            TRI-CITY MEDICAL CENTER
## 579       424006              PALMETTO LOWCOUNTRY BEHAVIORAL HEALTH
## 580       090004             MEDSTAR GEORGETOWN UNIVERSITY HOSPITAL
## 581       503302                     SHRINERS HOSPITAL FOR CHILDREN
## 582       210001                             MERITUS MEDICAL CENTER
## 583       210048                     HOWARD COUNTY GENERAL HOSPITAL
## 584       290047         SOUTHERN HILLS HOSPITAL AND MEDICAL CENTER
## 585       501331                          PULLMAN REGIONAL HOSPITAL
## 586       191315                            HARDTNER MEDICAL CENTER
## 587       441307                  RIVERVIEW REGIONAL MEDICAL CENTER
## 588       330033                         CHENANGO MEMORIAL HOSPITAL
## 589       444023                        OAK HILLS BEHAVIORAL CENTER
## 590       330403                          MONROE COMMUNITY HOSPITAL
## 591       450083       UT HEALTH EAST TEXAS TYLER REGIONAL HOSPITAL
## 592       261301                           ELLETT MEMORIAL HOSPITAL
## 593       171370                   GOODLAND REGIONAL MEDICAL CENTER
## 594       394012                       CLARKS SUMMIT STATE HOSPITAL
## 595       080004                    BAYHEALTH HOSPITAL, KENT CAMPUS
## 596       061317                         GRAND RIVER MEDICAL CENTER
## 597       420065             BON SECOURS-ST FRANCIS XAVIER HOSPITAL
## 598       394048                         DIVINE PROVIDENCE HOSPITAL
## 599       351320                               UNITY MEDICAL CENTER
## 600       050043                   ALTA BATES SUMMIT MEDICAL CENTER
## 601       181325                        JANE TODD CRAWFORD HOSPITAL
## 602       440048                          BAPTIST MEMORIAL HOSPITAL
## 603       050464                             DOCTORS MEDICAL CENTER
## 604       150012               SAINT JOSEPH REGIONAL MEDICAL CENTER
## 605       054077                      AURORA VISTA DEL MAR HOSPITAL
## 606       250085                            MARION GENERAL HOSPITAL
## 607       231308                         MUNISING MEMORIAL HOSPITAL
## 608       050636                                  POMERADO HOSPITAL
## 609       054153             OCEAN VIEW PSYCHIATRIC HEALTH FACILITY
## 610       161321                     AVERA MERRILL PIONEER HOSPITAL
## 611       394054                LIFECARE BEHAVIORAL HEALTH HOSPITAL
## 612       231329                                MCLAREN CARO REGION
## 613       180005                  HIGHLANDS REGIONAL MEDICAL CENTER
## 614       151331                           HARRISON COUNTY HOSPITAL
## 615       290046              SPRING VALLEY HOSPITAL MEDICAL CENTER
## 616       450661                     ODESSA REGIONAL MEDICAL CENTER
## 617       454083                           INTRACARE NORTH HOSPITAL
## 618       260005           SSM HEALTH ST JOSEPH HOSPITAL-ST CHARLES
## 619       140209               METHODIST MEDICAL CENTER OF ILLINOIS
## 620       280009                          CHI HEALTH GOOD SAMARITAN
## 621       260070                  PEMISCOT COUNTY MEMORIAL HOSPITAL
## 622       190125                          ST FRANCIS MEDICAL CENTER
## 623       234035              WALTER P REUTHER PSYCHIATRIC HOSPITAL
## 624       131303                  NELL J REDFIELD MEMORIAL HOSPITAL
## 625       100213                               BLAKE MEDICAL CENTER
## 626       050502                       SAINT VINCENT MEDICAL CENTER
## 627       510062                               BECKLEY ARH HOSPITAL
## 628       030107                   ARIZONA SPINE AND JOINT HOSPITAL
## 629       100007                               ADVENTHEALTH ORLANDO
## 630       450874            BAYLOR SURGICAL HOSPITAL AT LAS COLINAS
## 631       461333                         GARFIELD MEMORIAL HOSPITAL
## 632       120002                       MAUI MEMORIAL MEDICAL CENTER
## 633       330265                CLIFTON SPRINGS HOSPITAL AND CLINIC
## 634       020006                     MAT-SU REGIONAL MEDICAL CENTER
## 635       340142                          CARTERET GENERAL HOSPITAL
## 636       010058                                BIBB MEDICAL CENTER
## 637       110086          WASHINGTON COUNTY REGIONAL MEDICAL CENTER
## 638       191307                         DEQUINCY MEMORIAL HOSPITAL
## 639       120007                             KUAKINI MEDICAL CENTER
## 640       450289                               HARRIS HEALTH SYSTEM
## 641       441314                      LAUDERDALE COMMUNITY HOSPITAL
## 642       231334                         PROMEDICA HERRICK HOSPITAL
## 643       310108  JFK MEDICAL CTR - ANTHONY M. YELENCSICS COMMUNITY
## 644       390001                 GEISINGER-COMMUNITY MEDICAL CENTER
## 645       171379                             MORRIS COUNTY HOSPITAL
## 646       144009                                 RIVEREDGE HOSPITAL
## 647       381304             SOUTHERN COOS HOSPITAL & HEALTH CENTER
## 648       521340                MAYO CLINIC HEALTH SYSTEM-RED CEDAR
## 649       451333                    MARTIN COUNTY HOSPITAL DISTRICT
## 650       160067                   MERCYONE WATERLOO MEDICAL CENTER
## 651       364057                BLUERIDGE VISTA HEALTH AND WELLNESS
## 652       241368             CENTRACARE HEALTH SYSTEM - SAUK CENTRE
## 653       220052             SIGNATURE HEALTHCARE BROCKTON HOSPITAL
## 654       300005                      LAKES REGION GENERAL HOSPITAL
## 655       110146     SOUTHEAST GEORGIA HEALTH SYSTEM- CAMDEN CAMPUS
## 656       380103              KAISER FOUNDATION HOSPITAL - WESTSIDE
## 657       330218                                    OSWEGO HOSPITAL
## 658       500044                       MULTICARE DEACONESS HOSPITAL
## 659       501340            PEACEHEALTH PEACE ISLAND MEDICAL CENTER
## 660       050022                       RIVERSIDE COMMUNITY HOSPITAL
## 661       301305                   ALICE PECK DAY MEMORIAL HOSPITAL
## 662       100253                             JUPITER MEDICAL CENTER
## 663       670077                    HOUSTON METHODIST WEST HOSPITAL
## 664       501318                         OTHELLO COMMUNITY HOSPITAL
## 665       050697                      PATIENTS' HOSPITAL OF REDDING
## 666       180149                                T J HEALTH COLUMBIA
## 667       160101                          BROADLAWNS MEDICAL CENTER
## 668       454134                HAVEN BEHAVIORAL HOSPITAL OF FRISCO
## 669       511311                        HAMPSHIRE MEMORIAL HOSPITAL
## 670       050262               RONALD REAGAN U C L A MEDICAL CENTER
## 671       060049               UCHEALTH YAMPA VALLEY MEDICAL CENTER
## 672       100181                          LARKIN COMMUNITY HOSPITAL
## 673       031300                      WICKENBURG COMMUNITY HOSPITAL
## 674       471307                               PORTER HOSPITAL, INC
## 675       420010             CAROLINA PINES REGIONAL MEDICAL CENTER
## 676       100070   VENICE REGIONAL MEDICAL CENTER - BAYFRONT HEALTH
## 677       670005        MEMORIAL HERMANN SURGICAL HOSPITAL KINGWOOD
## 678       100157                   LAKELAND REGIONAL MEDICAL CENTER
## 679       500052                 KAISER PERMANENTE CENTRAL HOSPITAL
## 680       180021                     SOUTHEASTERN KY MEDICAL CENTER
## 681       050335                            ADVENTIST HEALTH SONORA
## 682       360276                  MH ST ELIZABETH BOARDMAN HOSPITAL
## 683       281320                                  MEMORIAL HOSPITAL
## 684       390331                                 WILLS EYE HOSPITAL
## 685       100206                         MEMORIAL HOSPITAL OF TAMPA
## 686       430013                               AVERA QUEEN OF PEACE
## 687       230180                   MIDMICHIGAN MEDICAL CENTER-CLARE
## 688       374025                               OAKWOOD SPRINGS, LLC
## 689       361307                   UHHS MEMORIAL HOSPITAL OF GENEVA
## 690       491302                  CARILION GILES COMMUNITY HOSPITAL
## 691       381320                         COLUMBIA MEMORIAL HOSPITAL
## 692       140231                                    EDWARD HOSPITAL
## 693       040074                         NORTH METRO MEDICAL CENTER
## 694       290054           CENTENNIAL HILLS HOSPITAL MEDICAL CENTER
## 695       390050                         ALLEGHENY GENERAL HOSPITAL
## 696       670006            THE HOSPITAL AT WESTLAKE MEDICAL CENTER
## 697       371337                    EASTERN OKLAHOMA MEDICAL CENTER
## 698       231330                         MARLETTE REGIONAL HOSPITAL
## 699       220008                           STURDY MEMORIAL HOSPITAL
## 700       531310                             POWELL VALLEY HOSPITAL
## 701       141340                     VALLEY WEST COMMUNITY HOSPITAL
## 702       514001                                  HIGHLAND HOSPITAL
## 703       121301                                       KAU HOSPITAL
## 704       230270                         BEAUMONT HOSPITAL - TAYLOR
## 705       341327                  J ARTHUR DOSHER MEMORIAL HOSPITAL
## 706       364041                       OHIO HOSPITAL FOR PSYCHIATRY
## 707       250094                                MERIT HEALTH WESLEY
## 708       330111                          BERTRAND CHAFFEE HOSPITAL
## 709       670116                                 WISE HEALTH SYSTEM
## 710       161327                              DAVIS COUNTY HOSPITAL
## 711       131301                        BOUNDARY COMMUNITY HOSPITAL
## 712       050773                               SAN LEANDRO HOSPITAL
## 713       261333                      PIKE COUNTY MEMORIAL HOSPITAL
## 714       171322                           HAMILTON COUNTY HOSPITAL
## 715       070016                              SAINT MARY'S HOSPITAL
## 716       230096                                   STURGIS HOSPITAL
## 717       031315             WHITE MOUNTAIN REGIONAL MEDICAL CENTER
## 718       100228                   WESTSIDE REGIONAL MEDICAL CENTER
## 719       261330             STE GENEVIEVE COUNTY MEMORIAL HOSPITAL
## 720       281322                       ST FRANCIS MEMORIAL HOSPITAL
## 721       340116                       FRYE REGIONAL MEDICAL CENTER
## 722       521312              MEMORIAL HOSPITAL OF LAFAYETTE COUNTY
## 723       090008                              UNITED MEDICAL CENTER
## 724       410011                            LANDMARK MEDICAL CENTER
## 725       391313                                          UPMC COLE
## 726       100277                           DOUGLAS GARDENS HOSPITAL
## 727       030101            WESTERN ARIZONA REGIONAL MEDICAL CENTER
## 728       451367            UT HEALTH EAST TEXAS PITTSBURG HOSPITAL
## 729       060031  CENTURA HEALTH-PENROSE-ST FRANCIS HEALTH SERVICES
## 730       450891 TEXAS HEALTH CENTER FOR DIAGNOSTICS & SURGERY PLAN
## 731       390114        MAGEE WOMENS HOSPITAL OF UPMC HEALTH SYSTEM
## 732       500033                                 SAMARITAN HOSPITAL
## 733       010157                                    SHOALS HOSPITAL
## 734       064003       COLORADO MENTAL HEALTH INSTITUTE AT FT LOGAN
## 735       111333                                JEFF DAVIS HOSPITAL
## 736       010034                             COMMUNITY HOSPITAL INC
## 737       170068                           SOUTHWEST MEDICAL CENTER
## 738       231325                 MIDMICHIGAN MEDICAL CENTER-GLADWIN
## 739       440073                            MAURY REGIONAL HOSPITAL
## 740       334015                                 ROCKLAND PSYCH CTR
## 741       374024           SHADOW MOUNTAIN BEHAVIORAL HEALTH SYSTEM
## 742       390266                          GROVE CITY MEDICAL CENTER
## 743       050778          LOMA LINDA UNIVERSITY CHILDREN'S HOSPITAL
## 744       230095           MIDMICHIGAN MEDICAL CENTER - WEST BRANCH
## 745       264025              METROPOLITAN ST LOUIS PSYCHIATRIC CTR
## 746       050425            KAISER FOUNDATION HOSPITAL - SACRAMENTO
## 747       300034                            CATHOLIC MEDICAL CENTER
## 748       390046                                      YORK HOSPITAL
## 749       144028                 JOHN J MADDEN MENTAL HEALTH CENTER
## 750       261308                WASHINGTON COUNTY MEMORIAL HOSPITAL
## 751       494022                            POPLAR SPRINGS HOSPITAL
## 752       360048                UNIVERSITY OF TOLEDO MEDICAL CENTER
## 753       340020                          CENTRAL CAROLINA HOSPITAL
## 754       231338                    SPECTRUM HEALTH GERBER MEMORIAL
## 755       170012                      SALINA REGIONAL HEALTH CENTER
## 756       381313                              ST CHARLES PRINEVILLE
## 757       050624                       HENRY MAYO NEWHALL  HOSPITAL
## 758       041312         BAPTIST HEALTH MEDICAL CENTER HEBER SPINGS
## 759       374012                           BROOKHAVEN HOSPITAL, INC
## 760       150088          ST VINCENT ANDERSON REGIONAL HOSPITAL INC
## 761       451344                           HANSFORD COUNTY HOSPITAL
## 762       201304                       MOUNT DESERT ISLAND HOSPITAL
## 763       414000                                    BUTLER HOSPITAL
## 764       440200                 SAINT THOMAS STONES RIVER HOSPITAL
## 765       140240                                  WESTLAKE HOSPITAL
## 766       440040                           PERRY COMMUNITY HOSPITAL
## 767       330011         OUR LADY OF LOURDES MEMORIAL HOSPITAL, INC
## 768       490129                 HALQUIST MEMORIAL INPATIENT CENTER
## 769       480002             GOV JUAN F LUIS HOSPITAL & MEDICAL CTR
## 770       430077                REGIONAL HEALTH RAPID CITY HOSPITAL
## 771       154035                      FOUR COUNTY COUNSELING CENTER
## 772       390058                   CARLISLE REGIONAL MEDICAL CENTER
## 773       340027                             UNC LENOIR HEALTH CARE
## 774       450023                            CITIZENS MEDICAL CENTER
## 775       430095               AVERA HEART HOSPITAL OF SOUTH DAKOTA
## 776       220086               BETH ISRAEL DEACONESS MEDICAL CENTER
## 777       281356                     PERKINS COUNTY HEALTH SERVICES
## 778       050058                GLENDALE MEM HOSPITAL & HLTH CENTER
## 779       050283                  STANFORD HEALTH CARE - VALLEYCARE
## 780       110006                                 ST MARY'S HOSPITAL
## 781       370041                             BRISTOW MEDICAL CENTER
## 782       520037                          MARSHFIELD MEDICAL CENTER
## 783       191311                            BUNKIE GENERAL HOSPITAL
## 784       390116                        SUBURBAN COMMUNITY HOSPITAL
## 785       301308                           VALLEY REGIONAL HOSPITAL
## 786       390101                                  MEMORIAL HOSPITAL
## 787       060044                     COLORADO PLAINS MEDICAL CENTER
## 788       220063                            LOWELL GENERAL HOSPITAL
## 789       030016                  BANNER CASA GRANDE MEDICAL CENTER
## 790       461303                      SANPETE VALLEY HOSPITAL - CAH
## 791       330224        HEALTHALLIANCE HOSPITAL MARYS AVENUE CAMPUS
## 792       371307                         CIMARRON MEMORIAL HOSPITAL
## 793       454029                         SETON SHOAL CREEK HOSPITAL
## 794       170023                              ST CATHERINE HOSPITAL
## 795       050603             MEMORIALCARE SADDLEBACK MEDICAL CENTER
## 796       360354                         WEST CHESTER HOSPITAL, LLC
## 797       370210                    OKLAHOMA SURGICAL HOSPITAL, LLC
## 798       454141                            PALMS BEHAVIORAL HEALTH
## 799       050308                                 EL CAMINO HOSPITAL
## 800       010078          NORTHEAST ALABAMA REGIONAL MEDICAL CENTER
## 801       210033                            CARROLL HOSPITAL CENTER
## 802       420048                                      KERSHAWHEALTH
## 803       054125   SANTA BARBARA COUNTY PSYCHIATRIC HEALTH FACILITY
## 804       131302                        NORTH CANYON MEDICAL CENTER
## 805       250031                          MERIT HEALTH RIVER REGION
## 806       420066                       LAKE CITY COMMUNITY HOSPITAL
## 807       334063                     KINGSBORO PSYCHIATRIC HOSPITAL
## 808       360132             FORT HAMILTON HUGHES MEMORIAL HOSPITAL
## 809       370171                       W W HASTINGS INDIAN HOSPITAL
## 810       431325                   MOBRIDGE REGIONAL HOSPITAL - CAH
## 811       520206                       AURORA MEDICAL CENTER SUMMIT
## 812       390137                      WILKES-BARRE GENERAL HOSPITAL
## 813       141329                        MORRISON COMMUNITY HOSPITAL
## 814       110027               ST MARY'S SACRED HEART HOSPITAL, INC
## 815       410010           WOMEN & INFANTS HOSPITAL OF RHODE ISLAND
## 816       051333                       RIDGECREST REGIONAL HOSPITAL
## 817       394050                           ROXBURY TREATMENT CENTER
## 818       070035               HOSPITAL OF CENTRAL CONNECTICUT, THE
## 819       120026                           PALI MOMI MEDICAL CENTER
## 820       160005        ST ANTHONY REGIONAL HOSPITAL & NURSING HOME
## 821       220065                            BAYSTATE NOBLE HOSPITAL
## 822       341315            CAPE FEAR VALLEY-BLADEN COUNTY HOSPITAL
## 823       260080           SOUTHEAST HEALTH CENTER OF RIPLEY COUNTY
## 824       280003                               BRYAN MEDICAL CENTER
## 825       061343                            KEEFE MEMORIAL HOSPITAL
## 826       050261                         SIERRA VIEW MEDICAL CENTER
## 827       030007                        VERDE VALLEY MEDICAL CENTER
## 828       350019                                     ALTRU HOSPITAL
## 829       320063                            CARLSBAD MEDICAL CENTER
## 830       390048                       GEISINGER-LEWISTOWN HOSPITAL
## 831       490002                            RUSSELL COUNTY HOSPITAL
## 832       261323                     CEDAR COUNTY MEMORIAL HOSPITAL
## 833       010040                    GADSDEN REGIONAL MEDICAL CENTER
## 834       151335                       ST VINCENT DUNN HOSPITAL INC
## 835       271306                        MOUNTAINVIEW MEDICAL CENTER
## 836       010061                           HIGHLANDS MEDICAL CENTER
## 837       344027   RJ BLACKLEY ALCOHOL AND DRUG ABUSE TREATMENT CTR
## 838       330231                             QUEENS HOSPITAL CENTER
## 839       520193                         AURORA BAYCARE MEDICAL CTR
## 840       150166                                  PINNACLE HOSPITAL
## 841       180064                        SAINT JOSEPH MOUNT STERLING
## 842       154056                          EVANSVILLE STATE HOSPITAL
## 843       271330                         STILLWATER BILLINGS CLINIC
## 844       100034                         MOUNT SINAI MEDICAL CENTER
## 845       190106                         OAKDALE COMMUNITY HOSPITAL
## 846       230208                            SPARROW CARSON HOSPITAL
## 847       381318            PROVIDENCE HOOD RIVER MEMORIAL HOSPITAL
## 848       141332                            HILLSBORO AREA HOSPITAL
## 849       454104                       UNIVERSITY BEHAVIORAL HEALTH
## 850       450883               BAYLOR MEDICAL CENTER AT TROPHY CLUB
## 851       450176                    MISSION REGIONAL MEDICAL CENTER
## 852       390228                                  ST CLAIR HOSPITAL
## 853       061344             CENTURA HEALTH-ST THOMAS MORE HOSPITAL
## 854       440030            MORRISTOWN HAMBLEN HOSPITAL ASSOCIATION
## 855       210006                      UMD HARFORD MEMORIAL HOSPITAL
## 856       050236                       ADVENTIST HEALTH SIMI VALLEY
## 857       451341                          HASKELL MEMORIAL HOSPITAL
## 858       450723                  METHODIST CHARLTON MEDICAL CENTER
## 859       430093                        SAME DAY SURGERY CENTER LLC
## 860       140177                              JACKSON PARK HOSPITAL
## 861       360107                                  BELLEVUE HOSPITAL
## 862       161304                        CHI HEALTH  - MERCY CORNING
## 863       340120                            VIDANT DUPLIN  HOSPITAL
## 864       454094                                GREEN OAKS HOSPITAL
## 865       044022                           CONWAY BEHAVIORAL HEALTH
## 866       420085               GRAND STRAND REGIONAL MEDICAL CENTER
## 867       310070                  SAINT PETER'S UNIVERSITY HOSPITAL
## 868       330153                                     ELLIS HOSPITAL
## 869       150045                                      DEKALB HEALTH
## 870       140185                                  MEMORIAL HOSPITAL
## 871       670108 BAYLOR SCOTT & WHITE MEDICAL CENTER - MARBLE FALLS
## 872       150005                          HENDRICKS REGIONAL HEALTH
## 873       450007                   PETERSON REGIONAL MEDICAL CENTER
## 874       320009                            LOVELACE MEDICAL CENTER
## 875       210018                  MEDSTAR MONTGOMERY MEDICAL CENTER
## 876       050360                             MARIN GENERAL HOSPITAL
## 877       454118                LONE STAR BEHAVIORAL HEALTH CYPRESS
## 878       041320                     LITTLE RIVER MEMORIAL HOSPITAL
## 879       331316                   COMMUNITY MEMORIAL HOSPITAL, INC
## 880       050145       COMMUNITY HOSPITAL OF THE MONTEREY PENINSULA
## 881       100244                                CAPE CORAL HOSPITAL
## 882       394001                          NORRISTOWN STATE HOSPITAL
## 883       490144  NOVANT HEALTH UVA HEALTH HAYMARKET MEDICAL CENTER
## 884       100055                        ADVENTHEALTH NORTH PINELLAS
## 885       100118                            ADVENTHEALTH PALM COAST
## 886       040047                         FIVE RIVERS MEDICAL CENTER
## 887       450209                           NORTHWEST TEXAS HOSPITAL
## 888       490013                  SENTARA HALIFAX REGIONAL HOSPITAL
## 889       180038                 OWENSBORO HEALTH REGIONAL HOSPITAL
## 890       291303                   BATTLE MOUNTAIN GENERAL HOSPITAL
## 891       291313                BANNER CHURCHILL COMMUNITY HOSPITAL
## 892       050292  RIVERSIDE UNIVERSITY HEALTH SYSTEM-MEDICAL CENTER
## 893       020024                 CENTRAL PENINSULA GENERAL HOSPITAL
## 894       100087                         SARASOTA MEMORIAL HOSPITAL
## 895       320001                                       UNM HOSPITAL
## 896       250038                               MERIT HEALTH MADISON
## 897       420015                        GHS BAPTIST EASLEY HOSPITAL
## 898       454123           OCEANS BEHAVIORAL HOSPITAL OF LUFKIN LLC
## 899       511320                           JACKSON GENERAL HOSPITAL
## 900       024001                                NORTH STAR HOSPITAL
## 901       100026      BAY MEDICAL CENTER SACRED HEART HEALTH SYSTEM
## 902       161361                           VAN DIEST MEDICAL CENTER
## 903       451382                     COMANCHE COUNTY MEDICAL CENTER
## 904       141327                          WABASH GENERAL HOSPITAL 1
## 905       330202                       KINGS COUNTY HOSPITAL CENTER
## 906       430090                 SIOUX FALLS SPECIALTY HOSPITAL LLP
## 907       190015                   NORTH OAKS MEDICAL CENTER, L L C
## 908       061316               SPANISH PEAKS REGIONAL HEALTH CENTER
## 909       454076                         HARRIS CTY PSYCHIATRIC CTR
## 910       010110                            BULLOCK COUNTY HOSPITAL
## 911       050232                     FRENCH HOSPITAL MEDICAL CENTER
## 912       400087                  HOSPITAL DR CAYETANO COLL Y TOSTE
## 913       330019      NEW YORK COMMUNITY HOSPITAL OF BROOKLYN, INC.
## 914       424013 THE WILLIAM J MCCORD ADOLESCENT TREATMENT FACILITY
## 915       021302                         PROVIDENCE SEWARD HOSPITAL
## 916       051312                       MOUNTAINS COMMUNITY HOSPITAL
## 917       314020                       ESSEX COUNTY HOSPITAL CENTER
## 918       450847                     MEMORIAL HERMANN KATY HOSPITAL
## 919       040019                        FORREST CITY MEDICAL CENTER
## 920       453316                     CHILDRENS MEDICAL CENTER PLANO
## 921       450241                           FAITH COMMUNITY HOSPITAL
## 922       171383                            WILLIAM NEWTON HOSPITAL
## 923       420101                          COASTAL CAROLINA HOSPITAL
## 924       230207                                    MCLAREN OAKLAND
## 925       100046                           ADVENTHEALTH ZEPHYRHILLS
## 926       260119               POPLAR BLUFF REGIONAL MEDICAL CENTER
## 927       490112                                 CJW MEDICAL CENTER
## 928       060103           CENTURA HEALTH-AVISTA ADVENTIST HOSPITAL
## 929       271326                          BEARTOOTH BILLINGS CLINIC
## 930       050590                   METHODIST HOSPITAL OF SACRAMENTO
## 931       171338                         SABETHA COMMUNITY HOSPITAL
## 932       034028                 AURORA BEHAVIORAL HEALTHCARE-TEMPE
## 933       453304                               TEXAS CHILDRENS HOSP
## 934       170175                     WESTERN PLAINS MEDICAL COMPLEX
## 935       140049                       WEST SUBURBAN MEDICAL CENTER
## 936       054053                                   DEL AMO HOSPITAL
## 937       360082                                    EUCLID HOSPITAL
## 938       104026           FORT LAUDERDALE BEHAVIORAL HEALTH CENTER
## 939       290049                RENOWN SOUTH MEADOWS MEDICAL CENTER
## 940       500088                              VALLEY MEDICAL CENTER
## 941       190205                    WOMEN'S AND CHILDREN'S HOSPITAL
## 942       060004                       PLATTE VALLEY MEDICAL CENTER
## 943       494032                 THE PAVILION AT WILLIAMSBURG PLACE
## 944       160079                MERCY MEDICAL CENTER - CEDAR RAPIDS
## 945       050047 CALIFORNIA PACIFIC MEDICAL CENTER- VAN NESS CAMPUS
## 946       491308                      RAPPAHANNOCK GENERAL HOSPITAL
## 947       450155                   HEREFORD REGIONAL MEDICAL CENTER
## 948       400123                                     HOSPITAL PEREA
## 949       123301                     SHRINERS HOSPITAL FOR CHILDREN
## 950       360180                                   CLEVELAND CLINIC
## 951       220126                                   NORWOOD HOSPITAL
## 952       041327                      BRADLEY COUNTY MEDICAL CENTER
## 953       241345                   MAYO CLINIC HEALTH SYSTEM-WASECA
## 954       231305                        ASCENSION STANDISH HOSPITAL
## 955       250072                               MERIT HEALTH CENTRAL
## 956       190004                  THIBODAUX REGIONAL MEDICAL CENTER
## 957       511321                               ST JOSEPH'S HOSPITAL
## 958       171365                                   HANOVER HOSPITAL
## 959       100231                              WEST FLORIDA HOSPITAL
## 960       180013                THE MEDICAL CENTER AT BOWLING GREEN
## 961       050688                        ST LOUISE REGIONAL HOSPITAL
## 962       530011                MEMORIAL HOSPITAL SWEETWATER COUNTY
## 963       171348                             NORTON COUNTY HOSPITAL
## 964       451317                   REFUGIO COUNTY MEMORIAL HOSPITAL
## 965       090001                    GEORGE WASHINGTON UNIV HOSPITAL
## 966       290007                          UNIVERSITY MEDICAL CENTER
## 967       490053                         JOHNSTON MEMORIAL HOSPITAL
## 968       360087                                  LUTHERAN HOSPITAL
## 969       010139                   BROOKWOOD BAPTIST MEDICAL CENTER
## 970       390123                                 POTTSTOWN HOSPITAL
## 971       511319                           JEFFERSON MEDICAL CENTER
## 972       110121                             GRADY GENERAL HOSPITAL
## 973       194088           ST JAMES BEHAVIORAL HEALTH HOSPITAL, INC
## 974       450690 UNIVERSITY OF TEXAS HEALTH SCIENCE CENTER AT TYLER
## 975       041310                        STONE COUNTY MEDICAL CENTER
## 976       210058        UMD REHABILITATION &  ORTHOPAEDIC INSTITUTE
## 977       510038                STONEWALL JACKSON MEMORIAL HOSPITAL
## 978       050225                     ADVENTIST HEALTH FEATHER RIVER
## 979       371332                         SEILING MUNICIPAL HOSPITAL
## 980       194007                 NORTHLAKE BEHAVIORAL HEALTH SYSTEM
## 981       500027                             SWEDISH MEDICAL CENTER
## 982       390314             COORDINATED HEALTH ORTHOPEDIC HOSPITAL
## 983       390138                                WAYNESBORO HOSPITAL
## 984       100105             CLEVELAND CLINIC INDIAN RIVER HOSPITAL
## 985       360230                                 HILLCREST HOSPITAL
## 986       363308       SHRINERS HOSPITALS FOR CHILDREN - CINCINNATI
## 987       010114    MEDICAL WEST, AN AFFILIATE OF UAB HEALTH SYSTEM
## 988       361324                         OHIOHEALTH SHELBY HOSPITAL
## 989       370057             MUSCOGEE (CREEK) NATION MEDICAL CENTER
## 990       450348                FALLS COMMUNITY HOSPITAL AND CLINIC
## 991       500072                             OLYMPIC MEDICAL CENTER
## 992       281332                   BUTLER COUNTY HEALTH CARE CENTER
## 993       450804                          TEXAS ORTHOPEDIC HOSPITAL
## 994       440082                         SAINT THOMAS WEST HOSPITAL
## 995       110001                            HAMILTON MEDICAL CENTER
## 996       050516                      MERCY SAN JUAN MEDICAL CENTER
## 997       404009           CENTRO DE SALUD CONDUCTUAL MENONITA-CIMA
## 998       390164                        UPMC PRESBYTERIAN SHADYSIDE
## 999       450462         TEXAS HEALTH PRESBYTERIAN HOSPITAL  DALLAS
## 1000      114037                         RIDGEVIEW INSTITUTE MONROE
## 1001      324013           HAVEN BEHAVIORAL HOSPITAL OF ALBUQUERQUE
## 1002      281340                              DUNDY COUNTY HOSPITAL
## 1003      140179                    LITTLE COMPANY OF MARY HOSPITAL
## 1004      351326                           FIRST CARE HEALTH CENTER
## 1005      241375                MINNESOTA VALLEY HEALTH CENTER  INC
## 1006      010023                       BAPTIST MEDICAL CENTER SOUTH
## 1007      150051                     IU HEALTH BLOOMINGTON HOSPITAL
## 1008      440039               VANDERBILT UNIVERSITY MEDICAL CENTER
## 1009      214012                              THOMAS B FINAN CENTER
## 1010      010103                   PRINCETON BAPTIST MEDICAL CENTER
## 1011      264030                     SIGNATURE PSYCHIATRIC HOSPITAL
## 1012      144010                  CHICAGO-READ MENTAL HEALTH CENTER
## 1013      140211                          DELNOR COMMUNITY HOSPITAL
## 1014      050455                       ADVENTIST HEALTH BAKERSFIELD
## 1015      351327                         ST ALOISIUS MEDICAL CENTER
## 1016      171339                          GREENWOOD COUNTY HOSPITAL
## 1017      330006                         ST JOSEPH'S MEDICAL CENTER
## 1018      053309 MEMORIAL CARE MILLER CHILDREN'S &  WOMEN'S HOSP LB
## 1019      190245                           MONROE SURGICAL HOSPITAL
## 1020      040152     NORTHWEST HEALTH PHYSICIANS SPECIALTY HOSPITAL
## 1021      390322         ROTHMAN ORTHOPAEDIC SPECIALTY HOSPITAL LLC
## 1022      440020  SOUTHERN TENNESSEE REGIONAL HEALTH SYSTEM PULASKI
## 1023      260040                                COX MEDICAL CENTERS
## 1024      030002         BANNER - UNIVERSITY MEDICAL CENTER PHOENIX
## 1025      194109            COMPASS BEHAVIORAL CENTER OF HOUMA, LLC
## 1026      250061                         YALOBUSHA GENERAL HOSPITAL
## 1027      191314                            MADISON PARISH HOSPITAL
## 1028      150172                     PHYSICIANS' MEDICAL CENTER LLC
## 1029      450605                       CARE REGIONAL MEDICAL CENTER
## 1030      150075                   BLUFFTON REGIONAL MEDICAL CENTER
## 1031      051301                  ADVENTIST HEALTH TEHACHAPI VALLEY
## 1032      420043                            CHEROKEE MEDICAL CENTER
## 1033      050099                      SAN ANTONIO REGIONAL HOSPITAL
## 1034      440002            JACKSON-MADISON COUNTY GENERAL HOSPITAL
## 1035      371322                    BEAVER COUNTY MEMORIAL HOSPITAL
## 1036      190266                    THE SPINE HOSPITAL OF LOUISIANA
## 1037      510072                             WETZEL COUNTY HOSPITAL
## 1038      131318                                       VALOR HEALTH
## 1039      400048                          HOSPITAL MENONITA GUAYAMA
## 1040      150048                                        REID HEALTH
## 1041      450698                             LAMB HEALTHCARE CENTER
## 1042      241370                               ST GABRIELS HOSPITAL
## 1043      250025     NORTH MISSISSIPPI MEDICAL CENTER-GILMORE AMORY
## 1044      251318                 NORTH SUNFLOWER MEDICAL CENTER CAH
## 1045      340075             CAROLINAS HEALTHCARE SYSTEM-BLUE RIDGE
## 1046      110082            SAINT JOSEPH'S HOSPITAL OF ATLANTA, INC
## 1047      340131                       CAROLINA EAST MEDICAL CENTER
## 1048      034031                        QUAIL RUN BEHAVIORAL HEALTH
## 1049      371333                    CREEK NATION COMMUNITY HOSPITAL
## 1050      524014               BROWN COUNTY COMMUNITY TREATMENT CTR
## 1051      114016                               ST SIMONS-BY-THE-SEA
## 1052      250060                          JEFFERSON COUNTY HOSPITAL
## 1053      330286             GOOD SAMARITAN HOSPITAL MEDICAL CENTER
## 1054      170074                           GEARY COMMUNITY HOSPITAL
## 1055      290003                SUNRISE HOSPITAL AND MEDICAL CENTER
## 1056      470005                    RUTLAND REGIONAL MEDICAL CENTER
## 1057      330127                              JACOBI MEDICAL CENTER
## 1058      140158                  MERCY HOSPITAL AND MEDICAL CENTER
## 1059      050230             GARDEN GROVE HOSPITAL & MEDICAL CENTER
## 1060      450578                           HEMPHILL COUNTY HOSPITAL
## 1061      531308                   JOHNSON COUNTY HEALTHCARE CENTER
## 1062      180043                                  MEMORIAL HOSPITAL
## 1063      450718                          ROUND ROCK MEDICAL CENTER
## 1064      050353 PROVIDENCE LITTLE COMPANY OF MARY MED CTR TORRANCE
## 1065      220163                  UMASS MEMORIAL MEDICAL CENTER INC
## 1066      100063                    MORTON PLANT NORTH BAY HOSPITAL
## 1067      050075      KAISER FOUNDATION HOSPITAL - OAKLAND/RICHMOND
## 1068      431302                          AVERA GETTYSBURG HOSPITAL
## 1069      330136                      MARY IMOGENE BASSETT HOSPITAL
## 1070      170109                        MIAMI COUNTY MEDICAL CENTER
## 1071      310039    RARITAN BAY MEDICAL CENTER PERTH AMBOY DIVISION
## 1072      454064                                   RIVER CREST HOSP
## 1073      440016         BAPTIST MEMORIAL HOSPITAL - CARROLL COUNTY
## 1074      054145                          SHARP MESA VISTA HOSPITAL
## 1075      450411                         EASTLAND MEMORIAL HOSPITAL
## 1076      421302                        FAIRFIELD MEMORIAL HOSPITAL
## 1077      050770      LOMA LINDA UNIVERSITY MEDICAL CENTER-MURRIETA
## 1078      510002                   GREENBRIER VALLEY MEDICAL CENTER
## 1079      290001                     RENOWN REGIONAL MEDICAL CENTER
## 1080      161348                             CLARKE COUNTY HOSPITAL
## 1081      100052                              WINTER HAVEN HOSPITAL
## 1082      450571                             SHANNON MEDICAL CENTER
## 1083      140189                   SARAH BUSH LINCOLN HEALTH CENTER
## 1084      151326                             UNION HOSPITAL CLINTON
## 1085      230022              PROMEDICA COLDWATER REGIONAL HOSPITAL
## 1086      450099                      PAMPA REGIONAL MEDICAL CENTER
## 1087      281300                        HARLAN COUNTY HEALTH SYSTEM
## 1088      231337                                ST FRANCIS HOSPITAL
## 1089      330205                      ST ANTHONY COMMUNITY HOSPITAL
## 1090      464013                        SALT LAKE BEHAVIORAL HEALTH
## 1091      390290                      HAHNEMANN UNIVERSITY HOSPITAL
## 1092      160104                                 TRINITY BETTENDORF
## 1093      220084                                 EMERSON HOSPITAL -
## 1094      231326                           SPARROW CLINTON HOSPITAL
## 1095      364027                      CAMBRIDGE BEHAVIORAL HOSPITAL
## 1096      441316                            CAMDEN GENERAL HOSPITAL
## 1097      301312                                   HUGGINS HOSPITAL
## 1098      110135                           TAYLOR REGIONAL HOSPITAL
## 1099      340109                   SENTARA ALBEMARLE MEDICAL CENTER
## 1100      490094            BON SECOURS RICHMOND COMMUNITY HOSPITAL
## 1101      330208                       ST JOHN'S RIVERSIDE HOSPITAL
## 1102      320003                       ALTA VISTA REGIONAL HOSPITAL
## 1103      264020                                ROYAL OAKS HOSPITAL
## 1104      220077                            BAYSTATE MEDICAL CENTER
## 1105      050417                              SUTTER COAST HOSPITAL
## 1106      251313                       BAPTIST MEDICAL CENTER-YAZOO
## 1107      400122                 PROFESSIONAL HOSPITAL GUAYNABO INC
## 1108      490001                          NORTON COMMUNITY HOSPITAL
## 1109      450422       BAYLOR SCOTT AND WHITE MEDICAL CENTER UPTOWN
## 1110      330027                   NASSAU UNIVERSITY MEDICAL CENTER
## 1111      351324                                   CHI MERCY HEALTH
## 1112      454135         HOUSTON BEHAVIORAL HEALTHCARE HOSPITAL LLC
## 1113      490145                       STONESPRINGS HOSPITAL CENTER
## 1114      130066                       NORTHWEST SPECIALTY HOSPITAL
## 1115      280105                                CHI HEALTH MIDLANDS
## 1116      150157                     ST VINCENT CARMEL HOSPITAL INC
## 1117      453306                        COVENANT CHILDRENS HOSPITAL
## 1118      390302                      BARIX CLINICS OF PENNSYLVANIA
## 1119      041307                      CROSSRIDGE COMMUNITY HOSPITAL
## 1120      031305                            HOPI HEALTH CARE CENTER
## 1121      490111                    WYTHE COUNTY COMMUNITY HOSPITAL
## 1122      360065                              FISHER-TITUS HOSPITAL
## 1123      150042                            GOOD SAMARITAN HOSPITAL
## 1124      104071                                 THE VINES HOSPITAL
## 1125      100179                     MEMORIAL HOSPITAL JACKSONVILLE
## 1126      420067                  BEAUFORT COUNTY MEMORIAL HOSPITAL
## 1127      150010                                  ST VINCENT KOKOMO
## 1128      050498                       SUTTER AUBURN FAITH HOSPITAL
## 1129      510024                 MONONGALIA COUNTY GENERAL HOSPITAL
## 1130      110234                                SGMC BERRIEN CAMPUS
## 1131      420104                            MOUNT PLEASANT HOSPITAL
## 1132      310016                   CAREPOINT HEALTH-CHRIST HOSPITAL
## 1133      291304                          PERSHING GENERAL HOSPITAL
## 1134      520177               FROEDTERT MEMORIAL LUTHERAN HOSPITAL
## 1135      450890            BAYLOR REGIONAL MEDICAL CENTER AT PLANO
## 1136      030043                        CANYON VISTA MEDICAL CENTER
## 1137      394039                   FIRST HOSPITAL OF WYOMING VALLEY
## 1138      100008                          BAPTIST HOSPITAL OF MIAMI
## 1139      144016                         ALTON MENTAL HEALTH CENTER
## 1140      360174                        UPPER VALLEY MEDICAL CENTER
## 1141      241347                       SANFORD CANBY MEDICAL CENTER
## 1142      080009                  BAYHEALTH HOSPITAL, SUSSEX CAMPUS
## 1143      050772             KAISER FOUNDATION HOSPITAL - ROSEVILLE
## 1144      020018                 YUKON KUSKOKWIM DELTA REG HOSPITAL
## 1145      161310                     ADAIR COUNTY MEMORIAL HOSPITAL
## 1146      450808                  NORTHWEST HILLS SURGICAL HOSPITAL
## 1147      241328                      SANFORD BAGLEY MEDICAL CENTER
## 1148      021301                   PROVIDENCE VALDEZ MEDICAL CENTER
## 1149      190256                         STERLING SURGICAL HOSPITAL
## 1150      364058                            SUN BEHAVIORAL COLUMBUS
## 1151      450024               UNIVERSITY MEDICAL CENTER OF EL PASO
## 1152      050588                       SAN DIMAS COMMUNITY HOSPITAL
## 1153      060129                       UCHEALTH BROOMFIELD HOSPITAL
## 1154      451346                          YOAKUM COMMUNITY HOSPITAL
## 1155      450638                   HCA HOUSTON HEALTHCARE NORTHWEST
## 1156      451312                                RICE MEDICAL CENTER
## 1157      030089                  BANNER THUNDERBIRD MEDICAL CENTER
## 1158      010150                      L V STABLER MEMORIAL HOSPITAL
## 1159      450537                METHODIST RICHARDSON MEDICAL CENTER
## 1160      390179                            CHESTER COUNTY HOSPITAL
## 1161      294002       SOUTHERN NEVADA ADULT MENTAL HEALTH SERVICES
## 1162      283300               BOYS TOWN NATIONAL RESEARCH HOSPITAL
## 1163      050289                               SETON MEDICAL CENTER
## 1164      510001                 WEST VIRGINIA UNIVERSITY HOSPITALS
## 1165      361327           COMMUNITY HOSPITALS AND WELLNESS CENTERS
## 1166      260097                    WESTERN MISSOURI MEDICAL CENTER
## 1167      221300                     MARTHA'S VINEYARD HOSPITAL INC
## 1168      393307             ST CHRISTOPHER'S HOSPITAL FOR CHILDREN
## 1169      451343                          ELECTRA MEMORIAL HOSPITAL
## 1170      370094                             ALLIANCEHEALTH MIDWEST
## 1171      161314                            GUTHRIE COUNTY HOSPITAL
## 1172      430005                             PRAIRIE LAKES HOSPITAL
## 1173      670059                         ST LUKES LAKESIDE HOSPITAL
## 1174      050526                          HUNTINGTON BEACH HOSPITAL
## 1175      171381                                  MEMORIAL HOSPITAL
## 1176      260219                             PROGRESS WEST HOSPITAL
## 1177      390028                                         UPMC MERCY
## 1178      244015      COMMUNITY BEHAVIORAL HEALTH HOSPITAL - BAXTER
## 1179      111310    MEDICAL CENTER OF PEACH COUNTY, NAVICENT HEALTH
## 1180      060128                                LONGS PEAK HOSPITAL
## 1181      161345                         OSCEOLA COMMUNITY HOSPITAL
## 1182      050069                                 ST JOSEPH HOSPITAL
## 1183      060008                             SAN LUIS VALLEY HEALTH
## 1184      374016                        ROLLING HILLS HOSPITAL, LLC
## 1185      244014     COMMUNITY BEHAVIORAL HEALTH HOSPITAL - BEMIDJI
## 1186      410006                                   NEWPORT HOSPITAL
## 1187      070008                          JOHNSON MEMORIAL HOSPITAL
## 1188      041317                       DALLAS COUNTY MEDICAL CENTER
## 1189      190183                   LEONARD J CHABERT MEDICAL CENTER
## 1190      490045   NOVANT HEALTH UVA  PRINCE WILLIAM MEDICAL CENTER
## 1191      440091                    MEMORIAL HEALTHCARE SYSTEM, INC
## 1192      240106                                   REGIONS HOSPITAL
## 1193      511312                          PRESTON MEMORIAL HOSPITAL
## 1194      141345                            SALEM TOWNSHIP HOSPITAL
## 1195      370216                   TULSA SPINE & SPECIALTY HOSPITAL
## 1196      390231                         ABINGTON MEMORIAL HOSPITAL
## 1197      141313                            MASON DISTRICT HOSPITAL
## 1198      310048   ROBERT WOOD JOHNSON UNIVERSITY HOSPITAL SOMERSET
## 1199      431318                              BOWDLE HOSPITAL - CAH
## 1200      454012                                  MILLWOOD HOSPITAL
## 1201      014018                UNITY PSYCHIATRIC CARE - HUNTSVILLE
## 1202      014017                                EASTPOINTE HOSPITAL
## 1203      220135                                  FALMOUTH HOSPITAL
## 1204      281325                              BROWN COUNTY HOSPITAL
## 1205      390270            GEISINGER WYOMING VALLEY MEDICAL CENTER
## 1206      250027                  WINSTON MEDICAL CENTER & SWINGBED
## 1207      171331                            KIOWA DISTRICT HOSPITAL
## 1208      334046                      CAPITAL DISTRICT PSYCH CENTER
## 1209      300001                                   CONCORD HOSPITAL
## 1210      420070                    PALMETTO HEALTH TUOMEY HOSPITAL
## 1211      170142      ASCENSION VIA CHRISTI HOSPITAL MANHATTAN, INC
## 1212      030138                    WESTERN REGIONAL MEDICAL CENTER
## 1213      021308                     NORTON SOUND REGIONAL HOSPITAL
## 1214      450079                    BAYLOR MEDICAL CENTER AT IRVING
## 1215      140286                      KISHWAUKEE COMMUNITY HOSPITAL
## 1216      501339                       WHIDBEYHEALTH MEDICAL CENTER
## 1217      150064                     FAYETTE REGIONAL HEALTH SYSTEM
## 1218      520078                      ASCENSION ST FRANCIS HOSPITAL
## 1219      241334                     RIVER'S EDGE HOSPITAL & CLINIC
## 1220      110036          MEMORIAL HEALTH UNIVERSITY MEDICAL CENTER
## 1221      151308                          ST VINCENT MERCY HOSPITAL
## 1222      380040                                 ST CHARLES REDMOND
## 1223      450641                            NOCONA GENERAL HOSPITAL
## 1224      230227                                     MCLAREN MACOMB
## 1225      251309                                FIELD HEALTH SYSTEM
## 1226      390026                             CHESTNUT HILL HOSPITAL
## 1227      491305                       SHENANDOAH MEMORIAL HOSPITAL
## 1228      200041                     NORTHERN LIGHT INLAND HOSPITAL
## 1229      520095                              SAUK PRAIRIE HOSPITAL
## 1230      241312                                      COOK HOSPITAL
## 1231      670054        FOUNDATION SURGICAL HOSPITAL OF SAN ANTONIO
## 1232      191322                     ABROM KAPLAN MEMORIAL HOSPITAL
## 1233      231320                      MERCY HEALTH LAKESHORE CAMPUS
## 1234      241374                   PIPESTONE COUNTY  MEDICAL CENTER
## 1235      070040                       HEBREW HOME AND HOSPITAL INC
## 1236      050055 CALIFORNIA PACIFIC MEDICAL CENTER - MISSION BERNAL
## 1237      310118                           HUDSON REGIONAL HOSPITAL
## 1238      670122           HOUSTON METHODIST THE WOODLANDS HOSPITAL
## 1239      501326                   PROVIDENCE MOUNT CARMEL HOSPITAL
## 1240      330106                    NORTH SHORE UNIVERSITY HOSPITAL
## 1241      050783                              COLUSA MEDICAL CENTER
## 1242      194102                    BEACON BEHAVIORAL HOSPITAL, INC
## 1243      360016                               JEWISH HOSPITAL, LLC
## 1244      190046                                    TOURO INFIRMARY
## 1245      390056                           PENN HIGHLANDS HUNTINDON
## 1246      140228                          SWEDISH AMERICAN HOSPITAL
## 1247      191316                     POINTE COUPEE GENERAL HOSPITAL
## 1248      314024             HUDSON COUNTY MEADOWVIEW PSYCHIATRIC H
## 1249      230038               SPECTRUM HEALTH - BUTTERWORTH CAMPUS
## 1250      100236                          FAWCETT MEMORIAL HOSPITAL
## 1251      110187                        CHESTATEE REGIONAL HOSPITAL
## 1252      033302                        PHOENIX CHILDREN'S HOSPITAL
## 1253      370212         OKLAHOMA CENTER FOR ORTHOPAEDIC & MULTI-SP
## 1254      371336                           NEWMAN MEMORIAL HOSPITAL
## 1255      331304                    MARGARETVILLE MEMORIAL HOSPITAL
## 1256      470003               UNIVERSITY OF VERMONT MEDICAL CENTER
## 1257      050329                     CORONA REGIONAL MEDICAL CENTER
## 1258      100051                                SOUTH LAKE HOSPITAL
## 1259      170150                       SOUTH CENTRAL KS  MED CENTER
## 1260      100049                  HIGHLANDS REGIONAL MEDICAL CENTER
## 1261      454065                             HICKORY TRAIL HOSPITAL
## 1262      264005                 SOUTHEAST MISSOURI MENTAL HLTH CTR
## 1263      340127                           GRANVILLE HEALTH SYSTEMS
## 1264      454006                             TERRELL STATE HOSPITAL
## 1265      450147                            DETAR HEALTHCARE SYSTEM
## 1266      450670                     HCA HOUSTON HEALTHCARE TOMBALL
## 1267      334002                                         FOUR WINDS
## 1268      180010                              SAINT JOSEPH HOSPITAL
## 1269      051330                               MODOC MEDICAL CENTER
## 1270      370149           SSM HEALTH ST ANTHONY HOSPITAL - SHAWNEE
## 1271      110034                                  AU MEDICAL CENTER
## 1272      161370                                    LORING HOSPITAL
## 1273      330058                            GENEVA GENERAL HOSPITAL
## 1274      010065                             RUSSELL MEDICAL CENTER
## 1275      060020                       PARKVIEW MEDICAL CENTER, INC
## 1276      161315                        KEOKUK COUNTY HEALTH CENTER
## 1277      390125                            WAYNE MEMORIAL HOSPITAL
## 1278      390222                           RIDDLE MEMORIAL HOSPITAL
## 1279      261309                           WRIGHT MEMORIAL HOSPITAL
## 1280      330233                  BROOKDALE HOSPITAL MEDICAL CENTER
## 1281      180044                           PIKEVILLE MEDICAL CENTER
## 1282      420083               MARY BLACK HEALTH SYSTEM SPARTANBURG
## 1283      531305                    PLATTE COUNTY MEMORIAL HOSPITAL
## 1284      390146                            WARREN GENERAL HOSPITAL
## 1285      521334             THEDACARE MEDICAL CENTER - WAUPACA INC
## 1286      370091                        SAINT FRANCIS HOSPITAL, INC
## 1287      240006                             OLMSTED MEDICAL CENTER
## 1288      431307                  SANFORD CLEAR LAKE MEDICAL CENTER
## 1289      140110       OTTAWA REGIONAL HOSPITAL & HEALTHCARE CENTER
## 1290      051327                           SENECA DISTRICT HOSPITAL
## 1291      040036    BAPTIST HEALTH MEDICAL CENTER NORTH LITTLE ROCK
## 1292      450152                                 METROPLEX HOSPITAL
## 1293      141334                        ST JOSEPH MEMORIAL HOSPITAL
## 1294      194100                          SEASIDE BEHAVIORAL CENTER
## 1295      391307                     TYRONE REGIONAL HEALTH NETWORK
## 1296      210015             MEDSTAR FRANKLIN SQUARE MEDICAL CENTER
## 1297      150181                    ST VINCENT FISHERS HOSPITAL INC
## 1298      670043                 CEDAR PARK REGIONAL MEDICAL CENTER
## 1299      451316                    MADISON ST JOSEPH HEALTH CENTER
## 1300      050696                               KECK HOSPITAL OF USC
## 1301      154031                     OAKLAWN PSYCHIATRIC CENTER INC
## 1302      330393                 UNIVERSITY HOSPITAL AT STONY BROOK
## 1303      241308                        LAKE VIEW MEMORIAL HOSPITAL
## 1304      050765           KAISER FOUNDATION HOSPITAL-MORENO VALLEY
## 1305      260177                                   LIBERTY HOSPITAL
## 1306      444004                  LAKESIDE BEHAVIORAL HEALTH SYSTEM
## 1307      450033                 VHS HARLINGEN HOSPITAL COMPANY LLC
## 1308      500141                      ST FRANCIS COMMUNITY HOSPITAL
## 1309      161376                      CASS COUNTY MEMORIAL HOSPITAL
## 1310      450193 CHI ST LUKE'S HEALTH BAYLOR COLLEGE OF MEDICINE ME
## 1311      340049                  NORTH CAROLINA SPECIALTY HOSPITAL
## 1312      310064  ATLANTICARE REGIONAL MEDICAL CENTER - CITY CAMPUS
## 1313      471304           NORTH COUNTRY HOSPITAL AND HEALTH CENTER
## 1314      520088                                  ST AGNES HOSPITAL
## 1315      390199                         PUNXSUTAWNEY AREA HOSPITAL
## 1316      201306                                  RUMFORD  HOSPITAL
## 1317      050038                  SANTA CLARA VALLEY MEDICAL CENTER
## 1318      110032                           STEPHENS COUNTY HOSPITAL
## 1319      390027                         TEMPLE UNIVERSITY HOSPITAL
## 1320      360152                                   DOCTORS HOSPITAL
## 1321      450032     CHRISTUS GOOD SHEPHERD MEDICAL CENTER MARSHALL
## 1322      130013             SAINT ALPHONSUS MEDICAL CENTER - NAMPA
## 1323      221303                            ATHOL MEMORIAL HOSPITAL
## 1324      060096                               VAIL HEALTH HOSPITAL
## 1325      340113              CAROLINAS MEDICAL CENTER/BEHAV HEALTH
## 1326      220010                          LAWRENCE GENERAL HOSPITAL
## 1327      374008              JIM TALIAFERRO COMM MENTAL HEALTH CTR
## 1328      360037                  ST VINCENT CHARITY MEDICAL CENTER
## 1329      270049                              ST VINCENT HEALTHCARE
## 1330      364047                      RIDGEVIEW BEHAVIORAL HOSPITAL
## 1331      320074                         LOVELACE WESTSIDE HOSPITAL
## 1332      450678                       CITY HOSPITAL AT  WHITE ROCK
## 1333      141323                           MASSAC MEMORIAL HOSPITAL
## 1334      171371                         CLAY COUNTY MEDICAL CENTER
## 1335      330169                            MOUNT SINAI BETH ISRAEL
## 1336      361332                         HIGHLAND DISTRICT HOSPITAL
## 1337      260048                TRUMAN MEDICAL CENTER HOSPITAL HILL
## 1338      511310                        SUMMERS COUNTY ARH HOSPITAL
## 1339      320016                       GILA REGIONAL MEDICAL CENTER
## 1340      170201                    PINNACLE REGIONAL HOSPITAL, INC
## 1341      360358                         DILEY RIDGE MEDICAL CENTER
## 1342      050510                         KAISER FOUNDATION HOSPITAL
## 1343      390025                                KENSINGTON HOSPITAL
## 1344      263304                    SHRINERS HOSPITALS FOR CHILDREN
## 1345      310032                    INSPIRA MEDICAL CENTER VINELAND
## 1346      100132                     SOUTH FLORIDA BAPTIST HOSPITAL
## 1347      021312                  SAMUEL SIMMONDS MEMORIAL HOSPITAL
## 1348      360058    MERCER COUNTY JOINT TOWNSHIP COMMUNITY HOSPITAL
## 1349      171359                     GREELEY COUNTY HEALTH SERVICES
## 1350      100135                      TALLAHASSEE MEMORIAL HOSPITAL
## 1351      360014                      OHIOHEALTH O'BLENESS HOSPITAL
## 1352      140127                    ADVOCATE BROMENN MEDICAL CENTER
## 1353      241300                             MAHNOMEN HEALTH CENTER
## 1354      503301                    MARY BRIDGE CHILDREN'S HOSPITAL
## 1355      030014            JOHN C. LINCOLN NORTH MOUNTAIN HOSPITAL
## 1356      104075                      NORTH TAMPA BEHAVIORAL HEALTH
## 1357      524002                  WINNEBAGO MENTAL HEALTH INSTITUTE
## 1358      460057                                 PARK CITY HOSPITAL
## 1359      010022                      FLOYD CHEROKEE MEDICAL CENTER
## 1360      351336                    CHI ST ALEXIUS HEALTH DICKINSON
## 1361      150112                         COLUMBUS REGIONAL HOSPITAL
## 1362      330264                        ST LUKE'S CORNWALL HOSPITAL
## 1363      050686              KAISER FOUNDATION HOSPITAL, RIVERSIDE
## 1364      110054                               FLOYD MEDICAL CENTER
## 1365      451318                        STONEWALL MEMORIAL HOSPITAL
## 1366      450399                 BROWNFIELD REGIONAL MEDICAL CENTER
## 1367      330238                 NICHOLAS H NOYES MEMORIAL HOSPITAL
## 1368      460010                       INTERMOUNTAIN MEDICAL CENTER
## 1369      381312                  COQUILLE VALLEY HOSPITAL DISTRICT
## 1370      390147                        MONONGAHELA VALLEY HOSPITAL
## 1371      331311                              LITTLE FALLS HOSPITAL
## 1372      250117                       HIGHLAND COMMUNITY  HOSPITAL
## 1373      101312                     FISHERMEN'S COMMUNITY HOSPITAL
## 1374      440184                  FRANKLIN WOODS COMMUNITY HOSPITAL
## 1375      380102            SACRED HEART MEDICAL CENTER - RIVERBEND
## 1376      050301                      ADVENTIST HEALTH UKIAH VALLEY
## 1377      050257                            GOOD SAMARITAN HOSPITAL
## 1378      161381                     SANFORD SHELDON MEDICAL CENTER
## 1379      171318                                SEDAN CITY HOSPITAL
## 1380      370203                            COMMUNITY HOSPITAL, LLC
## 1381      451345                          CROSBYTON CLINIC HOSPITAL
## 1382      050009                 QUEEN OF THE VALLEY MEDICAL CENTER
## 1383      400103 MAYAGUEZ MEDICAL CENTER DR RAMON EMETERIO BETANCES
## 1384      161302                    IOWA SPECIALTY HOSPITAL-CLARION
## 1385      210060                           FORT WASHINGTON HOSPITAL
## 1386      460014                       MOUNTAIN WEST MEDICAL CENTER
## 1387      450042                           PROVIDENCE HEALTH CENTER
## 1388      210019                  PENINSULA REGIONAL MEDICAL CENTER
## 1389      230041                                 MCLAREN BAY REGION
## 1390      250058                          SOUTH CENTRAL REG MED CTR
## 1391      171361                           REPUBLIC COUNTY HOSPITAL
## 1392      220071                     MASSACHUSETTS GENERAL HOSPITAL
## 1393      310061        LOURDES MEDICAL CENTER OF BURLINGTON COUNTY
## 1394      260078                              OZARKS MEDICAL CENTER
## 1395      160122                    FORT MADISON COMMUNITY HOSPITAL
## 1396      050745                      CHAPMAN GLOBAL MEDICAL CENTER
## 1397      050174                       SANTA ROSA MEMORIAL HOSPITAL
## 1398      100075                                ST JOSEPHS HOSPITAL
## 1399      061314                             MEMORIAL HOSPITAL, THE
## 1400      371341                               SHARE MEDICAL CENTER
## 1401      360203          SOUTHEASTERN OHIO REGIONAL MEDICAL CENTER
## 1402      380033                   SACRED HEART UNIVERSITY DISTRICT
## 1403      670117                   TEXAS GENERAL HOSPITAL- VZRMC LP
## 1404      100077                     BAYFRONT HEALTH PORT CHARLOTTE
## 1405      451378                   BIG BEND REGIONAL MEDICAL CENTER
## 1406      251300                       S E LACKEY MEMORIAL HOSPITAL
## 1407      391315                                 PENN HIGHLANDS ELK
## 1408      050129                       ST BERNARDINE MEDICAL CENTER
## 1409      450324                              TEXOMA MEDICAL CENTER
## 1410      521359                            MEMORIAL MEDICAL CENTER
## 1411      110229                      PIEDMONT NEWNAN HOSPITAL, INC
## 1412      180045                              ST ELIZABETH FLORENCE
## 1413      370113                            INTEGRIS GROVE HOSPITAL
## 1414      420108                               UNION MEDICAL CENTER
## 1415      050597      EMANATE HEALTH FOOTHILL PRESBYTERIAN HOSPITAL
## 1416      501319                       ARBOR HEALTH MORTON HOSPITAL
## 1417      030030                              ABRAZO CENTRAL CAMPUS
## 1418      240207                           FAIRVIEW RIDGES HOSPITAL
## 1419      301303                               WEEKS MEDICAL CENTER
## 1420      141328                     HARDIN COUNTY GENERAL HOSPITAL
## 1421      441304                  JOHNSON COUNTY COMMUNITY HOSPITAL
## 1422      390183                 ST LUKE'S MINERS MEMORIAL HOSPITAL
## 1423      220033                       BEVERLY HOSPITAL CORPORATION
## 1424      361333                        FULTON COUNTY HEALTH CENTER
## 1425      520138                     AURORA ST LUKES MEDICAL CENTER
## 1426      351332                    HEART OF AMERICA MEDICAL CENTER
## 1427      281360                         BOX BUTTE GENERAL HOSPITAL
## 1428      050704                         MISSION COMMUNITY HOSPITAL
## 1429      060023                            ST MARYS MEDICAL CENTER
## 1430      100081                 HEALTHMARK REGIONAL MEDICAL CENTER
## 1431      151325                                 ST VINCENT WARRICK
## 1432      010044                     MARION REGIONAL MEDICAL CENTER
## 1433      370183                       HILLCREST HOSPITAL HENRYETTA
## 1434      361323                          AULTMAN ORRVILLE HOSPITAL
## 1435      240038                                    UNITED HOSPITAL
## 1436      451340                          SHAMROCK GENERAL HOSPITAL
## 1437      341326                               ANGEL MEDICAL CENTER
## 1438      150015                    FRANCISCAN HEALTH MICHIGAN CITY
## 1439      330397                          INTERFAITH MEDICAL CENTER
## 1440      054133       DEPT OF STATE HOSPITALS - METROPOLITAN - PSY
## 1441      344014                  HOLLY HILL MENTAL HEALTH SERVICES
## 1442      424014                          REBOUND BEHAVIORAL HEALTH
## 1443      330104                                     NYACK HOSPITAL
## 1444      190312                    OUR LADY OF THE ANGELS HOSPITAL
## 1445      330049                         NORTHERN DUTCHESS HOSPITAL
## 1446      330222                                  SARATOGA HOSPITAL
## 1447      100110                    OSCEOLA REGIONAL MEDICAL CENTER
## 1448      521349                          RIVER FALLS AREA HOSPITAL
## 1449      171354      COMMUNITY HOSPITAL, ONAGA AND ST MARYS CAMPUS
## 1450      070021                 WINDHAM COMM MEM HOSP & HATCH HOSP
## 1451      360118                      OHIOHEALTH MANSFIELD HOSPITAL
## 1452      010011                                  ST VINCENT'S EAST
## 1453      450340                SAN ANGELO COMMUNITY MEDICAL CENTER
## 1454      140100                       MIDWESTERN REGION MED CENTER
## 1455      050057                        KAWEAH DELTA MEDICAL CENTER
## 1456      281358                  GORDON MEMORIAL HOSPITAL DISTRICT
## 1457      150082                             DEACONESS HOSPITAL INC
## 1458      454069                              AUSTIN LAKES HOSPITAL
## 1459      451360         CHI ST LUKES HEALTH MEMORIAL SAN AUGUSTINE
## 1460      451324               LILLIAN M HUDSPETH MEMORIAL HOSPITAL
## 1461      053303               RADY CHILDREN'S HOSPITAL - SAN DIEGO
## 1462      521302                 MAYO CLINIC HEALTH SYSTEM-OAKRIDGE
## 1463      451351                      LYNN COUNTY HOSPITAL DISTRICT
## 1464      450775                    HCA HOUSTON HEALTHCARE KINGWOOD
## 1465      421303                     WILLIAMSBURG REGIONAL HOSPITAL
## 1466      240078                        FAIRVIEW SOUTHDALE HOSPITAL
## 1467      181307                         MORGAN COUNTY ARH HOSPITAL
## 1468      100080                                 JFK MEDICAL CENTER
## 1469      114035                RIVERWOODS BEHAVIORAL HEALTH SYSTEM
## 1470      440011                           BLOUNT MEMORIAL HOSPITAL
## 1471      010087         UNIVERSITY OF SOUTH ALABAMA MEDICAL CENTER
## 1472      390008                        ELLWOOD CITY MEDICAL CENTER
## 1473      271321                        WHEATLAND MEMORIAL HOSPITAL
## 1474      331309                             RIVER HOSPITAL CLINICS
## 1475      030112                         ARIZONA SPECIALTY HOSPITAL
## 1476      430012                        AVERA SACRED HEART HOSPITAL
## 1477      370004                            INTEGRIS MIAMI HOSPITAL
## 1478      400128                       HOSPITAL PAVIA HATO REY, INC
## 1479      040062                          MERCY HOSPITAL FORT SMITH
## 1480      241339                       HENDRICKS COMMUNITY HOSPITAL
## 1481      340099                     VIDANT ROANOKE CHOWAN HOSPITAL
## 1482      141301                               KIRBY MEDICAL CENTER
## 1483      100028                             PARRISH MEDICAL CENTER
## 1484      360239                            SYCAMORE MEDICAL CENTER
## 1485      414003                    EMMA PENDLETON BRADLEY HOSPITAL
## 1486      360098                                        LAKE HEALTH
## 1487      241332                               WINDOM AREA HOSPITAL
## 1488      050740                CEDAR-SINAI MARINA DEL REY HOSPITAL
## 1489      313302          WEISMAN CHILDRENS REHABILITATION HOSPITAL
## 1490      330103                             OLEAN GENERAL HOSPITAL
## 1491      360147                         MARIETTA MEMORIAL HOSPITAL
## 1492      370008                                    NORMAN REGIONAL
## 1493      501301                  GARFIELD COUNTY MEMORIAL HOSPITAL
## 1494      361303                            LODI COMMUNITY HOSPITAL
## 1495      450056                        SETON MEDICAL CENTER AUSTIN
## 1496      050710                KAISER FOUNDATION HOSPITAL - FRESNO
## 1497      250097               SOUTHWEST MS REGIONAL MEDICAL CENTER
## 1498      264004                              FULTON STATE HOSPITAL
## 1499      140300                      PROVIDENT HOSPITAL OF CHICAGO
## 1500      440144                          TENNOVA HEALTHCARE-HARTON
## 1501      510071                  BLUEFIELD REGIONAL MEDICAL CENTER
## 1502      050551                        LOS ALAMITOS MEDICAL CENTER
## 1503      360008                       SOUTHERN OHIO MEDICAL CENTER
## 1504      050077                             SCRIPPS MERCY HOSPITAL
## 1505      100045                                ADVENTHEALTH DELAND
## 1506      340040                              VIDANT MEDICAL CENTER
## 1507      010056                            ST VINCENT'S BIRMINGHAM
## 1508      050138           KAISER FOUNDATION HOSPITAL - LOS ANGELES
## 1509      180078                PAUL B HALL REGIONAL MEDICAL CENTER
## 1510      010109                      PICKENS COUNTY MEDICAL CENTER
## 1511      141321                                  FRANKLIN HOSPITAL
## 1512      281342                               CHI HEALTH ST MARY'S
## 1513      261338                            MERCY HOSPITAL CARTHAGE
## 1514      104018                       LIFESTREAM BEHAVIORAL CENTER
## 1515      320021                              PRESBYTERIAN HOSPITAL
## 1516      150059                                   RIVERVIEW HEALTH
## 1517      340145                              ATRIUM HEALTH LINCOLN
## 1518      010129                            NORTH BALDWIN INFIRMARY
## 1519      061320                           GUNNISON VALLEY HOSPITAL
## 1520      110071                                   APPLING HOSPITAL
## 1521      161331                   MERCY MEDICAL CENTER-NEW HAMPTON
## 1522      100180                     ST PETERSBURG GENERAL HOSPITAL
## 1523      161306                      JONES REGIONAL MEDICAL CENTER
## 1524      520196                          OAKLEAF SURGICAL HOSPITAL
## 1525      361313                             MORROW COUNTY HOSPITAL
## 1526      360090                                 ST LUKE'S HOSPITAL
## 1527      393304                      CHILDREN'S HOME OF PITTSBURGH
## 1528      110016               WELLSTAR WEST GEORGIA MEDICAL CENTER
## 1529      180017                      T J SAMSON COMMUNITY HOSPITAL
## 1530      100246 LAWNWOOD REGIONAL MEDICAL CENTER & HEART INSTITUTE
## 1531      321306                      LINCOLN COUNTY MEDICAL CENTER
## 1532      250004                   NORTH MISSISSIPPI MEDICAL CENTER
## 1533      460005                      OGDEN REGIONAL MEDICAL CENTER
## 1534      381319                                ST ANTHONY HOSPITAL
## 1535      130025                          MADISON MEMORIAL HOSPITAL
## 1536      190167                      MERCY REGIONAL MEDICAL CENTER
## 1537      030119                       MERCY GILBERT MEDICAL CENTER
## 1538      310119                                UNIVERSITY HOSPITAL
## 1539      361328                   DEFIANCE REGIONAL MEDICAL CENTER
## 1540      510048                      LOGAN REGIONAL MEDICAL CENTER
## 1541      490110                      LEWISGALE HOSPITAL MONTGOMERY
## 1542      140172        FRANCISCAN HEALTH OLYMPIA & CHICAGO HEIGHTS
## 1543      210049                UMD UPPER CHESAPEAKE MEDICAL CENTER
## 1544      110125                             FAIRVIEW PARK HOSPITAL
## 1545      050689                  SAN RAMON REGIONAL MEDICAL CENTER
## 1546      380071                   WILLAMETTE VALLEY MEDICAL CENTER
## 1547      450880 BAYLOR SCOTT AND WHITE SURGICAL HOSPITAL FORTWORTH
## 1548      351300                               TIOGA MEDICAL CENTER
## 1549      050179                             EMANUEL MEDICAL CENTER
## 1550      371300                        ATOKA COUNTY MEDICAL CENTER
## 1551      344004                          CENTRAL REGIONAL HOSPITAL
## 1552      220049                               MARLBOROUGH HOSPITAL
## 1553      050180     JOHN MUIR MEDICAL CENTER - WALNUT CREEK CAMPUS
## 1554      271310                      GARFIELD COUNTY HEALTH CENTER
## 1555      424005                          G WERBER BRYAN PSYCH HOSP
## 1556      030078                      PHOENIX INDIAN MEDICAL CENTER
## 1557      210040                          NORTHWEST HOSPITAL CENTER
## 1558      521322                       GRANT REGIONAL HEALTH CENTER
## 1559      310001               HACKENSACK UNIVERSITY MEDICAL CENTER
## 1560      010086                           NORTHWEST MEDICAL CENTER
## 1561      194103                              SEASIDE HEALTH SYSTEM
## 1562      670095             MEMORIAL HERMANN FIRST COLONY HOSPITAL
## 1563      060119                      MEDICAL CENTER OF THE ROCKIES
## 1564      220090                    MILFORD REGIONAL MEDICAL CENTER
## 1565      180070                 TWIN LAKES REGIONAL MEDICAL CENTER
## 1566      520091                           HOWARD YOUNG MEDICAL CTR
## 1567      340159                           PERSON MEMORIAL HOSPITAL
## 1568      320060         ZUNI COMPREHENSIVE COMMUNITY HEALTH CENTER
## 1569      201314                REDINGTON FAIRVIEW GENERAL HOSPITAL
## 1570      330198                  SOUTH NASSAU COMMUNITIES HOSPITAL
## 1571      531315                 SOUTH LINCOLN MEDICAL CENTER - CAH
## 1572      351334                    CHI ST ALEXIUS HEALTH WILLISTON
## 1573      510031                                ST FRANCIS HOSPITAL
## 1574      171347                           SHERIDAN COUNTY HOSPITAL
## 1575      110069                             HOUSTON MEDICAL CENTER
## 1576      530014                   CHEYENNE REGIONAL MEDICAL CENTER
## 1577      201305                           CALAIS REGIONAL HOSPITAL
## 1578      450389               UT HEALTH EAST TEXAS ATHENS HOSPITAL
## 1579      140030                                   SHERMAN HOSPITAL
## 1580      230110                 SPECTRUM HEALTH LUDINGTON HOSPITAL
## 1581      454101   ALLEGIANCE BEHAVIORAL HEALTH CENTER OF PLAINVIEW
## 1582      370056                  COMANCHE COUNTY MEMORIAL HOSPITAL
## 1583      171315                   NEMAHA VALLEY COMMUNITY HOSPITAL
## 1584      050748                 KAISER FOUNDATION HOSPITAL MANTECA
## 1585      490019 NOVANT HEALTH UVA HEALTH SYSTEM CULPEPER MED CENTE
## 1586      160124                          LAKES REGIONAL HEALTHCARE
## 1587      140040                         GALESBURG COTTAGE HOSPITAL
## 1588      161369                  CRAWFORD COUNTY MEMORIAL HOSPITAL
## 1589      360364                     CLEVELAND CLINIC AVON HOSPITAL
## 1590      190060                     LAKE CHARLES MEMORIAL HOSPITAL
## 1591      150046                      TERRE HAUTE REGIONAL HOSPITAL
## 1592      371323  WEATHERFORD REGIONAL HOSPITAL, INC OF WEATHERFORD
## 1593      140148                            MEMORIAL MEDICAL CENTER
## 1594      450801                  CHRISTUS ST MICHAEL HEALTH SYSTEM
## 1595      431313                       FREEMAN MEDICAL CENTER - CAH
## 1596      220095                                 HEYWOOD HOSPITAL -
## 1597      360036                         WOOSTER COMMUNITY HOSPITAL
## 1598      351323      CAVALIER COUNTY MEMORIAL HOSPITAL ASSOCIATION
## 1599      050063              HOLLYWOOD PRESBYTERIAN MEDICAL CENTER
## 1600      330196                              CONEY ISLAND HOSPITAL
## 1601      100242                 GULF COAST REGIONAL MEDICAL CENTER
## 1602      394034                                     HORSHAM CLINIC
## 1603      100071                        BAYFRONT HEALTH BROOKSVILLE
## 1604      360141              STEWARD NORTHSIDE MEDICAL CENTER, INC
## 1605      193300                                 CHILDRENS HOSPITAL
## 1606      440176                     INDIAN PATH COMMUNITY HOSPITAL
## 1607      064027                       CLEAR VIEW BEHAVIORAL HEALTH
## 1608      250078                           FORREST GENERAL HOSPITAL
## 1609      450730   BAYLOR SCOTT AND WHITE MEDICAL CENTER CARROLLTON
## 1610      070039                           MASONICARE HEALTH CENTER
## 1611      040041                   ST MARYS REGIONAL MEDICAL CENTER
## 1612      160064                    MERCY MEDICAL CENTER-NORTH IOWA
## 1613      064007                          CENTENNIAL PEAKS HOSPITAL
## 1614      111313                            PUTNAM GENERAL HOSPITAL
## 1615      110115                    WELLSTAR ATLANTA MEDICAL CENTER
## 1616      051314                    KERN VALLEY HEALTHCARE DISTRICT
## 1617      670126                            CROCKETT MEDICAL CENTER
## 1618      334012                   GREATER BINGHAMTON HEALTH CENTER
## 1619      190027               CHRISTUS OCHSNER ST PATRICK HOSPITAL
## 1620      370199 LAKESIDE WOMEN'S HOSPITAL, A MEMBER OF INTEGRIS HE
## 1621      250001               UNIVERSITY OF MISSISSIPPI MED CENTER
## 1622      110030                        CARTERSVILLE MEDICAL CENTER
## 1623      151332                   DECATUR COUNTY MEMORIAL HOSPITAL
## 1624      670119           PROVIDENCE HOSPITAL OF NORTH HOUSTON LLC
## 1625      140161                               SAINT JAMES HOSPITAL
## 1626      420055                  MUSC HEALTH MARION MEDICAL CENTER
## 1627      131307                           WEISER MEMORIAL HOSPITAL
## 1628      450563     BAYLOR SCOTT & WHITE MEDICAL CENTER  GRAPEVINE
## 1629      281359    MEMORIAL COMMUNITY HOSPITAL MCH & HEALTH SYSTEM
## 1630      450766    UT SOUTHWESTERN UNIVERSITY HOSPITAL-ZALE LIPSHY
## 1631      360155                    SOUTHWEST GENERAL HEALTH CENTER
## 1632      230021                       LAKELAND HOSPITAL, ST JOSEPH
## 1633      050014                             SUTTER AMADOR HOSPITAL
## 1634      370228                         BAILEY MEDICAL CENTER, LLC
## 1635      360056                  MERCY HEALTH - FAIRFIELD HOSPITAL
## 1636      034029                   OASIS BEHAVIORAL HEALTH HOSPITAL
## 1637      240010                     MAYO CLINIC HOSPITAL ROCHESTER
## 1638      100023                           CITRUS MEMORIAL HOSPITAL
## 1639      394004                            DANVILLE STATE HOSPITAL
## 1640      050089               COMMUNITY HOSPITAL OF SAN BERNARDINO
## 1641      431326                 MILBANK AREA HOSPITAL/AVERA HEALTH
## 1642      241322                          RAINY LAKE MEDICAL CENTER
## 1643      054150 KAISER PERMANENTE PSYCHIATRIC HEALTH FACILITY-SANT
## 1644      141311                      FAIRFIELD MEMORIAL HOSPITAL 1
## 1645      231301                    KALKASKA MEMORIAL HEALTH CENTER
## 1646      240019                             ESSENTIA HEALTH DULUTH
## 1647      451347              COLEMAN COUNTY MEDICAL CENTER COMPANY
## 1648      131308                             CASCADE MEDICAL CENTER
## 1649      241356                           MILLE LACS HEALTH SYSTEM
## 1650      420087                                     ROPER HOSPITAL
## 1651      281350                            JOHNSON COUNTY HOSPITAL
## 1652      440161                  TRISTAR CENTENNIAL MEDICAL CENTER
## 1653      250006             BAPTIST MEMORIAL HOSPITAL UNION COUNTY
## 1654      161330                   AUDUBON COUNTY MEMORIAL HOSPITAL
## 1655      161364                     JEFFERSON COUNTY HEALTH CENTER
## 1656      341319                TRANSYLVANIA REGIONAL HOSPITAL, INC
## 1657      461305                   MILFORD VALLEY MEMORIAL HOSPITAL
## 1658      361325                          GALION COMMUNITY HOSPITAL
## 1659      180102                                   LOURDES HOSPITAL
## 1660      500079                  MULTICARE GOOD SAMARITAN HOSPITAL
## 1661      061308     SAN LUIS VALLEY HEALTH CONEJOS COUNTY HOSPITAL
## 1662      021313                           SOUTH PENINSULA HOSPITAL
## 1663      450617                  HCA HOUSTON HEALTHCARE CLEAR LAKE
## 1664      100113                          UF HEALTH SHANDS HOSPITAL
## 1665      670053                      ST LUKE'S SUGAR LAND HOSPITAL
## 1666      330057                                ST PETER'S HOSPITAL
## 1667      050348         UNIVERSITY OF CALIFORNIA IRVINE MED CENTER
## 1668      501312                          PROSSER MEMORIAL HOSPITAL
## 1669      393303                CHILDREN'S HOSPITAL OF PHILADELPHIA
## 1670      314021                   HAMPTON BEHAVIORAL HEALTH SYSTEM
## 1671      341303               FIRSTHEALTH MONTGOMERY MEMORIAL HOSP
## 1672      054104                             HERITAGE OAKS HOSPITAL
## 1673      420105                             MCLEOD LORIS  HOSPITAL
## 1674      460041                  DAVIS HOSPITAL AND MEDICAL CENTER
## 1675      330201                   KINGSBROOK JEWISH MEDICAL CENTER
## 1676      100191                          MEDICAL CENTER OF TRINITY
## 1677      050393                              PIH HOSPITAL - DOWNEY
## 1678      210009                        JOHNS HOPKINS HOSPITAL, THE
## 1679      034013                 ST. LUKE'S BEHAVIORAL HOSPITAL, LP
## 1680      260186                        LAKE REGIONAL HEALTH SYSTEM
## 1681      030068                 MT. GRAHAM REGIONAL MEDICAL CENTER
## 1682      180066                            LOGAN MEMORIAL HOSPITAL
## 1683      263303            RANKEN JORDAN PEDIATRIC BRIDGE HOSPITAL
## 1684      340107                          VIDANT EDGECOMBE HOSPITAL
## 1685      190313                          NEW ORLEANS EAST HOSPITAL
## 1686      160032                               SKIFF MEDICAL CENTER
## 1687      440159                               DELTA MEDICAL CENTER
## 1688      331317                      LEWIS COUNTY GENERAL HOSPITAL
## 1689      100022                          JACKSON MEMORIAL HOSPITAL
## 1690      371320                            CLEVELAND AREA HOSPITAL
## 1691      381303                        PROVIDENCE SEASIDE HOSPITAL
## 1692      250020                WEBSTER GENERAL HOSPITAL/ SWING BED
## 1693      451307                             IRAAN GENERAL HOSPITAL
## 1694      011302                                   RED BAY HOSPITAL
## 1695      374021                                      PARKSIDE, INC
## 1696      050169                       PIH HEALTH HOSPITAL-WHITTIER
## 1697      360189                                     MADISON HEALTH
## 1698      381306                          WALLOWA MEMORIAL HOSPITAL
## 1699      220024                             HOLYOKE MEDICAL CENTER
## 1700      451380              UT HEALTH EAST TEXAS QUITMAN HOSPITAL
## 1701      190005              UNIVERSITY MEDICAL CENTER NEW ORLEANS
## 1702      161378                 MERCYONE DYERSVILLE MEDICAL CENTER
## 1703      150007               COMMUNITY HOWARD REGIONAL HEALTH INC
## 1704      154009                                HAMILTON CENTER INC
## 1705      194105           APOLLO BEHAVIORAL HEALTH HOSPITAL, L L C
## 1706      050737                            GARFIELD MEDICAL CENTER
## 1707      150065                             SCHNECK MEDICAL CENTER
## 1708      201301                   CHARLES A DEAN MEMORIAL HOSPITAL
## 1709      141350                                ST FRANCIS HOSPITAL
## 1710      280032                            MARY LANNING HEALTHCARE
## 1711      150011                            MARION GENERAL HOSPITAL
## 1712      190102   OUR LADY OF LOURDES REGIONAL MEDICAL CENTER, INC
## 1713      250151                             ALLIANCE HEALTH CENTER
## 1714      344028                 STRATEGIC BEHAVORIAL CENTER-GARNER
## 1715      310019              ST JOSEPH'S UNIVERSITY MEDICAL CENTER
## 1716      070031                                   GRIFFIN HOSPITAL
## 1717      360148                                  POMERENE HOSPITAL
## 1718      184012             LINCOLN TRAIL BEHAVIORAL HEALTH SYSTEM
## 1719      370114                        ST JOHN MEDICAL CENTER, INC
## 1720      180139                      KENTUCKY RIVER MEDICAL CENTER
## 1721      261332                   CARROLL COUNTY MEMORIAL HOSPITAL
## 1722      141310                      OSF SAINT PAUL MEDICAL CENTER
## 1723      450162                               GRACE MEDICAL CENTER
## 1724      261321                             HEDRICK MEDICAL CENTER
## 1725      061302       COLORADO CANYONS HOSPITAL AND MEDICAL CENTER
## 1726      250042               NORTHWEST MISSISSIPPI MEDICAL CENTER
## 1727      241358          CASS LAKE INDIAN HEALTH SERVICES HOSPITAL
## 1728      034024                    AURORA BEHAVIORAL HEALTH SYSTEM
## 1729      100252                                 RAULERSON HOSPITAL
## 1730      271344                               SIDNEY HEALTH CENTER
## 1731      390084                         SUNBURY COMMUNITY HOSPITAL
## 1732      330163                           EASTERN NIAGARA HOSPITAL
## 1733      010104                           GRANDVIEW MEDICAL CENTER
## 1734      340187                               DAVIE MEDICAL CENTER
## 1735      100267                       ENGLEWOOD COMMUNITY HOSPITAL
## 1736      494017          SOUTHERN VIRGINIA MENTAL HEALTH INSTITUTE
## 1737      061325                            PIONEERS MEDICAL CENTER
## 1738      390180                      CROZER CHESTER MEDICAL CENTER
## 1739      501322                     FERRY COUNTY MEMORIAL HOSPITAL
## 1740      050103                      WHITE MEMORIAL MEDICAL CENTER
## 1741      113300       CHILDREN'S HEALTHCARE OF ATLANTA AT EGLESTON
## 1742      420030                            COLLETON MEDICAL CENTER
## 1743      030130                     BANNER IRONWOOD MEDICAL CENTER
## 1744      240066                         LAKEVIEW MEMORIAL HOSPITAL
## 1745      101313                                  MARINERS HOSPITAL
## 1746      190278                    SPECIALISTS HOSPITAL SHREVEPORT
## 1747      370139                         STILLWATER MEDICAL - PERRY
## 1748      180106                       THE MEDICAL CENTER AT ALBANY
## 1749      534001                             WYOMING STATE HOSPITAL
## 1750      261302                             MADISON MEDICAL CENTER
## 1751      330086                   MONTEFIORE MOUNT VERNON HOSPITAL
## 1752      470012                SOUTHWESTERN VERMONT MEDICAL CENTER
## 1753      511318                   MONTGOMERY GENERAL HOSPITAL, INC
## 1754      454000                          BIG SPRING STATE HOSPITAL
## 1755      520033           ASPIRUS RIVERVIEW HOSPITAL & CLINICS INC
## 1756      100067                               ST ANTHONYS HOSPITAL
## 1757      170058                          MERCY HOSPITAL-FORT SCOTT
## 1758      140080                    PRESENCE SAINT FRANCIS HOSPITAL
## 1759      201303                          PENOBSCOT VALLEY HOSPITAL
## 1760      450831  SURGERY SPECIALTY HOSPITALS OF AMERICA SE HOUSTON
## 1761      330193                   FLUSHING HOSPITAL MEDICAL CENTER
## 1762      010001                   SOUTHEAST ALABAMA MEDICAL CENTER
## 1763      051304                 JOHN C FREMONT HEALTHCARE DISTRICT
## 1764      251334                    CHOCTAW REGIONAL MEDICAL CENTER
## 1765      230273    DETROIT RECEIVING HOSPITAL & UNIV HEALTH CENTER
## 1766      093300                            CHILDREN'S HOSPITAL NMC
## 1767      220012                                  CAPE COD HOSPITAL
## 1768      361306                        MERCY HEALTH-ALLEN HOSPITAL
## 1769      320067                          GUADALUPE COUNTY HOSPITAL
## 1770      390184                                 HIGHLANDS HOSPITAL
## 1771      461309                               KANE COUNTY HOSPITAL
## 1772      241336                          KITTSON MEMORIAL HOSPITAL
## 1773      171306                       WICHITA COUNTY HEALTH CENTER
## 1774      100291                         STEWARD MELBOURNE HOSPITAL
## 1775      010069                             MEDICAL CENTER BARBOUR
## 1776      220171        LAHEY HOSPITAL & MEDICAL CENTER, BURLINGTON
## 1777      450675                             MEDICAL CITY ARLINGTON
## 1778      394027                 FAIRMOUNT BEHAVIORAL HEALTH SYSTEM
## 1779      104040                             CENTERSTONE OF FLORIDA
## 1780      331307                              CLIFTON FINE HOSPITAL
## 1781      261310                          SCOTLAND COUNTY  HOSPITAL
## 1782      050036                      BAKERSFIELD MEMORIAL HOSPITAL
## 1783      230167                            MCLAREN GREATER LANSING
## 1784      340030                           DUKE UNIVERSITY HOSPITAL
## 1785      171310                           CHEYENNE COUNTY HOSPITAL
## 1786      341325                             ASHE MEMORIAL HOSPITAL
## 1787      351314             JACOBSON MEMORIAL HOSPITAL CARE CENTER
## 1788      520207                              AURORA MEDICAL CENTER
## 1789      031302          NORTHERN COCHISE COMMUNITY HOSPITAL, INC.
## 1790      510007                           ST MARY'S MEDICAL CENTER
## 1791      520202                       ASCENSION ST CLARES HOSPITAL
## 1792      171367                         GOVE COUNTY MEDICAL CENTER
## 1793      110075               EAST GEORGIA REGIONAL MEDICAL CENTER
## 1794      030038                   SCOTTSDALE OSBORN MEDICAL CENTER
## 1795      371326                              ALLIANCEHEALTH MADILL
## 1796      180132                  LAKE CUMBERLAND REGIONAL HOSPITAL
## 1797      260113                      MISSOURI DELTA MEDICAL CENTER
## 1798      180067                    UNIVERSITY OF KENTUCKY HOSPITAL
## 1799      330267       NEW YORK-PRESBYTERIAN/HUDSON VALLEY HOSPITAL
## 1800      310010             PENN MEDICINE PRINCETON MEDICAL CENTER
## 1801      520194                  ORTHOPAEDIC HOSPITAL OF WISCONSIN
## 1802      140288                   ADVOCATE GOOD SAMARITAN HOSPITAL
## 1803      190114                  CLAIBORNE MEMORIAL MEDICAL CENTER
## 1804      150126                      FRANCISCAN HEALTH CROWN POINT
## 1805      370192                        NORTHWEST SURGICAL HOSPITAL
## 1806      031308                         HUHU KAM MEMORIAL HOSPITAL
## 1807      130067                             IDAHO DOCTORS HOSPITAL
## 1808      281330                           WARREN MEMORIAL HOSPITAL
## 1809      030077                       SAN CARLOS APACHE HEALTHCARE
## 1810      050727                   COMMUNITY HOSPITAL OF LONG BEACH
## 1811      191317                            JACKSON PARISH HOSPITAL
## 1812      150169                           COMMUNITY HOSPITAL NORTH
## 1813      170075                                MERCY HOSPITAL, INC
## 1814      454127                                       ROCK SPRINGS
## 1815      100069                           ADVENTHEALTH CARROLLWOOD
## 1816      264017                TWO RIVERS BEHAVIORAL HEALTH SYSTEM
## 1817      050245                  ARROWHEAD REGIONAL MEDICAL CENTER
## 1818      104072                CENTRAL FLORIDA BEHAVIORAL HOSPITAL
## 1819      190297               DOCTORS HOSPITAL AT DEER CREEK L L C
## 1820      530002                  CAMPBELL COUNTY MEMORIAL HOSPITAL
## 1821      410007                              RHODE ISLAND HOSPITAL
## 1822      141317                          GIBSON COMMUNITY HOSPITAL
## 1823      454018                                 RED RIVER HOSPITAL
## 1824      190019               CHRISTUS ST FRANCES CABRINI HOSPITAL
## 1825      100292         SACRED HEART HOSPITAL ON THE EMERALD COAST
## 1826      351315                                 CHI OAKES HOSPITAL
## 1827      161377                MERCYONE CENTERVILLE MEDICAL CENTER
## 1828      500012         YAKIMA REGIONAL MEDICAL AND CARDIAC CENTER
## 1829      261314                     HERMANN AREA DISTRICT HOSPITAL
## 1830      410009                      KENT COUNTY MEMORIAL HOSPITAL
## 1831      050108                  SUTTER MEDICAL CENTER, SACRAMENTO
## 1832      510047                   FAIRMONT REGIONAL MEDICAL CENTER
## 1833      230239              CHIPPEWA COUNTY WAR MEMORIAL HOSPITAL
## 1834      241355                   GLENCOE REGIONAL HEALTH SERVICES
## 1835      660001                         COMMONWEALTH HEALTH CENTER
## 1836      150001                          JOHNSON MEMORIAL HOSPITAL
## 1837      410005                        OUR LADY OF FATIMA HOSPITAL
## 1838      010052                     LAKE MARTIN COMMUNITY HOSPITAL
## 1839      171375            MITCHELL COUNTY HOSPITAL HEALTH SYSTEMS
## 1840      394043                         CLARION PSYCHIATRIC CENTER
## 1841      160058              UNIVERSITY OF IOWA HOSPITAL & CLINICS
## 1842      231315                     ASCENSION BORGESS LEE HOSPITAL
## 1843      450229                            HENDRICK MEDICAL CENTER
## 1844      111330                                POLK MEDICAL CENTER
## 1845      241325                           CHIPPEWA COUNTY HOSPITAL
## 1846      171380            NEOSHO MEMORIAL REGIONAL MEDICAL CENTER
## 1847      281348                           TRI VALLEY HEALTH SYSTEM
## 1848      100150                          LOWER KEYS MEDICAL CENTER
## 1849      194084       BEACON BEHAVIORAL HOSPITAL- NEW ORLEANS, INC
## 1850      450894                      PINE CREEK MEDICAL CENTER LLP
## 1851      191302                                 ST MARTIN HOSPITAL
## 1852      181320   LIVINGSTON HOSPITAL AND HEALTHCARE SERVICES, INC
## 1853      140250                   ADVOCATE SOUTH SUBURBAN HOSPITAL
## 1854      110153                                     PERRY HOSPITAL
## 1855      271316                   FRANCES MAHON DEACONESS HOSPITAL
## 1856      400106                              METROPOLITAN HOSPITAL
## 1857      261324                       CASS REGIONAL MEDICAL CENTER
## 1858      340123                                  RANDOLPH HOSPITAL
## 1859      114029                     EAST CENTRAL REGIONAL HOSPITAL
## 1860      050112 SANTA MONICA - UCLA MED CTR & ORTHOPAEDIC HOSPITAL
## 1861      190303                   CYPRESS POINTE SURGICAL HOSPITAL
## 1862      450475            UT HEALTH EAST TEXAS HENDERSON HOSPITAL
## 1863      370097                        SOUTHWESTERN MEDICAL CENTER
## 1864      100248                               LARGO MEDICAL CENTER
## 1865      140064                             ST MARY MEDICAL CENTER
## 1866      281308                     HENDERSON HEALTH CARE SERVICES
## 1867      010085             DECATUR MORGAN HOSPITAL-DECATUR CAMPUS
## 1868      101300                              ADVENTHEALTH WAUCHULA
## 1869      390072                            BERWICK HOSPITAL CENTER
## 1870      511313                            BOONE MEMORIAL HOSPITAL
## 1871      330399                               ST BARNABAS HOSPITAL
## 1872      150090                             FRANCISCAN HEALTH DYER
## 1873      490009              UNIVERSITY OF VIRGINIA MEDICAL CENTER
## 1874      111316                        WARM SPRINGS MEDICAL CENTER
## 1875      340071                   BETSY JOHNSON REGIONAL  HOSPITAL
## 1876      241371                     SANFORD LUVERNE MEDICAL CENTER
## 1877      281323                                CHI HEALTH SCHUYLER
## 1878      070007                       LAWRENCE & MEMORIAL HOSPITAL
## 1879      284003                            LINCOLN REGIONAL CENTER
## 1880      370026                  ST MARY'S REGIONAL MEDICAL CENTER
## 1881      110107              MEDICAL CENTER, NAVICENT HEALTH (THE)
## 1882      171369                      HODGEMAN COUNTY HEALTH CENTER
## 1883      301302                      LITTLETON REGIONAL HEALTHCARE
## 1884      010149                        BAPTIST MEDICAL CENTER EAST
## 1885      100200                      BROWARD HEALTH IMPERIAL POINT
## 1886      241380                   ST JOSEPHS AREA  HEALTH SERVICES
## 1887      321308                            CIBOLA GENERAL HOSPITAL
## 1888      501324                              THREE RIVERS HOSPITAL
## 1889      360040                            KNOX COMMUNITY HOSPITAL
## 1890      521329      ESSENTIA HEALTH ST MARY'S HOSPITAL - SUPERIOR
## 1891      050394       COMMUNITY MEMORIAL HOSPITAL SAN BUENAVENTURA
## 1892      521342               INDIANHEAD MEDICAL CENTER SHELL LAKE
## 1893      490018                                     AUGUSTA HEALTH
## 1894      110051                             UNION GENERAL HOSPITAL
## 1895      250141                   BAPTIST MEMORIAL HOSPITAL DESOTO
## 1896      174022      ADAIR ACUTE CARE AT OSAWATOMIE STATE HOSPITAL
## 1897      220062                   ADCARE HOSPITAL OF WORCESTER INC
## 1898      040084                           SALINE MEMORIAL HOSPITAL
## 1899      171336                   NESS COUNTY HOSPITAL DISTRICT #2
## 1900      210022                                  SUBURBAN HOSPITAL
## 1901      460039                         BEAR RIVER VALLEY HOSPITAL
## 1902      051310                   ADVENTIST HEALTH HOWARD MEMORIAL
## 1903      141319                             HAMMOND HENRY HOSPITAL
## 1904      030012                    YAVAPAI REGIONAL MEDICAL CENTER
## 1905      154055                                  BRENTWOOD SPRINGS
## 1906      371313                     MERCY HOSPITAL KINGFISHER, INC
## 1907      260104                SSM HEALTH DEPAUL HOSPITAL ST LOUIS
## 1908      030069                     HAVASU REGIONAL MEDICAL CENTER
## 1909      210030               UMD SHORE MEDICAL CTR AT CHESTERTOWN
## 1910      330005                                     KALEIDA HEALTH
## 1911      061315                             YUMA DISTRICT HOSPITAL
## 1912      490117               CARILION TAZEWELL COMMUNITY HOSPITAL
## 1913      140012                     KATHERINE SHAW BETHEA HOSPITAL
## 1914      450299                     COLLEGE STATION MEDICAL CENTER
## 1915      140077                    TOUCHETTE REGIONAL HOSPITAL INC
## 1916      451323                   ROLLINS BROOK COMMUNITY HOSPITAL
## 1917      230118                               MCLAREN THUMB REGION
## 1918      330107                         PECONIC BAY MEDICAL CENTER
## 1919      061310                  SEDGWICK COUNTY MEMORIAL HOSPITAL
## 1920      534004                       WYOMING BEHAVIORAL INSTITUTE
## 1921      050091              COMMUNITY HOSPITAL OF HUNTINGTON PARK
## 1922      451310                        BALLINGER MEMORIAL HOSPITAL
## 1923      050766            SUTTER SURGICAL HOSPITAL - NORTH VALLEY
## 1924      013300                     CHILDREN'S HOSPITAL OF ALABAMA
## 1925      320018                            MEMORIAL MEDICAL CENTER
## 1926      220066                                  MERCY MEDICAL CTR
## 1927      150084              ST VINCENT HOSPITAL & HEALTH SERVICES
## 1928      140015                                  BLESSING HOSPITAL
## 1929      360041                   PARMA COMMUNITY GENERAL HOSPITAL
## 1930      450148    TEXAS HEALTH HARRIS METHODIST HOSPITAL CLEBURNE
## 1931      350011                                            SANFORD
## 1932      161339                              WAVERLY HEALTH CENTER
## 1933      160001                     UNITYPOINT HEALTH-MARSHALLTOWN
## 1934      110028                                UNIVERSITY HOSPITAL
## 1935      201308                          HOULTON REGIONAL HOSPITAL
## 1936      110226                          EMORY HILLANDALE HOSPITAL
## 1937      140033                           LAKE BEHAVIORAL HOSPITAL
## 1938      171345                   PAWNEE VALLEY COMMUNITY HOSPITAL
## 1939      260057                    CAMERON REGIONAL MEDICAL CENTER
## 1940      363300      CINCINNATI CHILDREN'S HOSPITAL MEDICAL CENTER
## 1941      194087                 ALLEGIANCE HEALTH CENTER OF MONROE
## 1942      281304                      THAYER COUNTY HEALTH SERVICES
## 1943      501321                              NORTH VALLEY HOSPITAL
## 1944      440006                     TRISTAR SKYLINE MEDICAL CENTER
## 1945      010164                        COOSA VALLEY MEDICAL CENTER
## 1946      100302                   ST CLOUD REGIONAL MEDICAL CENTER
## 1947      150089   INDIANA UNIVERSITY HEALTH BALL MEMORIAL HOSPITAL
## 1948      400004               ASOCIACION HOSPITAL DEL MAESTRO, INC
## 1949      050754                       MENLO PARK SURGICAL HOSPITAL
## 1950      440185                       TENNOVA HEALTHCARE-CLEVELAND
## 1951      400013                         HOSPITAL MENONITA DE CAYEY
## 1952      670107 BAYLOR SCOTT AND WHITE EMERGENCY HOSPITAL BURLESON
## 1953      050757                   ALVARADO HOSPITAL MEDICAL CENTER
## 1954      440053                   SAINT THOMAS RUTHERFORD HOSPITAL
## 1955      230037                                 HILLSDALE HOSPITAL
## 1956      291302                         WILLIAM BEE RIRIE HOSPITAL
## 1957      364038                             BELMONT PINES HOSPITAL
## 1958      190008                  TERREBONNE GENERAL MEDICAL CENTER
## 1959      223304      SHRINERS' HOSPITAL FOR CHILDREN - BOSTON, THE
## 1960      040026               CHI ST. VINCENT HOSPITAL HOT SPRINGS
## 1961      050709                             DESERT VALLEY HOSPITAL
## 1962      390237                      REGIONAL HOSPITAL OF SCRANTON
## 1963      463302   SHRINERS HOSPITALS FOR CHILDREN - SALT LAKE CITY
## 1964      070020                                 MIDDLESEX HOSPITAL
## 1965      430027                         SANFORD USD MEDICAL CENTER
## 1966      171317                            EDWARDS COUNTY HOSPITAL
## 1967      184014                                    CUMBERLAND HALL
## 1968      440109                              HARDIN MEDICAL CENTER
## 1969      504004                             EASTERN STATE HOSPITAL
## 1970      141303                WARNER HOSPITAL AND HEALTH SERVICES
## 1971      294000                     DINI-TOWNSEND HOSPITAL AT NNMH
## 1972      230002                             ST MARY MERCY HOSPITAL
## 1973      231319                          ASPIRUS KEWEENAW HOSPITAL
## 1974      120001                          THE QUEENS MEDICAL CENTER
## 1975      330074                              F F THOMPSON HOSPITAL
## 1976      494021                             WESTERN STATE HOSPITAL
## 1977      121303                           MOLOKAI GENERAL HOSPITAL
## 1978      220110                       BRIGHAM AND WOMEN'S HOSPITAL
## 1979      520063         ST JOSEPHS COMMUNITY HOSPITAL OF WEST BEND
## 1980      250019                      MEMORIAL HOSPITAL AT GULFPORT
## 1981      121300                   KAUAI VETERANS MEMORIAL HOSPITAL
## 1982      321302                   DR DAN C TRIGG MEMORIAL HOSPITAL
## 1983      260074                    MOBERLY REGIONAL MEDICAL CENTER
## 1984      180046                         BOURBON COMMUNITY HOSPITAL
## 1985      330140                 ST JOSEPH'S HOSPITAL HEALTH CENTER
## 1986      390076                                BRANDYWINE HOSPITAL
## 1987      370201                 SURGICAL HOSPITAL OF OKLAHOMA, LLC
## 1988      331315                                GOUVERNEUR HOSPITAL
## 1989      431333         SANFORD CANTON-INWOOD MEDICAL CENTER - CAH
## 1990      320059                     NORTHERN NAVAJO MEDICAL CENTER
## 1991      130018              EASTERN IDAHO REGIONAL MEDICAL CENTER
## 1992      440227                  TRISTAR STONECREST MEDICAL CENTER
## 1993      100289                          CLEVELAND CLINIC HOSPITAL
## 1994      521336                     HAYWARD AREA MEMORIAL HOSPITAL
## 1995      390096                           ST JOSEPH MEDICAL CENTER
## 1996      280013                        THE NEBRASKA MEDICAL CENTER
## 1997      161307                       HANCOCK COUNTY HEALTH SYSTEM
## 1998      110230                         EMORY JOHNS CREEK HOSPITAL
## 1999      190099                                 AVOYELLES HOSPITAL
## 2000      420106                  PALMETTO HEALTH BAPTIST PARKRIDGE
## 2001      281328                             MERRICK MEDICAL CENTER
## 2002      450200                     WADLEY REGIONAL MEDICAL CENTER
## 2003      010148                           EVERGREEN MEDICAL CENTER
## 2004      190160                   GLENWOOD REGIONAL MEDICAL CENTER
## 2005      381310                          PIONEER MEMORIAL HOSPITAL
## 2006      044021                        WOODRIDGE BEHAVIORAL CENTER
## 2007      050013                         ADVENTIST HEALTH ST HELENA
## 2008      241335                        ST ELIZABETH MEDICAL CENTER
## 2009      100313                  SACRED HEART HOSPITAL ON THE GULF
## 2010      490136              BON SECOURS ST FRANCIS MEDICAL CENTER
## 2011      064023                              WEST SPRINGS HOSPITAL
## 2012      241367                           FIRSTLIGHT HEALTH SYSTEM
## 2013      531312                               CODY REGIONAL HEALTH
## 2014      351335                  JAMESTOWN REGIONAL MEDICAL CENTER
## 2015      110215                          PIEDMONT FAYETTE HOSPITAL
## 2016      180009                   KING'S DAUGHTERS' MEDICAL CENTER
## 2017      110236                     CHI MEMORIAL HOSPITAL- GEORGIA
## 2018      310091                               SALEM MEDICAL CENTER
## 2019      454084                              AUSTIN STATE HOSPITAL
## 2020      160153                    MERCY MEDICAL CENTER-SIOUX CITY
## 2021      190118                      DESOTO REGIONAL HEALTH SYSTEM
## 2022      520021           FROEDTERT SOUTH - KENOSHA MEDICAL CENTER
## 2023      250096                                MERIT HEALTH RANKIN
## 2024      260006                      MOSAIC LIFE CARE AT ST JOSEPH
## 2025      240014                                NORTHFIELD HOSPITAL
## 2026      440012                    BRISTOL REGIONAL MEDICAL CENTER
## 2027      161337                          VAN BUREN COUNTY HOSPITAL
## 2028      520070            MAYO CLINIC HEALTH SYSTEM IN EAU CLAIRE
## 2029      340097                     HUGH CHATHAM MEMORIAL HOSPITAL
## 2030      291309                              BOULDER CITY HOSPITAL
## 2031      670112                       CUMBERLAND SURGICAL HOSPITAL
## 2032      220111                      GOOD SAMARITAN MEDICAL CENTER
## 2033      171377                     SMITH COUNTY MEMORIAL HOSPITAL
## 2034      441303                              THREE RIVERS HOSPITAL
## 2035      330028                 RICHMOND UNIVERSITY MEDICAL CENTER
## 2036      194044                VERMILION BEHAVIORAL HEALTH SYSTEMS
## 2037      260027                            RESEARCH MEDICAL CENTER
## 2038      330096                            JONES MEMORIAL HOSPITAL
## 2039      360089                     MERCY HEALTH - TIFFIN HOSPITAL
## 2040      380029                    LEGACY SILVERTON MEDICAL CENTER
## 2041      250009                    MAGNOLIA REGIONAL HEALTH CENTER
## 2042      140280                                TRINITY ROCK ISLAND
## 2043      281306            KEARNEY COUNTY HEALTH SERVICES HOSPITAL
## 2044      110044                       PHOEBE SUMTER MEDICAL CENTER
## 2045      381322                             CURRY GENERAL HOSPITAL
## 2046      450876                          LUBBOCK HEART HOSPITAL LP
## 2047      151330                            ADAMS MEMORIAL HOSPITAL
## 2048      360059                                 METROHEALTH SYSTEM
## 2049      331301                        CUBA MEMORIAL HOSPITAL, INC
## 2050      250127                              CHOCTAW HEALTH CENTER
## 2051      361312                     MERCY HEALTH - URBANA HOSPITAL
## 2052      150101                          PARKVIEW WHITLEY HOSPITAL
## 2053      141300                    THOMAS H BOYD MEMORIAL HOSPITAL
## 2054      390197                              SACRED HEART HOSPITAL
## 2055      050211                                   ALAMEDA HOSPITAL
## 2056      520103                        COMMUNITY MEMORIAL HOSPITAL
## 2057      430091                  BLACK HILLS SURGICAL HOSPITAL LLP
## 2058      151318                            DUKES MEMORIAL HOSPITAL
## 2059      150024                                    ESKENAZI HEALTH
## 2060      181310                   CARROLL COUNTY MEMORIAL HOSPITAL
## 2061      130071                     ST LUKE'S NAMPA MEDICAL CENTER
## 2062      054093           LOMA LINDA UNIVERSITY BEHAVIORAL MED CTR
## 2063      241330        CENTRACARE HEALTH SYSTEM - MELROSE HOSPITAL
## 2064      330194                          MAIMONIDES MEDICAL CENTER
## 2065      010012                     DEKALB REGIONAL MEDICAL CENTER
## 2066      250082                      DELTA REGIONAL MEDICAL CENTER
## 2067      141302                             MIDWEST MEDICAL CENTER
## 2068      190013                    WEST CALCASIEU CAMERON HOSPITAL
## 2069      490116                         LEWISGALE HOSPITAL PULASKI
## 2070      050523                        SUTTER DELTA MEDICAL CENTER
## 2071      161326                   MADISON COUNTY MEMORIAL HOSPITAL
## 2072      390003                      GEISINGER-BLOOMSBURG HOSPITAL
## 2073      330059                          MONTEFIORE MEDICAL CENTER
## 2074      431335                      HURON REGIONAL MEDICAL CENTER
## 2075      400112                  HOSPITAL UPR, DR  FEDERICO TRILLA
## 2076      064001   COLORADO MENTAL HEALTH INSTITUTE AT PUEBLO-PSYCH
## 2077      420079                             TRIDENT MEDICAL CENTER
## 2078      150104                             WITHAM HEALTH SERVICES
## 2079      140115                           THOREK MEMORIAL HOSPITAL
## 2080      351325                                 ST LUKE'S HOSPITAL
## 2081      521325                                  FLAMBEAU HOSPITAL
## 2082      240075         ESSENTIA HEALTH ST JOSEPH'S MEDICAL CENTER
## 2083      291312                       GROVER C DILS MEDICAL CENTER
## 2084      390115                                        ARIA HEALTH
## 2085      110046                      PIEDMONT WALTON HOSPITAL, INC
## 2086      530032                         EVANSTON REGIONAL HOSPITAL
## 2087      110064                 PIEDMONT COLUMBUS REGIONAL MIDTOWN
## 2088      241303                       SANFORD TRACY MEDICAL CENTER
## 2089      161362                   CHEROKEE REGIONAL MEDICAL CENTER
## 2090      154011                 COMMUNITY MENTAL HEALTH CENTER INC
## 2091      340119                 CAROLINAS HEALTHCARE SYSTEM STANLY
## 2092      041311                           HOWARD MEMORIAL HOSPITAL
## 2093      371328               ARBUCKLE MEMORIAL HOSPITAL AUTHORITY
## 2094      224013                               ARBOUR HOSPITAL, THE
## 2095      260032                             BARNES JEWISH HOSPITAL
## 2096      070036                              JOHN DEMPSEY HOSPITAL
## 2097      140122                        ADVENTIST HINSDALE HOSPITAL
## 2098      171334                   MEDICINE LODGE MEMORIAL HOSPITAL
## 2099      440050                     GREENEVILLE COMMUNITY HOSPITAL
## 2100      500031                    GRAYS HARBOR COMMUNITY HOSPITAL
## 2101      010131                           CRESTWOOD MEDICAL CENTER
## 2102      150128                           COMMUNITY HOSPITAL SOUTH
## 2103      111306                            EFFINGHAM HEALTH SYSTEM
## 2104      060075                   VALLEY VIEW HOSPITAL ASSOCIATION
## 2105      190064       OUR LADY OF THE LAKE REGIONAL MEDICAL CENTER
## 2106      171313                             KEARNY COUNTY HOSPITAL
## 2107      190251           SURGICAL SPECIALTY CENTER OF BATON ROUGE
## 2108      260034                     BATES COUNTY MEMORIAL HOSPITAL
## 2109      014007                                     BRYCE HOSPITAL
## 2110      451326                      CHILLICOTHE HOSPITAL DISTRICT
## 2111      154020                      REGIONAL MENTAL HEALTH CENTER
## 2112      521355              THEDACARE MEDICAL CENTER - BERLIN INC
## 2113      131305                     STEELE MEMORIAL MEDICAL CENTER
## 2114      521317                         ASCENSION CALUMET HOSPITAL
## 2115      151329                               MARGARET MARY HEALTH
## 2116      463301                         PRIMARY CHILDRENS HOSPITAL
## 2117      330188        MOUNT ST MARY'S HOSPITAL AND  HEALTH CENTER
## 2118      050024                           PARADISE VALLEY HOSPITAL
## 2119      351330             WEST RIVER REGIONAL MEDICAL CENTER-CAH
## 2120      281329                        AVERA ST ANTHONY'S HOSPITAL
## 2121      291300                       MOUNT GRANT GENERAL HOSPITAL
## 2122      050782                               CASA COLINA HOSPITAL
## 2123      420109                            MCLEOD HEALTH CLARENDON
## 2124      330181                                 GLEN COVE HOSPITAL
## 2125      430014                                     AVERA ST LUKES
## 2126      454128           OCEANS BEHAVIORAL HOSPITAL OF FORT WORTH
## 2127      190268                LAFAYETTE GENERAL SURGICAL HOSPITAL
## 2128      230089                   BEAUMONT HOSPITAL, GROSSE POINTE
## 2129      141308                        WASHINGTON COUNTY HOSPITAL*
## 2130      530012                             WYOMING MEDICAL CENTER
## 2131      151334                              SCOTT MEMORIAL HEALTH
## 2132      184004                             EASTERN STATE HOSPITAL
## 2133      330259                               MERCY MEDICAL CENTER
## 2134      360075                     UHHS RICHMOND HEIGHTS HOSPITAL
## 2135      520097                      ST MARYS HOSPITAL MEDICAL CTR
## 2136      390045               WILLIAMSPORT REGIONAL MEDICAL CENTER
## 2137      500008               UNIVERSITY OF WASHINGTON MEDICAL CTR
## 2138      084002                                    ROCKFORD CENTER
## 2139      434003                 SOUTH DAKOTA HUMAN SERVICES CENTER
## 2140      524001        MILWAUKEE COUNTY BEHAVIORAL HEALTH DIVISION
## 2141      514009                  MILDRED MITCHELL-BATEMAN HOSPITAL
## 2142      241344                            LIFECARE MEDICAL CENTER
## 2143      160030                        MARY GREELEY MEDICAL CENTER
## 2144      050780                   FOOTHILL REGIONAL MEDICAL CENTER
## 2145      144026                                 HARTGROVE HOSPITAL
## 2146      260017                                      PHELPS HEALTH
## 2147      330232                SAMARITAN HOSPITAL-ST MARY'S CAMPUS
## 2148      280111                        COLUMBUS COMMUNITY HOSPITAL
## 2149      441309                            MARSHALL MEDICAL CENTER
## 2150      330046                                   MOUNT SINAI WEST
## 2151      310047                               SHORE MEDICAL CENTER
## 2152      494010              NORTHERN VIRGINIA MENTAL HEALTH INSTI
## 2153      441310                                RHEA MEDICAL CENTER
## 2154      360017                               GRANT MEDICAL CENTER
## 2155      111328                        PHOEBE WORTH MEDICAL CENTER
## 2156      051320                       BANNER LASSEN MEDICAL CENTER
## 2157      333301                     BLYTHEDALE CHILDREN'S HOSPITAL
## 2158      360121           COMMUNITY HOSPITALS AND WELLNESS CENTERS
## 2159      370023                      DUNCAN REGIONAL HOSPITAL, INC
## 2160      300011                                 ST JOSEPH HOSPITAL
## 2161      310110   ROBERT WOOD JOHNSON UNIVERSITY HOSPITAL HAMILTON
## 2162      340168                        WILMINGTON TREATMENT CENTER
## 2163      500154                 MULTICARE COVINGTON MEDICAL CENTER
## 2164      050568                          MADERA COMMUNITY HOSPITAL
## 2165      451349                          SWISHER MEMORIAL HOSPITAL
## 2166      180040             JEWISH HOSPITAL & ST MARY'S HEALTHCARE
## 2167      261305                    PUTNAM COUNTY MEMORIAL HOSPITAL
## 2168      510013                         REYNOLDS MEMORIAL HOSPITAL
## 2169      194106       COMPASS BEHAVIORAL CENTER OF ALEXANDRIA, INC
## 2170      010035                    CULLMAN REGIONAL MEDICAL CENTER
## 2171      500108                           ST JOSEPH MEDICAL CENTER
## 2172      110177                                   DOCTORS HOSPITAL
## 2173      160069                    MERCYONE DUBUQUE MEDICAL CENTER
## 2174      100154                               SOUTH MIAMI HOSPITAL
## 2175      100276                       BROWARD HEALTH CORAL SPRINGS
## 2176      524038                          BELLIN PSYCHIATRIC CENTER
## 2177      450853                    BAYLOR MEDICAL CENTER AT FRISCO
## 2178      340091                 THE MOSES H CONE MEMORIAL HOSPITAL
## 2179      190151                          RICHARDSON MEDICAL CENTER
## 2180      110031                WELLSTAR SPALDING REGIONAL HOSPITAL
## 2181      230058                MUNSON HEALTHCARE GRAYLING HOSPITAL
## 2182      171353                     PHILLIPS COUNTY HEALTH SYSTEMS
## 2183      101310              SHANDS STARKE REGIONAL MEDICAL CENTER
## 2184      334061                MID HUDSON FORENSIC PSYCHIATRIC CTR
## 2185      224022                                BOURNEWOOD HOSPITAL
## 2186      010102                              J PAUL JONES HOSPITAL
## 2187      161338                    MERCYONE OELWEIN MEDICAL CENTER
## 2188      451331                             COON MEMORIAL HOSPITAL
## 2189      450573                  CHRISTUS JASPER MEMORIAL HOSPITAL
## 2190      450137   BAYLOR SCOTT AND WHITE ALL SAINTS MEDICAL CENTER
## 2191      340064                     WILKES REGIONAL MEDICAL CENTER
## 2192      650001                   GUAM MEMORIAL HOSPITAL AUTHORITY
## 2193      521315                MAYO CLINIC HEALTH SYSTEM-NORTHLAND
## 2194      270074      P H S INDIAN HOSPITAL AT BROWNING - BLACKFEET
## 2195      390052                          PENN HIGHLANDS CLEARFIELD
## 2196      254008                   SOUTH MISSISSIPPI STATE HOSPITAL
## 2197      450668                              SIERRA MEDICAL CENTER
## 2198      230144                       FOREST HEALTH MEDICAL CENTER
## 2199      140048                          ADVOCATE TRINITY HOSPITAL
## 2200      524000                        AURORA PSYCHIATRIC HOSPITAL
## 2201      390016                                       UPMC JAMESON
## 2202      051309                   JEROLD PHELPS COMMUNITY HOSPITAL
## 2203      250136                      MERIT HEALTH WOMEN'S HOSPITAL
## 2204      050336                     ADVENTIST HEALTH LODI MEMORIAL
## 2205      330276                           NATHAN LITTAUER HOSPITAL
## 2206      194079                   RED RIVER BEHAVIORAL CENTER, LLC
## 2207      390192                            TYLER MEMORIAL HOSPITAL
## 2208      490141               SPOTSYLVANIA REGIONAL MEDICAL CENTER
## 2209      140118                          METROSOUTH MEDICAL CENTER
## 2210      194074                SERENITY SPRINGS SPECIALTY HOSPITAL
## 2211      050107                     MARIAN REGIONAL MEDICAL CENTER
## 2212      050557                            MEMORIAL MEDICAL CENTER
## 2213      321300                              SIERRA VISTA HOSPITAL
## 2214      050674               KAISER FOUNDATION HOSP SO SACRAMENTO
## 2215      250069                           RUSH FOUNDATION HOSPITAL
## 2216      430008                            BROOKINGS HEALTH SYSTEM
## 2217      240088                                  CARRIS HEALTH LLC
## 2218      190054                              IBERIA MEDICAL CENTER
## 2219      050777           KAISER FOUNDATION HOSPITAL - SAN LEANDRO
## 2220      140054                                  MACNEAL  HOSPITAL
## 2221      420068                       TRMC OF ORANGEBURG & CALHOUN
## 2222      010036                                   ANDALUSIA HEALTH
## 2223      531313                         STAR VALLEY MEDICAL CENTER
## 2224      070003                               DAY KIMBALL HOSPITAL
## 2225      054130                             PACIFIC GROVE HOSPITAL
## 2226      370153                           ELKVIEW GENERAL HOSPITAL
## 2227      361311                        HARRISON COMMUNITY HOSPITAL
## 2228      341320                 ALLEGHANY COUNTY MEMORIAL HOSPITAL
## 2229      380014             GOOD SAMARITAN REGIONAL MEDICAL CENTER
## 2230      361308       UNIVERSITY HOSPITALS CONNEAUT MEDICAL CENTER
## 2231      271341                                   TRINITY HOSPITAL
## 2232      240069                                  OWATONNA HOSPITAL
## 2233      261337                 MISSOURI BAPTIST SULLIVAN HOSPITAL
## 2234      271302                     DAHL MEMORIAL HEALTHCARE ASSOC
## 2235      061300                  WEISBROD MEMORIAL COUNTY HOSPITAL
## 2236      250012                         ALLIANCE HEALTHCARE SYSTEM
## 2237      521305  MAYO CLINIC HLTH SYSTM FRANCISCAN HLTHCARE SPARTA
## 2238      501317                            COLUMBIA BASIN HOSPITAL
## 2239      201302                                     LINCOLN HEALTH
## 2240      361304                     GREENFIELD AREA MEDICAL CENTER
## 2241      504009                                              NAVOS
## 2242      100047                        BAYFRONT HEALTH PUNTA GORDA
## 2243      110142                            EVANS MEMORIAL HOSPITAL
## 2244      310014                         COOPER UNIVERSITY HOSPITAL
## 2245      420023                                ST FRANCIS-DOWNTOWN
## 2246      271337                    NORTHERN ROCKIES MEDICAL CENTER
## 2247      230024                               SINAI-GRACE HOSPITAL
## 2248      670049                  NORTH CENTRAL SURGICAL CENTER LLP
## 2249      060014               PRESBYTERIAN ST LUKES MEDICAL CENTER
## 2250      314023                      ASPEN HILLS HEALTHCARE CENTER
## 2251      201313                          SEBASTICOOK VALLEY HEALTH
## 2252      220060          BETH ISRAEL DEACONESS HOSPITAL - PLYMOUTH
## 2253      390150                    WASHINGTON HEALTH SYSTEM GREENE
## 2254      390079                             ROBERT PACKER HOSPITAL
## 2255      454117             OCEANS BEHAVIORAL HOSPITAL OF LONGVIEW
## 2256      360153                         BELMONT COMMUNITY HOSPITAL
## 2257      341305                              SWAIN COUNTY HOSPITAL
## 2258      450586                                   SEYMOUR HOSPITAL
## 2259      394051                 PENNSYLVANIA PSYCHIATRIC INSTITUTE
## 2260      450587                  BROWNWOOD REGIONAL MEDICAL CENTER
## 2261      230075                      BRONSON BATTLE CREEK HOSPITAL
## 2262      670082   BAYLOR SCOTT AND WHITE  MEDICAL CENTER  MCKINNEY
## 2263      380004               PROVIDENCE ST VINCENT MEDICAL CENTER
## 2264      100285                          MEMORIAL HOSPITAL MIRAMAR
## 2265      150044                               BAPTIST HEALTH FLOYD
## 2266      453314          TEXAS SCOTTISH RITE HOSPITAL FOR CHILDREN
## 2267      104008 THE JEROME GOLDEN CENTER FOR BEHAVIORAL HEALTH, IN
## 2268      060065                      NORTH SUBURBAN MEDICAL CENTER
## 2269      271323                         CLARK FORK VALLEY HOSPITAL
## 2270      390278                                EAGLEVILLE HOSPITAL
## 2271      251319                 HOLMES COUNTY HOSPITAL AND CLINICS
## 2272      180025                           FLAGET MEMORIAL HOSPITAL
## 2273      440072       WEST TENNESSEE HEALTHCARE DYERSBURG HOSPITAL
## 2274      261320                   LAFAYETTE REGIONAL HEALTH CENTER
## 2275      344030                 STRATEGIC BEHAVIORAL CENTER-LELAND
## 2276      050158                     ENCINO HOSPITAL MEDICAL CENTER
## 2277      460007                                CEDAR CITY HOSPITAL
## 2278      150022                   FRANCISCAN HEALTH CRAWFORDSVILLE
## 2279      111336                      MOUNTAIN LAKES MEDICAL CENTER
## 2280      110025  SOUTHEAST GEORGIA HEALTH SYSTEM- BRUNSWICK CAMPUS
## 2281      061309                   WRAY COMMUNITY DISTRICT HOSPITAL
## 2282      490024                 CARILION ROANOKE MEMORIAL HOSPITAL
## 2283      040039                  ARKANSAS METHODIST MEDICAL CENTER
## 2284      281346                               CHI HEALTH PLAINVIEW
## 2285      240030                                     ALOMERE HEALTH
## 2286      050025  UC SAN DIEGO HEALTH HILLCREST - HILLCREST MED CTR
## 2287      354004                                   PRAIRIE ST JOHNS
## 2288      400015                        SAN JUAN MUNICIPAL HOSPITAL
## 2289      440034              METHODIST MEDICAL CENTER OF OAK RIDGE
## 2290      050100                            SHARP MEMORIAL HOSPITAL
## 2291      210013                               BON SECOURS HOSPITAL
## 2292      281349                          PENDER COMMUNITY HOSPITAL
## 2293      110111                       UNIVERSITY HOSPITAL MCDUFFIE
## 2294      450154                  VAL VERDE REGIONAL MEDICAL CENTER
## 2295      501320                             QUINCY VALLEY HOSPITAL
## 2296      501338                         SNOQUALMIE VALLEY HOSPITAL
## 2297      450097                   HCA HOUSTON HEALTHCARE SOUTHEAST
## 2298      400032                     HOSPITAL HERMANOS MELENDEZ INC
## 2299      260009                    BOTHWELL REGIONAL HEALTH CENTER
## 2300      371325                          CORDELL MEMORIAL HOSPITAL
## 2301      441305                           MACON COMMUNITY HOSPITAL
## 2302      141305                                  MEMORIAL HOSPITAL
## 2303      531307                                 COMMUNITY HOSPITAL
## 2304      450219        BAYLOR SCOTT & WHITE MEDICAL CENTER - LLANO
## 2305      454126          DALLAS BEHAVIORAL HEALTHCARE HOSPITAL LLC
## 2306      433300                                          LIFESCAPE
## 2307      364055                                  SOJOURN AT SENECA
## 2308      370178                                  MEMORIAL HOSPITAL
## 2309      140067                       SAINT FRANCIS MEDICAL CENTER
## 2310      050254                            MARSHALL MEDICAL CENTER
## 2311      251314                        QUITMAN COUNTY HOSPITAL CAH
## 2312      450092                         FORT DUNCAN MEDICAL CENTER
## 2313      461307                              HEBER VALLEY HOSPITAL
## 2314      670041                    SETON MEDICAL CENTER WILLIAMSON
## 2315      050738                GREATER EL MONTE COMMUNITY HOSPITAL
## 2316      431308             EUREKA COMMUNITY HEALTH SERVICES - CAH
## 2317      260179                                  ST LUKES HOSPITAL
## 2318      194107                    BATON ROUGE BEHAVIORAL HOSPITAL
## 2319      111300          SOUTHWEST GEORGIA REGIONAL MEDICAL CENTER
## 2320      031307                        PARKER INDIAN HEALTH CENTER
## 2321      271314                          DEER LODGE MEDICAL CENTER
## 2322      140119                     RUSH UNIVERSITY MEDICAL CENTER
## 2323      010112               BRYAN W. WHITFIELD MEMORIAL HOSPITAL
## 2324      051303                                   MAMMOTH HOSPITAL
## 2325      330226                        UNITY HOSPITAL OF ROCHESTER
## 2326      451365                               SETON HIGHLAND LAKES
## 2327      050776                             COLLEGE MEDICAL CENTER
## 2328      140010   NORTHSHORE UNIVERSITY HEALTHSYSTEM EVANSTON HOSP
## 2329      340148                NOVANT HEALTH MEDICAL PARK HOSPITAL
## 2330      191321                         LALLIE KEMP MEDICAL CENTER
## 2331      281311                  FRANKLIN COUNTY MEMORIAL HOSPITAL
## 2332      334003                           ST LAWRENCE PSYCH CENTER
## 2333      143300 ANN & ROBERT H LURIE CHILDRENS HOSPITAL OF CHICAGO
## 2334      391314                                TITUSVILLE HOSPITAL
## 2335      451319     CHRISTUS MOTHER FRANCES HOSPITAL- JACKSONVILLE
## 2336      031304                                      PAGE HOSPITAL
## 2337      364045              SEQUEL POMEGRANATE HEALTH SYSTEMS LLC
## 2338      490089                CARILION FRANKLIN MEMORIAL HOSPITAL
## 2339      240206                                RED LAKE HOSPITAL A
## 2340      161351                         AVERA HOLY FAMILY HOSPITAL
## 2341      151303                   ST VINCENT JENNINGS HOSPITAL INC
## 2342      161305                      POCAHONTAS COMMUNITY HOSPITAL
## 2343      431327                        ST MICHAEL'S HOSPITAL - CAH
## 2344      240047                                  ST LUKES HOSPITAL
## 2345      244011     COMMUNITY BEHAVIORAL HEALTH HOSPITAL ANNANDALE
## 2346      371304                          MERCY HOSPITAL TISHOMINGO
## 2347      230020                       BEAUMONT HOSPITAL - DEARBORN
## 2348      190040                          SLIDELL MEMORIAL HOSPITAL
## 2349      360365                                      AVITA ONTARIO
## 2350      040027                     BAXTER REGIONAL MEDICAL CENTER
## 2351      490021                                CENTRA  HEALTH, INC
## 2352      400018                     MENNONITE GENERAL HOSPITAL INC
## 2353      281301                           FILLMORE COUNTY HOSPITAL
## 2354      050002                                   ST ROSE HOSPITAL
## 2355      214013  ADVENTIST HEALTHCARE BEHAVIORAL HEALTH & WELLNESS
## 2356      390330                 ST LUKE'S HOSPITAL - MONROE CAMPUS
## 2357      010168                    JACK HUGHSTON MEMORIAL HOSPITAL
## 2358      050042                    ST ELIZABETH COMMUNITY HOSPITAL
## 2359      040118                      NEA BAPTIST MEMORIAL HOSPITAL
## 2360      244017     COMMUNITY BEHAVIORAL HEALTH HOSPITAL ROCHESTER
## 2361      360086 MERCY HEALTH - SPRINGFIELD REGIONAL MEDICAL CENTER
## 2362      140239                MERCYHEALTH HOSPITAL ROCKTON AVENUE
## 2363      501323                               JEFFERSON HEALTHCARE
## 2364      340041                         CALDWELL MEMORIAL HOSPITAL
## 2365      171341                        HIAWATHA COMMUNITY HOSPITAL
## 2366      144029                           PAVILION FOUNDATION, THE
## 2367      361319                             SELBY GENERAL HOSPITAL
## 2368      170103                              NEWTON MEDICAL CENTER
## 2369      234041                 THE CENTER FOR FORENSIC PSYCHIATRY
## 2370      041300                         NORTH LOGAN MERCY HOSPITAL
## 2371      360068                                TOLEDO HOSPITAL THE
## 2372      050313                    SUTTER TRACY COMMUNITY HOSPITAL
## 2373      161359                              BURGESS HEALTH CENTER
## 2374      314022               ST BARNABAS BEHAVIORAL HEALTH CENTER
## 2375      210027           WESTERN MARYLAND REGIONAL MEDICAL CENTER
## 2376      161308                          FRANKLIN GENERAL HOSPITAL
## 2377      231327                HAYES GREEN BEACH MEMORIAL HOSPITAL
## 2378      241348                               AVERA TYLER HOSPITAL
## 2379      451325                             CONCHO COUNTY HOSPITAL
## 2380      140223                 ADVOCATE LUTHERAN GENERAL HOSPITAL
## 2381      231310                                  SCHEURER HOSPITAL
## 2382      241364                        COMMUNITY MEMORIAL HOSPITAL
## 2383      014014                        BAYPOINTE BEHAVIORAL HEALTH
## 2384      523300                    CHILDRENS HOSPITAL OF WISCONSIN
## 2385      240040   UNIVERSITY MEDICAL CENTER-MESABI/ MESABA CLINICS
## 2386      450584                         WILBARGER GENERAL HOSPITAL
## 2387      170123                              WESLEY MEDICAL CENTER
## 2388      521326                THEDACARE MEDICAL CENTER NEW LONDON
## 2389      050228 ZUCKERBERG SAN FRANCISCO GENERAL HOSP & TRAUMA CTR
## 2390      114004     SUMMITRIDGE CENTER- PSYCHIATRY & ADDICTIVE MED
## 2391      020001                   PROVIDENCE ALASKA MEDICAL CENTER
## 2392      281319                  JEFFERSON COMMUNITY HEALTH & LIFE
## 2393      031301                                    BENSON HOSPITAL
## 2394      341324                      THE OUTER BANKS HOSPITAL, INC
## 2395      123300      KAPIOLANI MEDICAL CENTER FOR WOMEN & CHILDREN
## 2396      423300                    SHRINERS HOSPITALS FOR CHILDREN
## 2397      430084                     PHS INDIAN HOSPITAL AT ROSEBUD
## 2398      290053 SAINT ROSE DOMINICAN HOSPITALS - SAN MARTIN CAMPUS
## 2399      330160                  STATEN ISLAND UNIVERSITY HOSPITAL
## 2400      520205              MIDWEST ORTHOPEDIC SPECIALTY HOSPITAL
## 2401      330285                           STRONG MEMORIAL HOSPITAL
## 2402      514008                                RIVER PARK HOSPITAL
## 2403      450488           ALLEGIANCE SPECIALTY HOSPITAL OF KILGORE
## 2404      050411             KAISER FOUNDATION HOSPITAL - SOUTH BAY
## 2405      131314                            SHOSHONE MEDICAL CENTER
## 2406      010158                              RUSSELLVILLE HOSPITAL
## 2407      140114                          SWEDISH COVENANT HOSPITAL
## 2408      230146                      HENRY FORD WYANDOTTE HOSPITAL
## 2409      190079                         ST CHARLES PARISH HOSPITAL
## 2410      453312                    SHRINERS HOSPITALS FOR CHILDREN
## 2411      460013                             MOUNTAIN VIEW HOSPITAL
## 2412      500148 CONFLUENCE HEALTH- WENATCHEE VALLEY HOSP & CLINICS
## 2413      310028                              NEWTON MEDICAL CENTER
## 2414      171325                             GRAHAM COUNTY HOSPITAL
## 2415      361316                         BUCYRUS COMMUNITY HOSPITAL
## 2416      251323                        SCOTT REGIONAL HOSPITAL CAH
## 2417      241377                          ST FRANCIS MEDICAL CENTER
## 2418      431320             REGIONAL HEALTH LEAD-DEADWOOD HOSPITAL
## 2419      334048                                 GRACIE SQUARE HOSP
## 2420      490113           SENTARA NORTHERN VIRGINIA MEDICAL CENTER
## 2421      230066                              MERCY HEALTH MUSKEGON
## 2422      330277                                   CORNING HOSPITAL
## 2423      440193                         TENNOVA HEALTHCARE-LEBANON
## 2424      241379         PRAIRIE RIDGE HOSPITAL AND HEALTH SERVICES
## 2425      330167                              NYU WINTHROP HOSPITAL
## 2426      154053                             MERIDIAN SERVICES CORP
## 2427      370016                INTEGRIS BASS BAPTIST HEALTH CENTER
## 2428      114013             WEST CENTRAL GEORGIA REGIONAL HOSPITAL
## 2429      241346             MAYO CLINIC HEALTH SYSTEM-CANNON FALLS
## 2430      360351                  CRYSTAL CLINIC ORTHOPAEDIC CENTER
## 2431      400006                  DOCTORS' CENTER HOSPITAL SAN JUAN
## 2432      154063     NEUROPSYCHIATRIC HOSPITAL OF INDIANAPOLIS, LLC
## 2433      451334                                  PARKVIEW HOSPITAL
## 2434      010059                            LAWRENCE MEDICAL CENTER
## 2435      340017                MARGARET R PARDEE MEMORIAL HOSPITAL
## 2436      450021                   BAYLOR UNIVERSITY MEDICAL CENTER
## 2437      131312                                   ST LUKE'S MCCALL
## 2438      194025                   CENTRAL LOUISIANA STATE HOSPITAL
## 2439      340166                      ATRIUM HEALTH UNIVERSITY CITY
## 2440      034021                             ARIZONA STATE HOSPITAL
## 2441      340155                             DUKE REGIONAL HOSPITAL
## 2442      400061                   HOSPITAL UNIVERSITARIO DE ADULTO
## 2443      520076                      BEAVER DAM COMMUNITY HOSPITAL
## 2444      074014                           SILVER HILL HOSPITAL INC
## 2445      450143                 SETON SMITHVILLE REGIONAL HOSPITAL
## 2446      230244                               GARDEN CITY HOSPITAL
## 2447      451392                          HAMILTON GENERAL HOSPITAL
## 2448      450133                          MIDLAND MEMORIAL HOSPITAL
## 2449      104024                               CIRCLES OF CARE, INC
## 2450      110087                            GWINNETT MEDICAL CENTER
## 2451      010047                           GEORGIANA MEDICAL CENTER
## 2452      140088           THE UNIVERSITY OF CHICAGO MEDICAL CENTER
## 2453      361321              BARNESVILLE HOSPITAL ASSOCIATION, INC
## 2454      180095                           CRITTENDEN HEALTH SYSTEM
## 2455      140200                         ELMHURST MEMORIAL HOSPITAL
## 2456      451381        CHRISTUS MOTHER FRANCES HOSPITAL- WINNSBORO
## 2457      370234                 OKLAHOMA HEART HOSPITAL SOUTH, LLC
## 2458      161335                      BUCHANAN COUNTY HEALTH CENTER
## 2459      450046             CHRISTUS SPOHN HOSPITAL CORPUS CHRISTI
## 2460      390036                             HERITAGE VALLEY BEAVER
## 2461      070010                                BRIDGEPORT HOSPITAL
## 2462      450747                  PALESTINE REGIONAL MEDICAL CENTER
## 2463      251322                                 LAIRD HOSPITAL INC
## 2464      340003                  NORTHERN HOSPITAL OF SURRY COUNTY
## 2465      271324                             PONDERA MEDICAL CENTER
## 2466      241342                    ORTONVILLE AREA HEALTH SERVICES
## 2467      160083                 MERCYONE DES MOINES MEDICAL CENTER
## 2468      234030                   FOREST VIEW PSYCHIATRIC HOSPITAL
## 2469      130006                  ST LUKE'S REGIONAL MEDICAL CENTER
## 2470      040050                     OUACHITA COUNTY MEDICAL CENTER
## 2471      430016 AVERA MCKENNAN HOSPITAL & UNIVERSITY HEALTH CENTER
## 2472      364048                HAVEN BEHAVIORAL HOSPITAL OF DAYTON
## 2473      370173                          CLAREMORE INDIAN HOSPITAL
## 2474      030136          DIGNITY HEALTH - ARIZONA GENERAL HOSPITAL
## 2475      210004                                HOLY CROSS HOSPITAL
## 2476      140113                   OSF HEART OF MARY MEDICAL CENTER
## 2477      150021                   PARKVIEW REGIONAL MEDICAL CENTER
## 2478      050121                           ADVENTIST HEALTH HANFORD
## 2479      011304                           CHOCTAW GENERAL HOSPITAL
## 2480      420027                                       ANMED HEALTH
## 2481      140063                             RUSH OAK PARK HOSPITAL
## 2482      181301                 MARCUM & WALLACE MEMORIAL HOSPITAL
## 2483      670073                     METHODIST HOSPITAL FOR SURGERY
## 2484      420091                MUSC HEALTH FLORENCE MEDICAL CENTER
## 2485      121308                                      KULA HOSPITAL
## 2486      070006                                  STAMFORD HOSPITAL
## 2487      344016                                    BRYNN MARR HOSP
## 2488      050423                                PALO VERDE HOSPITAL
## 2489      184009                 THE RIDGE BEHAVIORAL HEALTH SYSTEM
## 2490      500019                      PROVIDENCE CENTRALIA HOSPITAL
## 2491      380075                  PROVIDENCE MEDFORD MEDICAL CENTER
## 2492      041309                         LAWRENCE MEMORIAL HOSPITAL
## 2493      314026                             EAST MOUNTAIN HOSPITAL
## 2494      394026                            TORRANCE STATE HOSPITAL
## 2495      050278               PROVIDENCE HOLY CROSS MEDICAL CENTER
## 2496      281305                            KIMBALL HEALTH SERVICES
## 2497      050548                      FAIRVIEW DEVELOPMENTAL CENTER
## 2498      040119                         WHITE RIVER MEDICAL CENTER
## 2499      344007                        OLD VINEYARD YOUTH SERVICES
## 2500      140065              ADVENTIST LA GRANGE MEMORIAL HOSPITAL
## 2501      061322       HEART OF THE ROCKIES REGIONAL MEDICAL CENTER
## 2502      521327                           WAUPUN MEMORIAL HOSPITAL
## 2503      310031                      DEBORAH HEART AND LUNG CENTER
## 2504      310029                 OUR LADY OF LOURDES MEDICAL CENTER
## 2505      520098    UNIVERSITY OF WI  HOSPITALS & CLINICS AUTHORITY
## 2506      451328                            RICELAND MEDICAL CENTER
## 2507      330279                          MERCY HOSPITAL OF BUFFALO
## 2508      490044                             SENTARA OBICI HOSPITAL
## 2509      340133                            MARTIN GENERAL HOSPITAL
## 2510      050205                        GLENDORA COMMUNITY HOSPITAL
## 2511      670060    BAYLOR SCOTT AND WHITE MEDICAL CENTER SUNNYVALE
## 2512      520100                           BELOIT MEMORIAL HOSPITAL
## 2513      283301               CHILDREN'S HOSPITAL & MEDICAL CENTER
## 2514      450187                     SCOTT & WHITE HOSPITAL BRENHAM
## 2515      050152                    SAINT FRANCIS MEMORIAL HOSPITAL
## 2516      450044                UT SOUTHWESTERN UNIVERSITY HOSPITAL
## 2517      190065                 BATON ROUGE GENERAL MEDICAL CENTER
## 2518      241321              ESSENTIA HEALTH HOLY TRINITY HOSPITAL
## 2519      390162                                    EASTON HOSPITAL
## 2520      054111                              CANYON RIDGE HOSPITAL
## 2521      670031                  ST LUKE'S PATIENTS MEDICAL CENTER
## 2522      080006                        NANTICOKE MEMORIAL HOSPITAL
## 2523      210057    ADVENTIST HEALTHCARE SHADY GROVE MEDICAL CENTER
## 2524      194031                                RIVER OAKS HOSPITAL
## 2525      450082                   CHRISTUS SPOHN HOSPITAL BEEVILLE
## 2526      210061                          ATLANTIC GENERAL HOSPITAL
## 2527      150097                                     MAJOR HOSPITAL
## 2528      500002                  PROVIDENCE ST MARY MEDICAL CENTER
## 2529      400014                               BELLA VISTA HOSPITAL
## 2530      120022                         STRAUB CLINIC AND HOSPITAL
## 2531      261325                         COX BARTON COUNTY HOSPITAL
## 2532      370225                         SUMMIT MEDICAL CENTER, LLC
## 2533      271332                            GLENDIVE MEDICAL CENTER
## 2534      240187                                  HUTCHINSON HEALTH
## 2535      380020                 MCKENZIE-WILLAMETTE MEDICAL CENTER
## 2536      051331                 SANTA YNEZ VALLEY COTTAGE HOSPITAL
## 2537      230108                           UP HEALTH SYSTEM PORTAGE
## 2538      104081                                  BLACKBERRY CENTER
## 2539      334053                           BRONX PSYCHIATRIC CENTER
## 2540      334022                                        BRYLIN HOSP
## 2541      190025                               SAVOY MEDICAL CENTER
## 2542      271343                PROVIDENCE ST JOSEPH MEDICAL CENTER
## 2543      173300                   CHILDREN'S MERCY HOSPITAL KANSAS
## 2544      521344       GUNDERSEN BOSCOBEL AREA HOSPITAL AND CLINICS
## 2545      330246                                ST CHARLES HOSPITAL
## 2546      400079                   HOSP COMUNITARIO BUEN SAMARITANO
## 2547      383300            SHRINERS HOSPITAL FOR CHILDREN-PORTLAND
## 2548      050549               LOS ROBLES HOSPITAL & MEDICAL CENTER
## 2549      420098              TIDELANDS WACCAMAW COMMUNITY HOSPITAL
## 2550      354003                        NORTH DAKOTA STATE HOSPITAL
## 2551      031314               COBRE VALLEY REGIONAL MEDICAL CENTER
## 2552      284009                       DOUGLAS COUNTY HEALTH CENTER
## 2553      060071                     DELTA COUNTY MEMORIAL HOSPITAL
## 2554      231309                    ASPIRUS ONTONAGON HOSPITAL, INC
## 2555      140186                           RIVERSIDE MEDICAL CENTER
## 2556      371331                        DRUMRIGHT REGIONAL HOSPITAL
## 2557      424002              LIGHTHOUSE BEHAVIORAL HEALTH HOSPITAL
## 2558      134009                                  LIFEWAYS HOSPITAL
## 2559      050769                          HOAG ORTHOPEDIC INSTITUTE
## 2560      260065                         MERCY HOSPITAL SPRINGFIELD
## 2561      271334                             LIBERTY MEDICAL CENTER
## 2562      240036                                  ST CLOUD HOSPITAL
## 2563      521303           THEDACARE MEDICAL CENTER - WILD ROSE INC
## 2564      290019               CARSON TAHOE REGIONAL MEDICAL CENTER
## 2565      500152                                   SWEDISH ISSAQUAH
## 2566      281347                            OSMOND GENERAL HOSPITAL
## 2567      520062                       OCONOMOWOC MEMORIAL HOSPITAL
## 2568      070019                              MILFORD HOSPITAL, INC
## 2569      161311                       HAWARDEN REGIONAL HEALTHCARE
## 2570      260025                         HANNIBAL REGIONAL HOSPITAL
## 2571      450851 BAYLOR SCOTT AND WHITE HEART AND VASCULAR HOSPITAL
## 2572      521346             THEDACARE MEDICAL CENTER - SHAWANO INC
## 2573      444001                    MEMPHIS MENTAL HEALTH INSTITUTE
## 2574      100001                             UF HEALTH JACKSONVILLE
## 2575      310025          CAREPOINT HEALTH - BAYONNE MEDICAL CENTER
## 2576      360236                   MERCY HEALTH - CLERMONT HOSPITAL
## 2577      420080                HILTON HEAD REGIONAL MEDICAL CENTER
## 2578      040154               BAPTIST HEALTH MEDICAL CENTER-CONWAY
## 2579      260062                         SAINT LUKES NORTH HOSPITAL
## 2580      060126                 BANNER FORT COLLINS MEDICAL CENTER
## 2581      100265                         MEASE COUNTRYSIDE HOSPITAL
## 2582      021307                   CORDOVA COMMUNITY MEDICAL CENTER
## 2583      393309     SHRINERS HOSPITALS FOR CHILDREN - PHILADELPHIA
## 2584      520107                               HOLY FAMILY MEMORIAL
## 2585      464012                                      MARIAN CENTER
## 2586      180079                         HARRISON MEMORIAL HOSPITAL
## 2587      400132 DOCTOR CENTER HOSPITAL SAN FERNANDO DE LA CAROLINA
## 2588      230071               STRAITH HOSPITAL FOR SPECIAL SURGERY
## 2589      010120                             MONROE COUNTY HOSPITAL
## 2590      180124                TRISTAR GREENVIEW REGIONAL HOSPITAL
## 2591      260210                                ST ALEXIUS HOSPITAL
## 2592      440175 SOUTHERN TENNESSEE REGIONAL HEALTH SYSTEM LAWRENCE
## 2593      360134                            GOOD SAMARITAN HOSPITAL
## 2594      061323                             PROWERS MEDICAL CENTER
## 2595      010173                               ST VINCENT'S CHILTON
## 2596      150184                   ST VINCENT NEIGHBORHOOD HOSPITAL
## 2597      190184                            CITIZENS MEDICAL CENTER
## 2598      490130                     RIVERSIDE WALTER REED HOSPITAL
## 2599      030022                            MARICOPA MEDICAL CENTER
## 2600      241304                     SANFORD MEDICAL CENTER WHEATON
## 2601      010144                       SPRINGHILL MEMORIAL HOSPITAL
## 2602      390226                              PENNSYLVANIA HOSPITAL
## 2603      161325                       GREENE COUNTY MEDICAL CENTER
## 2604      361334                          ADENA PIKE MEDICAL CENTER
## 2605      450163                    CHRISTUS SPOHN HOSPITAL KLEBERG
## 2606      014013               LAUREL OAKS BEHAVIORAL HEALTH CENTER
## 2607      054124                                       SEMPERVIRENS
## 2608      010101                    CITIZENS BAPTIST MEDICAL CENTER
## 2609      364056                    ASSURANCE HEALTH CINCINNATI LLC
## 2610      030085                           NORTHWEST MEDICAL CENTER
## 2611      111327                              BACON COUNTY HOSPITAL
## 2612      340126                              WILSON MEDICAL CENTER
## 2613      531302               MEMORIAL HOSPITAL OF CONVERSE COUNTY
## 2614      200021                                 MID COAST HOSPITAL
## 2615      380022                  SAMARITAN ALBANY GENERAL HOSPITAL
## 2616      400113                             HOSPITAL SAN CRISTOBAL
## 2617      510091                       CHARLESTON SURGICAL HOSPITAL
## 2618      270004                           BILLINGS CLINIC HOSPITAL
## 2619      140162                           ST JOSEPH MEDICAL CENTER
## 2620      240052                 LAKE REGION HEALTHCARE CORPORATION
## 2621      670071   TEXAS HEALTH HEART & VASCULAR HOSPITAL ARLINGTON
## 2622      140116             NORTHWESTERN MEDICINE MCHENRY HOSPITAL
## 2623      100177                            CAPE CANAVERAL HOSPITAL
## 2624      121306                  SAMUEL MAHELONA MEMORIAL HOSPITAL
## 2625      524008                    MENDOTA MENTAL HEALTH INSTITUTE
## 2626      450419        TEXAS HEALTH HARRIS METHODIST HOSPITAL AZLE
## 2627      151314                      ST VINCENT SALEM HOSPITAL INC
## 2628      250104                      ANDERSON REGIONAL MEDICAL CTR
## 2629      521354                            SOUTHWEST HEALTH CENTER
## 2630      440133                      SAINT THOMAS MIDTOWN HOSPITAL
## 2631      453308                                OUR CHILDRENS HOUSE
## 2632      364054             GENERATIONS BEHAVIORAL HEALTH - GENEVA
## 2633      330085               AURELIA OSBORN FOX MEMORIAL HOSPITAL
## 2634      440151                   SAINT THOMAS RIVER PARK HOSPITAL
## 2635      460001                               UTAH VALLEY HOSPITAL
## 2636      171346                             ANTHONY MEDICAL CENTER
## 2637      100053                                   HIALEAH HOSPITAL
## 2638      490022                      MARY WASHINGTON HOSPITAL, INC
## 2639      330102                             KENMORE MERCY HOSPITAL
## 2640      050758                  MONTCLAIR HOSPITAL MEDICAL CENTER
## 2641      440187                       LIVINGSTON REGIONAL HOSPITAL
## 2642      370112 SEQUOYAH COUNTY-CITY OF SALLISAW HOSPITAL AUTHORIT
## 2643      330191                               GLENS FALLS HOSPITAL
## 2644      521333                      BLACK RIVER MEMORIAL HOSPITAL
## 2645      060011                       DENVER HEALTH MEDICAL CENTER
## 2646      120014                           WILCOX MEMORIAL HOSPITAL
## 2647      070005                                 WATERBURY HOSPITAL
## 2648      451339              THROCKMORTON COUNTY MEMORIAL HOSPITAL
## 2649      390304                       ROXBOROUGH MEMORIAL HOSPITAL
## 2650      310060                          ST LUKE'S WARREN HOSPITAL
## 2651      131328                            BONNER GENERAL HOSPITAL
## 2652      440017                      HOLSTON VALLEY MEDICAL CENTER
## 2653      041306                   IZARD COUNTY MEDICAL CENTER, LLC
## 2654      190164                             BYRD REGIONAL HOSPITAL
## 2655      194083               CYPRESS GROVE BEHAVIORAL HEALTH, LLC
## 2656      050197                                   SEQUOIA HOSPITAL
## 2657      450654                     STARR COUNTY MEMORIAL HOSPITAL
## 2658      340173                                            WAKEMED
## 2659      230302                HENRY FORD WEST BLOOMFIELD HOSPITAL
## 2660      060117                      ANIMAS SURGICAL HOSPITAL, LLC
## 2661      334021                   MOHAWK VALLEY PSYCHIATRIC CENTER
## 2662      111323                    OPTIM MEDICAL CENTER - TATTNALL
## 2663      050573                          EISENHOWER MEDICAL CENTER
## 2664      440102                             LINCOLN MEDICAL CENTER
## 2665      050090                             SONOMA VALLEY HOSPITAL
## 2666      471301                             GIFFORD MEDICAL CENTER
## 2667      161329              JACKSON COUNTY REGIONAL HEALTH CENTER
## 2668      281343                        WEST HOLT MEMORIAL HOSPITAL
## 2669      150035                           PORTER REGIONAL HOSPITAL
## 2670      230078                       LAKELAND HOSPITAL WATERVLIET
## 2671      110024                                   CANDLER HOSPITAL
## 2672      240020                           CAMBRIDGE MEDICAL CENTER
## 2673      393302             UPMC CHILDREN'S HOSPITAL OF PITTSBURGH
## 2674      190204         OCHSNER MEDICAL CENTER - NORTHSHORE, L L C
## 2675      223302                         BOSTON CHILDREN'S HOSPITAL
## 2676      521310                    HSHS ST CLARE MEMORIAL HOSPITAL
## 2677      140101               MORRIS HOSPITAL & HEALTHCARE CENTERS
## 2678      394007                                   KIRKBRIDE CENTER
## 2679      161343                            REGIONAL MEDICAL CENTER
## 2680      030123            SCOTTSDALE THOMPSON PEAK MEDICAL CENTER
## 2681      224001                             TAUNTON STATE HOSPITAL
## 2682      390133                             LEHIGH VALLEY HOSPITAL
## 2683      524017                          NORTH CENTRAL HEALTH CARE
## 2684      241349                     CENTRA CARE HEALTH PAYNESVILLE
## 2685      330126                     ORANGE REGIONAL MEDICAL CENTER
## 2686      460026                             SEVIER VALLEY HOSPITAL
## 2687      330078                        SISTERS OF CHARITY HOSPITAL
## 2688      100122                      NORTH OKALOOSA MEDICAL CENTER
## 2689      454110       OCEANS BEHAVIORAL  HOSPITAL OF PERMIAN BASIN
## 2690      154018                            RICHMOND STATE HOSPITAL
## 2691      050126                       VALLEY PRESBYTERIAN HOSPITAL
## 2692      450656                         NACOGDOCHES MEDICAL CENTER
## 2693      241351                       CARRIS HEALTH - REDWOOD, LLC
## 2694      100258                              DELRAY MEDICAL CENTER
## 2695      521338                        COLUMBUS COMMUNITY HOSPITAL
## 2696      150047                                 ST JOSEPH HOSPITAL
## 2697      250102                 MISSISSIPPI BAPTIST MEDICAL CENTER
## 2698      374006         CARL ALBERT COMMUNITY MENTAL HEALTH CENTER
## 2699      171372                              SCOTT COUNTY HOSPITAL
## 2700      450651                                 MEDICAL CITY PLANO
## 2701      460003                  SALT LAKE REGIONAL MEDICAL CENTER
## 2702      161342                             MONROE COUNTY HOSPITAL
## 2703      054069                                 AURORA CHARTER OAK
## 2704      520066                           MERCY HEALTH SYSTEM CORP
## 2705      140052                  OSF SAINT ANTHONY'S HEALTH CENTER
## 2706      051334                     OJAI VALLEY COMMUNITY HOSPITAL
## 2707      080001              CHRISTIANA CARE HEALTH SERVICES, INC.
## 2708      154064              ASSURANCE HEALTH PSYCHIATRIC HOSPITAL
## 2709      110043                    ST JOSEPH'S HOSPITAL - SAVANNAH
## 2710      670085    TEXAS HEALTH HARRIS METHODIST HOSPITAL ALLIANCE
## 2711      161324                  GEORGE C GRAPE COMMUNITY HOSPITAL
## 2712      191303                      ASSUMPTION COMMUNITY HOSPITAL
## 2713      111324                          CHATUGE REGIONAL HOSPITAL
## 2714      501309                      PROVIDENCE ST JOSEPH HOSPITAL
## 2715      050586                        CHINO VALLEY MEDICAL CENTER
## 2716      240213                      HEALTHEAST WOODWINDS HOSPITAL
## 2717      041330                         PIGGOTT COMMUNITY HOSPITAL
## 2718      040147                         ARKANSAS SURGICAL HOSPITAL
## 2719      050150                    SIERRA NEVADA MEMORIAL HOSPITAL
## 2720      141318                     OSF HOLY FAMILY MEDICAL CENTER
## 2721      360070                               MERCY MEDICAL CENTER
## 2722      440015              UNIVERSITY OF TN MEDICAL CENTER (THE)
## 2723      330125                         ROCHESTER GENERAL HOSPITAL
## 2724      140133                                HOLY CROSS HOSPITAL
## 2725      194091             OCEANS BEHAVIORAL HOSPITAL OF KENTWOOD
## 2726      460030                     ASHLEY REGIONAL MEDICAL CENTER
## 2727      171344                              WILSON MEDICAL CENTER
## 2728      250100      BAPTIST MEMORIAL HOSPITAL GOLDEN TRIANGLE INC
## 2729      450078                             ANSON GENERAL HOSPITAL
## 2730      271328                              MARIAS MEDICAL CENTER
## 2731      111314              LIFEBRITE COMMUNITY HOSPITAL OF EARLY
## 2732      371338                           HARMON MEMORIAL HOSPITAL
## 2733      140252                     NORTHWEST COMMUNITY HOSPITAL 1
## 2734      191319                                   ACADIA ST LANDRY
## 2735      220074                     SOUTHCOAST HOSPITAL GROUP, INC
## 2736      180048           EPHRAIM MCDOWELL REGIONAL MEDICAL CENTER
## 2737      050517                VICTOR VALLEY GLOBAL MEDICAL CENTER
## 2738      050070   KAISER FOUNDATION HOSPITAL - SOUTH SAN FRANCISCO
## 2739      281365            JENNIE M MELHAM MEMORIAL MEDICAL CENTER
## 2740      051302                             SOUTHERN INYO HOSPITAL
## 2741      141315                          ILLINI COMMUNITY HOSPITAL
## 2742      491304                CARILION STONEWALL JACKSON HOSPITAL
## 2743      021305                 SEARHC WRANGELL MEDICAL CENTER-CAH
## 2744      141312                        ROCHELLE COMMUNITY HOSPITAL
## 2745      390236                  GUTHRIE TOWANDA MEMORIAL HOSPITAL
## 2746      100086                               BROWARD HEALTH NORTH
## 2747      050668      LAGUNA HONDA HOSPITAL & REHABILITATION CENTER
## 2748      043301                 ARKANSAS CHILDREN'S NORTHWEST, INC
## 2749      030023                           FLAGSTAFF MEDICAL CENTER
## 2750      050771                               COAST PLAZA HOSPITAL
## 2751      110091                         PIEDMONT ROCKDALE HOSPITAL
## 2752      020008                         BARTLETT REGIONAL HOSPITAL
## 2753      264012                              CENTERPOINTE HOSPITAL
## 2754      231307                    BARAGA COUNTY MEMORIAL HOSPITAL
## 2755      450104                  GUADALUPE REGIONAL MEDICAL CENTER
## 2756      181318                     THE MEDICAL CENTER AT FRANKLIN
## 2757      160089                     OTTUMWA REGIONAL HEALTH CENTER
## 2758      440084                    SWEETWATER HOSPITAL ASSOCIATION
## 2759      670087 BAYLOR SCOTT & WHITE EMERGENCY MEDICAL CENTER AT C
## 2760      410004                      ROGER WILLIAMS MEDICAL CENTER
## 2761      140084                          VISTA MEDICAL CENTER EAST
## 2762      050426                        WEST ANAHEIM MEDICAL CENTER
## 2763      103303              SHRINERS HOSPITALS FOR CHILDREN-TAMPA
## 2764      161379                        MAHASKA  HEALTH PARTNERSHIP
## 2765      180105                       MONROE COUNTY MEDICAL CENTER
## 2766      230081                MUNSON HEALTHCARE CADILLAC HOSPITAL
## 2767      521313                    ASCENSION SACRED HEART HOSPITAL
## 2768      330396            WOODHULL MEDICAL & MENTAL HEALTH CENTER
## 2769      171382                                  ATCHISON HOSPITAL
## 2770      050763                         SILVER LAKE MEDICAL CENTER
## 2771      191300                          ST HELENA PARISH HOSPITAL
## 2772      061336            ARKANSAS VALLEY REGIONAL MEDICAL CENTER
## 2773      391302                CONEMAUGH MEYERSDALE MEDICAL CENTER
## 2774      310038            ROBERT WOOD JOHNSON UNIVERSITY HOSPITAL
## 2775      194080       BEACON BEHAVIORAL HOSPITAL - NORTHSHORE, INC
## 2776      450658                           FREESTONE MEDICAL CENTER
## 2777      510012                           PLEASANT VALLEY HOSPITAL
## 2778      010045                             FAYETTE MEDICAL CENTER
## 2779      310113                      SOUTHERN OCEAN MEDICAL CENTER
## 2780      030062          SUMMIT HEALTHCARE REGIONAL MEDICAL CENTER
## 2781      060028                              SAINT JOSEPH HOSPITAL
## 2782      521348                           VERNON MEMORIAL HOSPITAL
## 2783      050295                                     MERCY HOSPITAL
## 2784      190128                                    WOMANS HOSPITAL
## 2785      340087                          MISSION HOSPITAL MCDOWELL
## 2786      314011                  UNIVERSITY BEHAVIORAL HEALTH CARE
## 2787      140093                    OSF SACRED HEART MEDICAL CENTER
## 2788      101301            SHANDS LIVE OAK REGIONAL MEDICAL CENTER
## 2789      390316                      SURGICAL INSTITUTE OF READING
## 2790      100299                      LAKEWOOD RANCH MEDICAL CENTER
## 2791      371321                       HOLDENVILLE GENERAL HOSPITAL
## 2792      040022                NORTHWEST MEDICAL CENTER-SPRINGDALE
## 2793      100268                           WEST BOCA MEDICAL CENTER
## 2794      170187                           SALINA SURGICAL HOSPITAL
## 2795      371327                          OKEENE MUNICIPAL HOSPITAL
## 2796      100050      LARKIN COMMUNITY HOSPITAL PALM SPRINGS CAMPUS
## 2797      310083                       EAST ORANGE GENERAL HOSPITAL
## 2798      440025                    LAUGHLIN MEMORIAL HOSPITAL, INC
## 2799      070022                            YALE-NEW HAVEN HOSPITAL
## 2800      180143                                  SAINT JOSEPH EAST
## 2801      450484                    WOODLAND HEIGHTS MEDICAL CENTER
## 2802      154059                      SYCAMORE SPRINGS HOSPITAL LLC
## 2803      100017                      HALIFAX HEALTH MEDICAL CENTER
## 2804      100014                      ADVENTHEALTH NEW SMYRNA BEACH
## 2805      281338                       HOWARD COUNTY MEDICAL CENTER
## 2806      340190             NOVANT HEALTH MINT HILL MEDICAL CENTER
## 2807      330304                       WHITE PLAINS HOSPITAL CENTER
## 2808      380047                                    ST CHARLES BEND
## 2809      040015                        MENA REGIONAL HEALTH SYSTEM
## 2810      360013                           WILSON MEMORIAL HOSPITAL
## 2811      300023                                EXETER HOSPITAL INC
## 2812      241329                             LAKEWOOD HEALTH SYSTEM
## 2813      450054              BAYLOR SCOTT & WHITE  CLINIC - TEMPLE
## 2814      161368                            FLOYD VALLEY HEALTHCARE
## 2815      061304                           HAXTUN HOSPITAL DISTRICT
## 2816      381321                              GRANDE RONDE HOSPITAL
## 2817      114032  SO CRESCENT BEH HLTH SYS - ANCHOR HOSPITAL CAMPUS
## 2818      110042                         WELLSTAR PAULDING HOSPITAL
## 2819      230156                           ST JOSEPH MERCY HOSPITAL
## 2820      104000               FLORIDA STATE HOSPITAL UNIT 14 PSYCH
## 2821      363304     CLEVELAND CLINIC CHILDREN'S HOSPITAL FOR REHAB
## 2822      010062                           WIREGRASS MEDICAL CENTER
## 2823      330175              CORTLAND REGIONAL MEDICAL CENTER, INC
## 2824      241361               MAYO CLINIC HEALTH SYSTEM-NEW PRAGUE
## 2825      310073             JERSEY SHORE UNIVERSITY MEDICAL CENTER
## 2826      421304 EDGEFIELD COUNTY HEALTHCARE AN AFFILIATE OF SELF R
## 2827      364011 NORTHCOAST BEHAVIORAL HEALTHCARE NORTHFIELD CAMPUS
## 2828      493302  CHILDREN'S HOSP OF RICHMOND OF THE VCU HEALTH SYS
## 2829      170194                               DOCTORS HOSPITAL LLC
## 2830      161341                         LUCAS COUNTY HEALTH CENTER
## 2831      040076   BAPTIST HEALTH MEDICAL CENTER-HOT SPRINGS COUNTY
## 2832      103301                       NICKLAUS CHILDREN'S HOSPITAL
## 2833      470001                     CENTRAL VERMONT MEDICAL CENTER
## 2834      330164                                  HIGHLAND HOSPITAL
## 2835      451338                                 CULBERSON HOSPITAL
## 2836      240056                           RIDGEVIEW MEDICAL CENTER
## 2837      261307                         PERSHING MEMORIAL HOSPITAL
## 2838      050122                                   DAMERON HOSPITAL
## 2839      140124                         JOHN H STROGER JR HOSPITAL
## 2840      110092                              DODGE COUNTY HOSPITAL
## 2841      270017                                ST JAMES HEALTHCARE
## 2842      061321                             MT SAN RAFAEL HOSPITAL
## 2843      670115                       CLEVELAND EMERGENCY HOSPITAL
## 2844      140197                      METHODIST HOSPITAL OF CHICAGO
## 2845      044005                                 BRIDGEWAY INC, THE
## 2846      113301  CHILDREN'S HEALTHCARE OF ATLANTA AT SCOTTISH RITE
## 2847      224042                        HIGH POINT TREATMENT CENTER
## 2848      390153                                     PAOLI HOSPITAL
## 2849      400118                      DOCTORS' CENTER HOSPITAL, INC
## 2850      440001                            UNICOI COUNTY  HOSPITAL
## 2851      111326                                 SGMC LANIER CAMPUS
## 2852      110050                                ADVENTHEALTH MURRAY
## 2853      031311                     LITTLE COLORADO MEDICAL CENTER
## 2854      050717 LAC/RANCHO LOS AMIGOS NATIONAL REHABILITATION  CTR
## 2855      161367                       PELLA REGIONAL HEALTH CENTER
## 2856      190208                       EAST CARROLL PARISH HOSPITAL
## 2857      050690              KAISER FOUNDATION HOSPITAL-SANTA ROSA
## 2858      110164                           COLISEUM MEDICAL CENTERS
## 2859      210028                      MEDSTAR SAINT MARY'S HOSPITAL
## 2860      391312                          PENN HIGHLANDS BROOKVILLE
## 2861      490007                   SENTARA NORFOLK GENERAL HOSPITAL
## 2862      450746                               KNOX COUNTY HOSPITAL
## 2863      100275             WELLINGTON REGIONAL MEDICAL CENTER LLC
## 2864      350070                              ESSENTIA HEALTH FARGO
## 2865      490011                  BON SECOURS DEPAUL MEDICAL CENTER
## 2866      150153             ST VINCENT HEART CENTER OF INDIANA LLC
## 2867      261312                 HARRISON COUNTY COMMUNITY HOSPITAL
## 2868      310003                           PALISADES MEDICAL CENTER
## 2869      100102          SHANDS LAKE SHORE REGIONAL MEDICAL CENTER
## 2870      151302       INDIANA UNIVERSITY HEALTH BLACKFORD HOSPITAL
## 2871      050124                         USC VERDUGO HILLS HOSPITAL
## 2872      450040                            COVENANT MEDICAL CENTER
## 2873      310012                                    VALLEY HOSPITAL
## 2874      431329                 SANFORD CHAMBERLAIN MEDICAL CENTER
## 2875      110189                           FANNIN REGIONAL HOSPITAL
## 2876      010169                          ATMORE COMMUNITY HOSPITAL
## 2877      261319                             MERCY HOSPITAL LINCOLN
## 2878      070029                                   BRISTOL HOSPITAL
## 2879      451366                          COCHRAN MEMORIAL HOSPITAL
## 2880      344026                                    CHERRY HOSPITAL
## 2881      050315                                KERN MEDICAL CENTER
## 2882      400130               HOSPITAL METROPOLITANO DE LA MONTANA
## 2883      150086                                   HIGHPOINT HEALTH
## 2884      054087                         SIERRA VISTA HOSPITAL, INC
## 2885      450508                                  MEMORIAL HOSPITAL
## 2886      290022                            DESERT SPRINGS HOSPITAL
## 2887      260061                     NEVADA REGIONAL MEDICAL CENTER
## 2888      251306                          PERRY COUNTY GENERAL HOSP
## 2889      250081                                 ANDERSON RMC SOUTH
## 2890      310076                      SAINT BARNABAS MEDICAL CENTER
## 2891      521307                                ADVENTHEALTH DURAND
## 2892      330307                    CAYUGA MEDICAL CENTER AT ITHACA
## 2893      320011                     PRESBYTERIAN ESPANOLA HOSPITAL
## 2894      450871                        ARISE AUSTIN MEDICAL CENTER
## 2895      030088                      BANNER BAYWOOD MEDICAL CENTER
## 2896      330079              ADIRONDACK MEDICAL CENTER - PHYSICIAN
## 2897      340147                              NASH GENERAL HOSPITAL
## 2898      510039                         OHIO VALLEY MEDICAL CENTER
## 2899      050279                           HI-DESERT MEDICAL CENTER
## 2900      451311                          SWEENY COMMUNITY HOSPITAL
## 2901      180012                           HARDIN MEMORIAL HOSPITAL
## 2902      450875                      QUAIL CREEK SURGICAL HOSPITAL
## 2903      141316              HOOPESTON COMMUNITY MEMORIAL HOSPITAL
## 2904      241319                    MURRAY COUNTY MEMORIAL HOSPITAL
## 2905      050471                            GOOD SAMARITAN HOSPITAL
## 2906      050139                KAISER FOUNDATION HOSPITAL - DOWNEY
## 2907      050616                  ST JOHNS PLEASANT VALLEY HOSPITAL
## 2908      100254                    CAPITAL REGIONAL MEDICAL CENTER
## 2909      280020                            CHI HEALTH ST ELIZABETH
## 2910      263302                           CHILDRENS MERCY HOSPITAL
## 2911      490092                      SOUTHAMPTON MEMORIAL HOSPITAL
## 2912      200018                  NORTHERN LIGHT A R GOULD HOSPITAL
## 2913      530025                          IVINSON MEMORIAL HOSPITAL
## 2914      381317                         ADVENTIST HEALTH TILLAMOOK
## 2915      050082                   ST JOHNS REGIONAL MEDICAL CENTER
## 2916      360211 TRINITY MEDICAL CTR EAST &TRINITY MEDICAL CTR WEST
## 2917      140150                    UNIVERSITY OF ILLINOIS HOSPITAL
## 2918      351333                  CHI ST ALEXIUS HEALTH DEVILS LAKE
## 2919      050222                   SHARP CHULA VISTA MEDICAL CENTER
## 2920      380001                        MID-COLUMBIA MEDICAL CENTER
## 2921      321310   HOLY CROSS HOSPITAL A DIV OF TAOS HEALTH SYSTEMS
## 2922      361314                                  MAGRUDER HOSPITAL
## 2923      050026                                 GROSSMONT HOSPITAL
## 2924      150115           MEMORIAL HOSPITAL AND HEALTH CARE CENTER
## 2925      490143        RIVERSIDE DOCTORS' HOSPITAL OF WILLIAMSBURG
## 2926      504003                             WESTERN STATE HOSPITAL
## 2927      051305                           MAYERS MEMORIAL HOSPITAL
## 2928      240064                   GRAND ITASCA CLINIC AND HOSPITAL
## 2929      260138                   ST LUKES HOSPITAL OF KANSAS CITY
## 2930      050334                   SALINAS VALLEY MEMORIAL HOSPITAL
## 2931      100322                REGIONAL GENERAL HOSPITAL WILLISTON
## 2932      520083            SSM HEALTH ST MARY'S HOSPITAL - MADISON
## 2933      161347                        FLOYD COUNTY MEDICAL CENTER
## 2934      054149                                 WILLOW ROCK CENTER
## 2935      271318                      BARRETT HOSPITAL & HEALTHCARE
## 2936      390258                             ST MARY MEDICAL CENTER
## 2937      040051                             DREW MEMORIAL HOSPITAL
## 2938      521321                               RIPON MEDICAL CENTER
## 2939      050678           MEMORIALCARE ORANGE COAST MEDICAL CENTER
## 2940      250128                              PANOLA MEDICAL CENTER
## 2941      240043  MAYO CLINIC HEALTH SYSTEM - ALBERT LEA AND AUSTIN
## 2942      171357                       HILLSBORO COMMUNITY HOSPITAL
## 2943      310052                               OCEAN MEDICAL CENTER
## 2944      190267                                              AVALA
## 2945      250123                         GARDEN PARK MEDICAL CENTER
## 2946      450144  PERMIAN REGIONAL MEDICAL CENTER ANDREWS COUNTY HO
## 2947      670098                           RESOLUTE HEALTH HOSPITAL
## 2948      281357                     SIDNEY REGIONAL MEDICAL CENTER
## 2949      451305                   BURLESON ST JOSEPH HEALTH CENTER
## 2950      254011                 GULFPORT BEHAVIORAL HEALTH  SYSTEM
## 2951      520059                   AURORA MEDICAL CENTER BURLINGTON
## 2952      171300                          GRISELL MEMORIAL HOSPITAL
## 2953      210003                   UMD PRINCE GEORGE'S HOSPITAL CTR
## 2954      410012                                THE MIRIAM HOSPITAL
## 2955      070033                                   DANBURY HOSPITAL
## 2956      021310                             MANIILAQ HEALTH CENTER
## 2957      444019        BEHAVIORAL HEALTHCARE CENTER AT CLARKSVILLE
## 2958      390067                          PINNACLE HEALTH HOSPITALS
## 2959      060130                        UCHEALTH GRANDVIEW HOSPITAL
## 2960      490048                           LEWISGALE MEDICAL CENTER
## 2961      050663                     LOS ANGELES COMMUNITY HOSPITAL
## 2962      151324                  FRANCISCAN HEALTH RENSSELAER, INC
## 2963      371334             CARNEGIE TRI-COUNTY MUNICIPAL HOSPITAL
## 2964      030093                  BANNER DEL E. WEBB MEDICAL CENTER
## 2965      110079                            GRADY MEMORIAL HOSPITAL
## 2966      104057                               SPRINGBROOK HOSPITAL
## 2967      330182                        ST FRANCIS HOSPITAL, ROSLYN
## 2968      050736                             MONTEREY PARK HOSPITAL
## 2969      330080             LINCOLN MEDICAL & MENTAL HEALTH CENTER
## 2970      191324                   OCHSNER ST ANNE GENERAL HOSPITAL
## 2971      110008                        NORTHSIDE HOSPITAL CHEROKEE
## 2972      100255                           TAMPA COMMUNITY HOSPITAL
## 2973      370025                    SAINT FRANCIS HOSPITAL MUSKOGEE
## 2974      370078           OKLAHOMA STATE UNIVERSITY MEDICAL CENTER
## 2975      351316                        PRESENTATION MEDICAL CENTER
## 2976      191304                         NORTH CADDO MEDICAL CENTER
## 2977      150158                            IU HEALTH WEST HOSPITAL
## 2978      131317                         BENEWAH COMMUNITY HOSPITAL
## 2979      200063                       PENOBSCOT BAY MEDICAL CENTER
## 2980      040085                     HELENA REGIONAL MEDICAL CENTER
## 2981      270032                          NORTHERN MONTANA HOSPITAL
## 2982      150009                              CLARK MEMORIAL HEALTH
## 2983      490060                       CLINCH VALLEY MEDICAL CENTER
## 2984      141307                   PINCKNEYVILLE COMMUNITY HOSPITAL
## 2985      500039                         HARRISON MEMORIAL HOSPITAL
## 2986      110095                       TIFT REGIONAL MEDICAL CENTER
## 2987      390268                       MOUNT NITTANY MEDICAL CENTER
## 2988      190241                          PHYSICIANS MEDICAL CENTER
## 2989      100209                    KENDALL REGIONAL MEDICAL CENTER
## 2990      210017                   GARRETT COUNTY MEMORIAL HOSPITAL
## 2991      490057            SENTARA VIRGINIA BEACH GENERAL HOSPITAL
## 2992      260200  SSM HEALTH SAINT JOSEPH HOSPITAL-LAKE SAINT LOUIS
## 2993      450877            FOUNDATION SURGICAL HOSPITAL OF EL PASO
## 2994      450489                              MEDICAL ARTS HOSPITAL
## 2995      270051                  KALISPELL REGIONAL MEDICAL CENTER
## 2996      431328                    PIONEER MEMORIAL HOSPITAL - CAH
## 2997      453309       HEALTHBRIDGE CHILDRENS'S HOSPITAL OF HOUSTON
## 2998      181305                            ARH OUR LADY OF THE WAY
## 2999      360137                        UH CLEVELAND MEDICAL CENTER
## 3000      010090                                PROVIDENCE HOSPITAL
## 3001      053305   LUCILE SALTER PACKARD CHILDREN'S HSP AT STANFORD
## 3002      200050                NORTHERN LIGHT MAINE COAST HOSPITAL
## 3003      140145                                ST JOSEPHS HOSPITAL
## 3004      501315                                   SKYLINE HOSPITAL
## 3005      230085                       BRONSON SOUTH HAVEN HOSPITAL
## 3006      151305                          PULASKI MEMORIAL HOSPITAL
## 3007      364059                        ASSURANCE HEALTH HUDSON LLC
## 3008      361329                          WYANDOT MEMORIAL HOSPITAL
## 3009      250138                            MERIT HEALTH RIVER OAKS
## 3010      450194         UT HEALTH EAST TEXAS JACKSONVILLE HOSPITAL
## 3011      451370                               TMC- BONHAM HOSPITAL
## 3012      500003                             SKAGIT VALLEY HOSPITAL
## 3013      371329         FAIRVIEW REGIONAL MEDICAL CENTER AUTHORITY
## 3014      050131                          NOVATO COMMUNITY HOSPITAL
## 3015      054089                                        JEWISH HOME
## 3016      281341                    CHADRON COMMUNITY HOSPITAL CORP
## 3017      170196             KANSAS SPINE & SPECIALTY HOSPITAL, LLC
## 3018      340023                                  PARK RIDGE HEALTH
## 3019      390219                     EXCELA HEALTH LATROBE HOSPITAL
## 3020      181324                  THE MEDICAL CENTER AT SCOTTSVILLE
## 3021      310024  ROBERT WOOD JOHNSON UNIVERSITY HOSPITAL AT RAHWAY
## 3022      271315   P H S INDIAN HOSPITAL-FT BELKNAP AT HARLEM - CAH
## 3023      241343               MUNICIPAL HOSPITAL AND GRANITE MANOR
## 3024      180050                                HARLAN ARH HOSPITAL
## 3025      170145           COFFEYVILLE REGIONAL MEDICAL CENTER, INC
## 3026      370211                  INTEGRIS CANADIAN VALLEY HOSPITAL
## 3027      400134                   SAN JORGE CHILDRENS HOSPITAL INC
## 3028      380082                      PROVIDENCE MILWAUKIE HOSPITAL
## 3029      490042           CARILION NEW RIVER VALLEY MEDICAL CENTER
## 3030      130065                             MOUNTAIN VIEW HOSPITAL
## 3031      060125                     CASTLE ROCK ADVENTIST HOSPITAL
## 3032      340028                    CAPE FEAR VALLEY MEDICAL CENTER
## 3033      050444                               MERCY MEDICAL CENTER
## 3034      030122                      BANNER GATEWAY MEDICAL CENTER
## 3035      521351                      REEDSBURG AREA MEDICAL CENTER
## 3036      100204              NORTH FLORIDA REGIONAL MEDICAL CENTER
## 3037      444003          RIDGEVIEW PSYCHIATRIC HOSPITAL AND CENTER
## 3038      440137                     TENNOVA HEALTHCARE-SHELBYVILLE
## 3039      050071             KAISER FOUNDATION HOSPITAL-SANTA CLARA
## 3040      330197                            CANTON-POTSDAM HOSPITAL
## 3041      670055                       METHODIST STONE OAK HOSPITAL
## 3042      390110                  CONEMAUGH MEMORIAL MEDICAL CENTER
## 3043      371330                     MANGUM REGIONAL MEDICAL CENTER
## 3044      520041                           DIVINE SAVIOR HEALTHCARE
## 3045      464001                                UTAH STATE HOSPITAL
## 3046      371319                               MARY HURLEY HOSPITAL
## 3047      140001                        GRAHAM HOSPITAL ASSOCIATION
## 3048      050296                    HAZEL HAWKINS MEMORIAL HOSPITAL
## 3049      174021         FREEDOM BEHAVIORAL HOSPITAL OF TOPEKA, LLC
## 3050      390080                                    JEANES HOSPITAL
## 3051      450716           HCA HOUSTON HEALTHCARE CYPRESS FAIRBANKS
## 3052      140029                         RUSH COPLEY MEDICAL CENTER
## 3053      021311                           KETCHIKAN MEDICAL CENTER
## 3054      490017                BON SECOURS MARYVIEW MEDICAL CENTER
## 3055      180104                             BAPTIST HEALTH PADUCAH
## 3056      140120                            PEKIN MEMORIAL HOSPITAL
## 3057      454142                          SACRED OAK MEDICAL CENTER
## 3058      110015                   TANNER MEDICAL CENTER VILLA RICA
## 3059      230054                       UP HEALTH SYSTEM - MARQUETTE
## 3060      074011                   CONNECTICUT MENTAL HEALTH CENTER
## 3061      044004                VANTAGE POINT OF NORTHWEST ARKANSAS
## 3062      161320         COMMUNITY MEMORIAL HOSPITAL MEDICAL CENTER
## 3063      520013                              SACRED HEART HOSPITAL
## 3064      360001                     MERCY HEALTH-ANDERSON HOSPITAL
## 3065      220080                               HOLY FAMILY HOSPITAL
## 3066      200037                         FRANKLIN MEMORIAL HOSPITAL
## 3067      390009                             SAINT VINCENT HOSPITAL
## 3068      334027                                    SOUTH OAKS HOSP
## 3069      150091                       PARKVIEW HUNTINGTON HOSPITAL
## 3070      180011                                SAINT JOSEPH LONDON
## 3071      501336         MASON GENERAL HOSPITAL & FAMILY OF CLINICS
## 3072      241306               RENVILLE COUNTY HOSPITAL AND CLINICS
## 3073      451356                            MEMORIAL MEDICAL CENTER
## 3074      050135          SOUTHERN CALIFORNIA HOSPITAL AT HOLLYWOOD
## 3075      490069       BON SECOURS MEMORIAL REGIONAL MEDICAL CENTER
## 3076      161344             WASHINGTON COUNTY HOSPITAL AND CLINICS
## 3077      171374                         FREDONIA REGIONAL HOSPITAL
## 3078      450072                  BRAZOSPORT REGIONAL HEALTH SYSTEM
## 3079      100296                                   DOCTORS HOSPITAL
## 3080      390071                                LOCK HAVEN HOSPITAL
## 3081      520071                             FORT MEMORIAL HOSPITAL
## 3082      480001                  ROY LESTER SCHNEIDER HOSPITAL,THE
## 3083      281324                             NEMAHA COUNTY HOSPITAL
## 3084      314012          HACKENSACK MERIDIAN HEALTH CARRIER CLINIC
## 3085      040072            BAPTIST HEALTH MEDICAL CENTER-STUTTGART
## 3086      100232                    PUTNAM COMMUNITY MEDICAL CENTER
## 3087      240093                MAYO CLINIC HEALTH SYSTEM - MANKATO
## 3088      100298                 FLORIDA STATE HOSPITAL UNIT 31 MED
## 3089      041329                          MERCY HOSPITAL BERRYVILLE
## 3090      390097          HOLY REDEEMER HOSPITAL AND MEDICAL CENTER
## 3091      230303                MUNSON HEALTHCARE MANISTEE HOSPITAL
## 3092      140174                      PRESENCE MERCY MEDICAL CENTER
## 3093      200034                  ST MARY'S REGIONAL MEDICAL CENTER
## 3094      171355               TREGO COUNTY LEMKE MEMORIAL HOSPITAL
## 3095      140091                      THE CARLE FOUNDATION HOSPITAL
## 3096      230121                                MEMORIAL HEALTHCARE
## 3097      050324                 SCRIPPS MEMORIAL HOSPITAL LA JOLLA
## 3098      141326                HAMILTON MEMORIAL HOSPITAL DISTRICT
## 3099      180024                               SPRING VIEW HOSPITAL
## 3100      030115                     BANNER ESTRELLA MEDICAL CENTER
## 3101      520198                         AURORA MEDICAL CTR OSHKOSH
## 3102      330090                         ARNOT OGDEN MEDICAL CENTER
## 3103      451377                    REEVES COUNTY HOSPITAL DISTRICT
## 3104      110029              NORTHEAST GEORGIA MEDICAL CENTER, INC
## 3105      450889 TEXAS INSTITUTE FOR SURGERY AT PRESBYTERIAN HOSPIT
## 3106      030013                       YUMA REGIONAL MEDICAL CENTER
## 3107      061318                         MIDDLE PARK MEDICAL CENTER
## 3108      010029                        EAST ALABAMA MEDICAL CENTER
## 3109      100126                         PALMS OF PASADENA HOSPITAL
## 3110      431314     BENNETT COUNTY HOSPITAL AND NURSING HOME - CAH
## 3111      170188                  KANSAS CITY ORTHOPAEDIC INSTITUTE
## 3112      321307                      MINERS' COLFAX MEDICAL CENTER
## 3113      050350                                   BEVERLY HOSPITAL
## 3114      440132                        HENRY COUNTY MEDICAL CENTER
## 3115      041305                             MERCY HOSPITAL WALDRON
## 3116      224021                             ARBOUR-FULLER HOSPITAL
## 3117      114028                     GEORGIA REGIONAL HOSP SAVANNAH
## 3118      040007                           CHI-ST VINCENT INFIRMARY
## 3119      051311                                   ORCHARD HOSPITAL
## 3120      050352                           BARTON MEMORIAL HOSPITAL
## 3121      060001                      NORTH COLORADO MEDICAL CENTER
## 3122      670056                          SETON MEDICAL CENTER HAYS
## 3123      074012                SOUTHWEST CONNECTICUT MENTAL HEALTH
## 3124      190053                  JENNINGS AMERICAN LEGION HOSPITAL
## 3125      110073                             DORMINY MEDICAL CENTER
## 3126      390044                                   READING HOSPITAL
## 3127      040011                         CHAMBERS MEMORIAL HOSPITAL
## 3128      140181                               SOUTH SHORE HOSPITAL
## 3129      430082      PHS INDIAN HOSPITAL AT RAPID CITY - SIOUX SAN
## 3130      451352                  HARDEMAN COUNTY MEMORIAL HOSPITAL
## 3131      444007                 ROLLING HILLS PSYCHIATRIC HOSPITAL
## 3132      050775                           TEMECULA VALLEY HOSPITAL
## 3133      100068                         ADVENTHEALTH DAYTONA BEACH
## 3134      400007                        RYDER MEMORIAL HOSPITAL INC
## 3135      454130                     WELLBRIDGE HEALTHCARE OF PLANO
## 3136      180053                            FLEMING COUNTY HOSPITAL
## 3137      244013         COMMUNITY BEHAVIORAL HOSPITAL FERGUS FALLS
## 3138      154019                             MADISON STATE HOSPITAL
## 3139      444014                  MIDDLE TN MENTAL HEALTH INSTITUTE
## 3140      360071                           VAN WERT COUNTY HOSPITAL
## 3141      370227                                     ST JOHN OWASSO
## 3142      180069             TUG VALLEY ARH REGIONAL MEDICAL CENTER
## 3143      360079                           KETTERING MEDICAL CENTER
## 3144      431332              AVERA DE SMET MEMORIAL HOSPITAL - CAH
## 3145      140291                    ADVOCATE GOOD SHEPHERD HOSPITAL
## 3146      180004     OWENSBORO HEALTH MUHLENBERG COMMUNITY HOSPITAL
## 3147      670088 BAYLOR SCOTT & WHITE MEDICAL CENTER- COLLEGE STATI
## 3148      130002                         ST LUKE'S MAGIC VALLEY RMC
## 3149      281352                      COMMUNITY MEDICAL CENTER, INC
## 3150      160047                         METHODIST JENNIE EDMUNDSON
## 3151      330135                     BON SECOURS COMMUNITY HOSPITAL
## 3152      240080  UNIVERSITY OF MINNESOTA  MEDICAL CENTER, FAIRVIEW
## 3153      100173                                 ADVENTHEALTH TAMPA
## 3154      330385                       NORTH CENTRAL BRONX HOSPITAL
## 3155      531303                      WESTON COUNTY HEALTH SERVICES
## 3156      100044             CLEVELAND CLINIC MARTIN NORTH HOSPITAL
## 3157      050739                  CENTINELA HOSPITAL MEDICAL CENTER
## 3158      440033        TENNOVA HEALTHCARE-LAFOLLETT MEDICAL CENTER
## 3159      450119                          SOUTH TEXAS HEALTH SYSTEM
## 3160      390081                  DELAWARE COUNTY MEMORIAL HOSPITAL
## 3161      210029               JOHNS HOPKINS BAYVIEW MEDICAL CENTER
## 3162      370037     SSM HEALTH ST ANTHONY HOSPITAL - OKLAHOMA CITY
## 3163      520030                            ASPIRUS WAUSAU HOSPITAL
## 3164      121307                                HALE HO'OLA HAMAKUA
## 3165      440010                               WAYNE MEDICAL CENTER
## 3166      450755                        COVENANT HOSPITAL LEVELLAND
## 3167      280130                                CHI HEALTH LAKESIDE
## 3168      330184                   MONTEFIORE NEW ROCHELLE HOSPITAL
## 3169      140013                                   PROCTOR HOSPITAL
## 3170      260102                     TRUMAN MEDICAL CENTER LAKEWOOD
## 3171      190176                              TULANE MEDICAL CENTER
## 3172      233300                    CHILDREN'S HOSPITAL OF MICHIGAN
## 3173      190274                      OCHSNER MEDICAL CENTER-KENNER
## 3174      520136 ASCENSION SE WISCONSIN HOSPITAL - ST JOSEPH CAMPUS
## 3175      450888   TEXAS HEALTH HARRIS METHODIST HOSPITAL SOUTHLAKE
## 3176      420036               MUSC HEALTH LANCASTER MEDICAL CENTER
## 3177      210051                       DOCTORS'  COMMUNITY HOSPITAL
## 3178      230055                 DICKINSON COUNTY MEMORIAL HOSPITAL
## 3179      331310                       ELLENVILLE REGIONAL HOSPITAL
## 3180      440007                               UNITY MEDICAL CENTER
## 3181      490107                             RESTON HOSPITAL CENTER
## 3182      330073                     UNITED MEMORIAL MEDICAL CENTER
## 3183      404007      HOSPITAL PSIQUIATRICO METROPOLITANO CABO ROJO
## 3184      050744                      ANAHEIM GLOBAL MEDICAL CENTER
## 3185      330157                           SAMARITAN MEDICAL CENTER
## 3186      230176                        BEAUMONT HOSPITAL - TRENTON
## 3187      340070                   ALAMANCE REGIONAL MEDICAL CENTER
## 3188      231328                           ALLEGAN GENERAL HOSPITAL
## 3189      371310                      MERCY HOSPITAL HEALDTON, INC.
## 3190      141336                               ST JOSEPH'S HOSPITAL
## 3191      111303                           JASPER MEMORIAL HOSPITAL
## 3192      140213         SILVER CROSS HOSPITAL  AND MEDICAL CENTERS
## 3193      310002                  NEWARK BETH ISRAEL MEDICAL CENTER
## 3194      051325                  MENDOCINO COAST DISTRICT HOSPITAL
## 3195      041314                DEWITT HOSPITAL & NURSING HOME, INC
## 3196      340188                     CAPE FEAR VALLEY HOKE HOSPITAL
## 3197      450780           METHODIST AMBULATORY SURGERY HOSPITAL NW
## 3198      050110                       LOMPOC VALLEY MEDICAL CENTER
## 3199      100043                             MEASE DUNEDIN HOSPITAL
## 3200      450010                 UNITED REGIONAL HEALTH CARE SYSTEM
## 3201      054154                         SAN JOSE BEHAVIORAL HEALTH
## 3202      390160                        CANONSBURG GENERAL HOSPITAL
## 3203      440018                           SYCAMORE SHOALS HOSPITAL
## 3204      120011                         KAISER FOUNDATION HOSPITAL
## 3205      100264                                  OAK HILL HOSPITAL
## 3206      521343                                 STOUGHTON HOSPITAL
## 3207      244016                                        PRAIRIECARE
## 3208      670110                FIRST TEXAS HOSPITAL CARROLLTON LLC
## 3209      370100                          CHOCTAW MEMORIAL HOSPITAL
## 3210      450271                        WISE REGIONAL HEALTH SYSTEM
## 3211      270023                           COMMUNITY MEDICAL CENTER
## 3212      210063                       UMD ST JOSEPH MEDICAL CENTER
## 3213      444025                         CRESTWYN BEHAVIORAL HEALTH
## 3214      103300              JOHNS HOPKINS ALL CHILDREN'S HOSPITAL
## 3215      010005                      MARSHALL MEDICAL CENTER SOUTH
## 3216      493301      CHILDRENS HOSPITAL OF THE KINGS DAUGHTERS INC
## 3217      050054                     SAN GORGONIO MEMORIAL HOSPITAL
## 3218      380025                   LEGACY MOUNT HOOD MEDICAL CENTER
## 3219      290012      SAINT ROSE DOMINICAN HOSPITALS - ROSE DE LIMA
## 3220      110089                COFFEE REGIONAL MEDICAL CENTER, INC
## 3221      231311                     DECKERVILLE COMMUNITY HOSPITAL
## 3222      100226                         ORANGE PARK MEDICAL CENTER
## 3223      260091           SSM HEALTH ST MARY'S HOSPITAL - ST LOUIS
## 3224      260108                    MISSOURI BAPTIST MEDICAL CENTER
## 3225      370214                         LINDSAY MUNICIPAL HOSPITAL
## 3226      450211                CHI ST LUKES HEALTH MEMORIAL LUFKIN
## 3227      460042                                  LAKEVIEW HOSPITAL
## 3228      440056     TENNOVA HEALTHCARE-JEFFERSON MEMORIAL HOSPITAL
## 3229      260001                              MERCY HOSPITAL JOPLIN
## 3230      360145       UNIVERSITY HOSPITALS - ELYRIA MEDICAL CENTER
## 3231      060113        CENTURA HEALTH-LITTLETON ADVENTIST HOSPITAL
## 3232      670128  BAYLOR SCOTT & WHITE MEDICAL CENTER  PFLUGERVILLE
## 3233      371302                        MERCY HOSPITAL WATONGA, INC
## 3234      670078                         BAPTIST EMERGENCY HOSPITAL
## 3235      390042                           WASHINGTON HOSPITAL, THE
## 3236      450893                   THE HEART HOSPITAL BAYLOR DENTON
## 3237      110026                           ELBERT MEMORIAL HOSPITAL
## 3238      490038                    SMYTH COUNTY COMMUNITY HOSPITAL
## 3239      181311                                 ST ELIZABETH GRANT
## 3240      440008                HENDERSON COUNTY COMMUNITY HOSPITAL
## 3241      390267                                    FORBES HOSPITAL
## 3242      141339                      TAYLORVILLE MEMORIAL HOSPITAL
## 3243      360011                            MARION GENERAL HOSPITAL
## 3244      330162                      NORTHERN WESTCHESTER HOSPITAL
## 3245      494029      SOUTHWESTERN VIRGINIA MENTAL HEALTH INSTITUTE
## 3246      100012                              LEE MEMORIAL HOSPITAL
## 3247      440130               BAPTIST MEMORIAL HOSPITAL UNION CITY
## 3248      374020      LAUREATE PSYCHIATRIC CLINIC AND HOSPITAL, INC
## 3249      140294                      CROSSROADS COMMUNITY HOSPITAL
## 3250      341317             LIFEBRITE COMMUNITY HOSPITAL OF STOKES
## 3251      451350                           PLAINS MEMORIAL HOSPITAL
## 3252      340184                    HAYWOOD REGIONAL MEDICAL CENTER
## 3253      231321                                      BELL HOSPITAL
## 3254      051324                             NORTHERN INYO HOSPITAL
## 3255      181327                           MARSHALL COUNTY HOSPITAL
## 3256      241378                             NEW ULM MEDICAL CENTER
## 3257      364035                       SUMMIT BEHAVIORAL HEALTHCARE
## 3258      310130  HACKENSACK MERIDIAN HEALTH PASCACK VALLEY MEDICAL
## 3259      191309                             HOOD MEMORIAL HOSPITAL
## 3260      450713             ST DAVID'S SOUTH AUSTIN MEDICAL CENTER
## 3261      220119              BRIGHAM AND WOMEN'S FAULKNER HOSPITAL
## 3262      050137         KAISER FOUNDATION HOSPITAL - PANORAMA CITY
## 3263      340084                                ATRIUM HEALTH ANSON
## 3264      031309                             SAGE MEMORIAL HOSPITAL
## 3265      154005                                RIVER BEND HOSPITAL
## 3266      060112                           SKY RIDGE MEDICAL CENTER
## 3267      030036                   CHANDLER REGIONAL MEDICAL CENTER
## 3268      403301                      UNIVERSITY PEDIATRIC HOSPITAL
## 3269      330240                             HARLEM HOSPITAL CENTER
## 3270      454136                 OCEANS BEHAVIORAL HOSPITAL OF KATY
## 3271      450684                MEMORIAL HERMANN NORTHEAST HOSPITAL
## 3272      150179                                          FAIRBANKS
## 3273      450702                   LONGVIEW REGIONAL MEDICAL CENTER
## 3274      400102                    DOCTORS CENTER HOSPITAL BAYAMON
## 3275      381307                           HARNEY DISTRICT HOSPITAL
## 3276      521319              EDGERTON HOSPITAL AND HEALTH SERVICES
## 3277      500007                                    ISLAND HOSPITAL
## 3278      400010                       HOSPITAL GENERAL DE CASTANER
## 3279      234006         PINE REST CHRISTIAN MENTAL HEALTH SERVICES
## 3280      161365                    GREATER REGIONAL MEDICAL CENTER
## 3281      310057      VIRTUA MEMORIAL HOSPITAL OF BURLINGTON COUNTY
## 3282      490077                          MARTHA JEFFERSON HOSPITAL
## 3283      150018                           ELKHART GENERAL HOSPITAL
## 3284      060010                             POUDRE VALLEY HOSPITAL
## 3285      040153             WADLEY REGIONAL MEDICAL CENTER AT HOPE
## 3286      061319               ST VINCENT GENERAL HOSPITAL DISTRICT
## 3287      384012                               CEDAR HILLS HOSPITAL
## 3288      390225                WELLSPAN EPHRATA COMMUNITY HOSPITAL
## 3289      150183                                    MONROE HOSPITAL
## 3290      521337                   ST CROIX REGIONAL MEDICAL CENTER
## 3291      360091                                    MEDINA HOSPITAL
## 3292      260209                          FULTON MEDICAL CENTER LLC
## 3293      440009                          CUMBERLAND MEDICAL CENTER
## 3294      260193                           ST MARY'S MEDICAL CENTER
## 3295      300003                   MARY HITCHCOCK MEMORIAL HOSPITAL
## 3296      454138                        GARLAND BEHAVIORAL HOSPITAL
## 3297      360245                           GLENBEIGH HEALTH SOURCES
## 3298      110129                                ST FRANCIS HOSPITAL
## 3299      520096                      ASCENSION ALL SAINTS HOSPITAL
## 3300      310021                          ST FRANCIS MEDICAL CENTER
## 3301      310041                           COMMUNITY MEDICAL CENTER
## 3302      450639                                   TEXAS HEALTH HEB
## 3303      363302              RAINBOW BABIES AND CHILDRENS HOSPITAL
## 3304      360359          UNIVERSITY HOSPITALS AHUJA MEDICAL CENTER
## 3305      450231                      BAPTIST ST ANTHONY'S HOSPITAL
## 3306      191305                           ST JAMES PARISH HOSPITAL
## 3307      150133                       KOSCIUSKO COMMUNITY HOSPITAL
## 3308      110124                            WAYNE MEMORIAL HOSPITAL
## 3309      213300                MOUNT WASHINGTON PEDIATRIC HOSPITAL
## 3310      110165                   SOUTHERN REGIONAL MEDICAL CENTER
## 3311      230193                              MCLAREN LAPEER REGION
## 3312      360197                                MARY RUTAN HOSPITAL
## 3313      280060 CHI HEALTH CREIGHTON UNIVERSITY MEDICAL CENTER - B
## 3314      301310                       ANDROSCOGGIN VALLEY HOSPITAL
## 3315      360192                           UH GEAUGA MEDICAL CENTER
## 3316      054144               LANGLEY PORTER PSYCHIATRIC INSTITUTE
## 3317      330166                   WESTFIELD MEMORIAL HOSPITAL, INC
## 3318      371335                  HASKELL COUNTY COMMUNITY HOSPITAL
## 3319      280133                       NEBRASKA SPINE HOSPITAL, LLC
## 3320      520057             SSM HEALTH ST CLARE HOSPITAL - BARABOO
## 3321      370218                  SAINT FRANCIS HOSPITAL SOUTH, LLC
## 3322      390233                                   HANOVER HOSPITAL
## 3323      050708                           FRESNO SURGICAL HOSPITAL
## 3324      140011                                    HERRIN HOSPITAL
## 3325      294010                             SPRING MOUNTAIN SAHARA
## 3326      370190          SOUTHWESTERN REGIONAL MEDICAL CENTER, INC
## 3327      160033                   GENESIS MEDICAL CENTER-DAVENPORT
## 3328      270057                  BOZEMAN HEALTH DEACONESS HOSPITAL
## 3329      201315                         STEPHENS MEMORIAL HOSPITAL
## 3330      310115                        HACKETTSTOWN MEDICAL CENTER
## 3331      151328         INDIANA UNIVERSITY HEALTH BEDFORD HOSPITAL
## 3332      151301                   ST VINCENT RANDOLPH HOSPITAL INC
## 3333      360064                MH ST ELIZABETH YOUNGSTOWN HOSPITAL
## 3334      460009           UNIVERSITY OF UTAH HOSPITALS AND CLINICS
## 3335      050101                       SUTTER SOLANO MEDICAL CENTER
## 3336      180056                                 METHODIST HOSPITAL
## 3337      310111                         CENTRASTATE MEDICAL CENTER
## 3338      171363                 COMMUNITY MEMORIAL HEALTHCARE, INC
## 3339      111308                           CLINCH MEMORIAL HOSPITAL
## 3340      360172                       MERCY HEALTH-LORAIN HOSPITAL
## 3341      050300                             ST MARY MEDICAL CENTER
## 3342      450035                           ST JOSEPH MEDICAL CENTER
## 3343      450518              THE MEDICAL CENTER OF SOUTHEAST TEXAS
## 3344      140058                            PASSAVANT AREA HOSPITAL
## 3345      370011                             MERCY HOSPITAL EL RENO
## 3346      140062                           PALOS COMMUNITY HOSPITAL
## 3347      100054                               TWIN CITIES HOSPITAL
## 3348      154054                       HARSHA BEHAVIORAL CENTER INC
## 3349      230092                       HENRY FORD ALLEGIANCE HEALTH
## 3350      310008                           HOLY NAME MEDICAL CENTER
## 3351      054148                           TARZANA TREATMENT CENTER
## 3352      140210                          HARRISBURG MEDICAL CENTER
## 3353      460049                  THE ORTHOPEDIC SPECIALTY HOSPITAL
## 3354      271331                         MINERAL COMMUNITY HOSPITAL
## 3355      054123               ST JOSEPH'S BEHAVIORAL HEALTH CENTER
## 3356      331305                                  O'CONNOR HOSPITAL
## 3357      390185                  LEHIGH VALLEY HOSPITAL - HAZLETON
## 3358      440061       WEST TENNESSEE HEALTHCARE VOLUNTEER HOSPITAL
## 3359      341329                  BLUE RIDGE REGIONAL HOSPITAL, INC
## 3360      490104                       HIRAM W DAVIS MEDICAL CENTER
## 3361      010007                           MIZELL MEMORIAL HOSPITAL
## 3362      151322                     PERRY COUNTY MEMORIAL HOSPITAL
## 3363      440131                   BAPTIST MEMORIAL HOSPITAL TIPTON
## 3364      460047                                 ST MARK'S HOSPITAL
## 3365      300012                                    ELLIOT HOSPITAL
## 3366      171342                      RUSH COUNTY MEMORIAL HOSPITAL
## 3367      390117                              UPMC BEDFORD MEMORIAL
## 3368      391308               LECOM HEALTH CORRY MEMORIAL HOSPITAL
## 3369      340186                           VIDANT BEAUFORT HOSPITAL
## 3370      271319                         RUBY VALLEY MEDICAL CENTER
## 3371      180016                      JEWISH HOSPITAL - SHELBYVILLE
## 3372      241302                   SANFORD WESTBROOK MEDICAL CENTER
## 3373      160024                             IOWA LUTHERAN HOSPITAL
## 3374      161373                           RINGGOLD COUNTY HOSPITAL
## 3375      010021                                DALE MEDICAL CENTER
## 3376      154008                          NEURODIAGNOSTIC INSTITUTE
## 3377      150160                                 ORTHOINDY HOSPITAL
## 3378      251320                          CLAIBORNE COUNTY HOSPITAL
## 3379      390326               ST LUKE'S HOSPITAL - ANDERSON CAMPUS
## 3380      050485                 LONG BEACH MEMORIAL MEDICAL CENTER
## 3381      501316                          KLICKITAT VALLEY HOSPITAL
## 3382      171343                            STANTON COUNTY HOSPITAL
## 3383      034023                               GUIDANCE CENTER, THE
## 3384      171356                   ST LUKE HOSPITAL & LIVING CENTER
## 3385      340047                    NORTH CAROLINA BAPTIST HOSPITAL
## 3386      181309                              CASEY COUNTY HOSPITAL
## 3387      451315                             NORTH RUNNELS HOSPITAL
## 3388      230072                         HOLLAND COMMUNITY HOSPITAL
## 3389      490063                             INOVA FAIRFAX HOSPITAL
## 3390      331302                   ELIZABETHTOWN COMMUNITY HOSPITAL
## 3391      450064           TEXAS HEALTH ARLINGTON MEMORIAL HOSPITAL
## 3392      241369                           UNITED HOSPITAL DISTRICT
## 3393      431316                        COMMUNITY MEMORIAL HOSPITAL
## 3394      100176                  PALM BEACH GARDENS MEDICAL CENTER
## 3395      111302                         BLECKLEY MEMORIAL HOSPITAL
## 3396      241341                        APPLETON MUNICIPAL HOSPITAL
## 3397      161375                BUENA VISTA REGIONAL MEDICAL CENTER
## 3398      524019                              NORWOOD HEALTH CENTER
## 3399      330214                              NYU LANGONE HOSPITALS
## 3400      270012                              BENEFIS HOSPITALS INC
## 3401      511314                       POCAHONTAS MEMORIAL HOSPITAL
## 3402      281312                           GENOA COMMUNITY HOSPITAL
## 3403      103304                        NEMOURS CHILDREN'S HOSPITAL
## 3404      370236                             INTEGRIS HEALTH EDMOND
## 3405      360074                                    FLOWER HOSPITAL
## 3406      260216                         SAINT LUKE'S EAST HOSPITAL
## 3407      340096                    LEXINGTON MEMORIAL HOSPITAL INC
## 3408      370049                          STILLWATER MEDICAL CENTER
## 3409      041324                           CHI ST VINCENT MORRILTON
## 3410      050779         MARTIN LUTHER KING, JR. COMMUNITY HOSPITAL
## 3411      501311                          EAST ADAMS RURAL HOSPITAL
## 3412      450460                              TYLER COUNTY HOSPITAL
## 3413      060064           CENTURA HEALTH-PORTER ADVENTIST HOSPITAL
## 3414      251326             JEFFERSON DAVIS COMMUNITY HOSPITAL CAH
## 3415      140180  PRESENCE SAINTS MARY AND ELIZABETH MEDICAL CENTER
## 3416      131304                     POWER COUNTY HOSPITAL DISTRICT
## 3417      440059                 COOKEVILLE REGIONAL MEDICAL CENTER
## 3418      111332                             BROOKS COUNTY HOSPITAL
## 3419      140002                            ALTON MEMORIAL HOSPITAL
## 3420      050761                  PROVIDENCE TARZANA MEDICAL CENTER
## 3421      520034                AURORA MEDICAL CTR MANITOWOC COUNTY
## 3422      450558                    ABILENE REGIONAL MEDICAL CENTER
## 3423      021303                           SITKA COMMUNITY HOSPITAL
## 3424      310054                        HACKENSACK-UMC MOUNTAINSIDE
## 3425      351311                                  CHI LISBON HEALTH
## 3426      241316                            BIGFORK VALLEY HOSPITAL
## 3427      100266                               GULF BREEZE HOSPITAL
## 3428      451320                         BAYSIDE COMMUNITY HOSPITAL
## 3429      450697                         SOUTHWEST GENERAL HOSPITAL
## 3430      180036                    OUR LADY OF BELLEFONTE HOSPITAL
## 3431      030065                       BANNER DESERT MEDICAL CENTER
## 3432      520004        MAYO CLINIC HLTH SYSTEM  FRANCISCAN MED CTR
## 3433      010073                               CLAY COUNTY HOSPITAL
## 3434      330261                      PHELPS MEMORIAL HOSPITAL ASSN
## 3435      250126                  NORTH OAK REGIONAL MEDICAL CENTER
## 3436      520008                         WAUKESHA MEMORIAL HOSPITAL
## 3437      090003                         HOWARD UNIVERSITY HOSPITAL
## 3438      050589                           PLACENTIA LINDA HOSPITAL
## 3439      520019                        ASCENSION ST MARYS HOSPITAL
## 3440      131325                          BINGHAM MEMORIAL HOSPITAL
## 3441      171333                              CLARA BARTON HOSPITAL
## 3442      520017                                ST JOSEPHS HOSPITAL
## 3443      134010                               STATE HOSPITAL SOUTH
## 3444      100137           HEART OF FLORIDA REGIONAL MEDICAL CENTER
## 3445      460006                                       LDS HOSPITAL
## 3446      334045                                ELMIRA PSYCH CENTER
## 3447      010138                     HILL HOSPITAL OF SUMTER COUNTY
## 3448      190302                                OMEGA HOSPITAL, LLC
##                                                 Address
## 1                                  AVE LUIS MUNOZ MARIN
## 2                                         ANCORA BRANCH
## 3                                420 ALBERTSONS PARKWAY
## 4                                       3100 DOUGLAS RD
## 5                                        6515 KEMP BLVD
## 6                                        300 3RD AVE SE
## 7                                      17750 CALI DRIVE
## 8                                        413 9TH STREET
## 9                                      3955 156TH ST NE
## 10                                  ONE CHILDRENS PLAZA
## 11                                   9241 PARK ROYAL DR
## 12                                      5 PERRYRIDGE RD
## 13                                        2001 LADBROOK
## 14                                 2000 CHAMBERS, BOX A
## 15                                     40 1ST STREET SE
## 16                           E 65TH ST AT LAKE MICHIGAN
## 17                                   2731 HEALTHCARE DR
## 18                             300 FONT MARTELLO STREET
## 19                                  1350 EAST 750 NORTH
## 20                                        WARD'S ISLAND
## 21                                    6350 E 2ND STREET
## 22                                      1401 BAILEY AVE
## 23                                    1301 LINCOLN ROAD
## 24                                         440 S MARKET
## 25                                      CALLER BOX C268
## 26                           HIGHWAY 86, AT TOPAWA ROAD
## 27                               6401 DIRECTORS PARKWAY
## 28                                       909 N IOWA AVE
## 29                           ANNA MARSH LANE PO BOX 803
## 30                                    509 WILSON AVENUE
## 31                                  2ND & FRISCO STREET
## 32                                  7000 US HIGHWAY 287
## 33                                      130 HIGHWAY 252
## 34                                   520 N RIDGEWAY AVE
## 35                                      FAGAALU VILLAGE
## 36                               STATE ROAD 787 KM 1  5
## 37                                   7601 FANNIN STREET
## 38                                          P O BOX 130
## 39                               600 N SIOUX POINT ROAD
## 40                               151 AVE OSVALDO MOLINA
## 41                                         366 BROADWAY
## 42                                        1611 SPUR 576
## 43                                        2475 BROADWAY
## 44                                 5445 LABRANCH STREET
## 45                                       2025 DESOTO ST
## 46                                      350 FISHER ROAD
## 47                                           55 PALM ST
## 48                                3550 HIGHWAY 468 WEST
## 49                              3550 HWY 468 W, BLDG 60
## 50                                    417 S WHITLOCK ST
## 51                                      1351 ONTARIO RD
## 52                                  2209 PINEVIEW DRIVE
## 53                             CARR 844 KM 5 CUPEY BAJO
## 54                 CARR 877 KM 1 6 CAMINO LAS LOMAS RR2
## 55                                          WADE AVENUE
## 56                                         1120 PINE ST
## 57                           3101 NORTH TARRANT PARKWAY
## 58                                3015 VETERANS PARKWAY
## 59                           1503 CEDAR CREST BOULEVARD
## 60                                   801 EASTERN BYPASS
## 61                                    815 MARKET STREET
## 62                               1220 MONTGOMERY STREET
## 63                                      410 DENIM DRIVE
## 64                                    325 SPRING STREET
## 65                                        1401 RIVER RD
## 66                                      289 COUNTY ROAD
## 67                                    56-45 MAIN STREET
## 68                           2434 WEST BELVEDERE AVENUE
## 69                          3131 THOMASVILLE HWY BOX 40
## 70                                    11234 ANDERSON ST
## 71                                 2001 MEDICAL PARKWAY
## 72                          929 NORTH ST FRANCIS STREET
## 73                                     100 SOUTH STREET
## 74                                      1400 JACKSON ST
## 75                                          312 S ADAMS
## 76                       850 W CENTRAL TEXAS EXPRESSWAY
## 77                                   347 MAGNOLIA DRIVE
## 78                                     720 W CENTRAL ST
## 79                                  3440 E LA PALMA AVE
## 80                                438 W LAS TUNAS DRIVE
## 81                                   309 BELMONT STREET
## 82                                         1013 S WELLS
## 83                                  201 TABERNACLE ROAD
## 84                              2131 S 17TH ST BOX 9000
## 85                                1715 SHARON ROAD WEST
## 86                                       320 NORTH MAIN
## 87                             1340 HAL GREER BOULEVARD
## 88                                    840 PASSOVER ROAD
## 89                      P O BOX 410, 510 NORTH GREEN ST
## 90                            1000 NORTH SHENANDOAH AVE
## 91                                    501 MORRIS STREET
## 92                                     1 PARKLAND DRIVE
## 93                                          6565 FANNIN
## 94                                1717 ARLINGTON STREET
## 95                                     14114 ALABAMA ST
## 96                 1300 OAK STREET  POST OFFICE BOX 100
## 97                                    1000 WATERMAN WAY
## 98                             595 WEST CAROLINA AVENUE
## 99                                     2600 65TH AVENUE
## 100                            1105 KALISTE SALOOM ROAD
## 101                          900 HILLIGOSS BOULEVARD SE
## 102                                     718 N MACOMB ST
## 103                                    30 LOCUST STREET
## 104                                     3700 E SOUTH ST
## 105                                       140 NUTT ROAD
## 106                             1301 SOUTH CRISMON ROAD
## 107                                    405 GRAND AVENUE
## 108                                     11133 DUNN ROAD
## 109                                2211 NE 139TH STREET
## 110                                2770 NORTH WEBB ROAD
## 111                                     1215 TIBBALS ST
## 112                                1020 THOMPSON STREET
## 113                                    900 CATON AVENUE
## 114                                      14000 FIVAY RD
## 115                                  900 HOSPITAL DRIVE
## 116                                    123 ANDOVER ROAD
## 117                                    2215 BURDETT AVE
## 118                               16420 WEST HIGHWAY 24
## 119                                  801 SEVENTH AVENUE
## 120                                   530 BOGACHIEL WAY
## 121                                  720 SOUTH SIXTH ST
## 122                                4619 N ROSEMEAD BLVD
## 123                                     600 E DIXIE AVE
## 124                          13111 N PORT WASHINGTON RD
## 125                                 1109 NORTH 100 WEST
## 126                            1009 NORTH THOMPSON LANE
## 127                          3131 UNIVERSITY DRIVE EAST
## 128                                     5454 HOHMAN AVE
## 129                              6050 NORTH CORONA ROAD
## 130                                     112 E FIFTH AVE
## 131                                 2701 N DECATUR ROAD
## 132                                       901 JAMES AVE
## 133                                 427 GUY PARK AVENUE
## 134                                  48 WEST 1500 NORTH
## 135                               407 CINCINNATI STREET
## 136                   P O BOX 151, 723 WEST FAIRVIEW ST
## 137                           220 N PENNSYLVANIA AVENUE
## 138                                1610 8TH AVENUE EAST
## 139                                     1 MT CARMEL WAY
## 140                                   1555 SOQUEL DRIVE
## 141                         P O BOX 220, 2910 BETTEN DR
## 142                                  620 MADISON STREET
## 143                                    2755 COLONIAL DR
## 144                                       4647 ZION AVE
## 145                            13677 WEST MCDOWELL ROAD
## 146                             237 SOUTH LOCUST STREET
## 147                                       117 KITE ROAD
## 148                             500 REMINGTON BOULEVARD
## 149                                 PONCE BY PASS #2213
## 150                           US HWY 191, HOSPITAL ROAD
## 151                          ONE ST ELIZABETH BOULEVARD
## 152                                    800 BARKER DRIVE
## 153                                   615 N MICHIGAN ST
## 154                                 323 SOUTH MINNESOTA
## 155                                  7503 SURRATTS ROAD
## 156                              401 EAST VAUGHN AVENUE
## 157                                    500 FIRST AVENUE
## 158                                 1829 COLLEGE AVENUE
## 159                                 2380 NORTH 400 EAST
## 160                                  800 COMPASSION WAY
## 161                                  2018 CLINCH AVE SW
## 162                                 3043 NE 28TH STREET
## 163                            300 NORTH HOSPITAL DRIVE
## 164                                     920 CHURCH ST N
## 165                           163 VAN BUREN RD, SUITE 1
## 166                            3550 EAST PINCHOT AVENUE
## 167                                 8954 HOSPITAL DRIVE
## 168                        200 HAWTHORNE LANE BOX 33549
## 169                                     721 WEST KANSAS
## 170                                     1 SHIRCLIFF WAY
## 171                            209 NORTHWEST 8TH STREET
## 172                                3201 WEST HIGHWAY 22
## 173                           213 S WHITACRE/PO BOX 940
## 174                                    ONE HURLEY PLAZA
## 175                                  3349 S HIGHWAY 181
## 176                                       407 3RD ST SE
## 177                                     2425 GEARY BLVD
## 178                                651 NORTH BOLTON AVE
## 179                             10 4TH AVENUE SOUTHEAST
## 180                              1190 WAIANUENUE AVENUE
## 181                                          PO BOX 160
## 182                                       3800 JANES RD
## 183                                      79-01 BROADWAY
## 184                     458 HANNINGS LANE, P O BOX 1006
## 185                                   601 DUBOCE AVENUE
## 186                                 20480 MARKET STREET
## 187                                       801 ILLINI DR
## 188                                701 S HEALTH PARKWAY
## 189                                   10030 GILEAD ROAD
## 190                              600 NORTHERN BOULEVARD
## 191                          18600 NORTH HARDY OAK BLVD
## 192                                4747 ARAPAHOE AVENUE
## 193                                   132 MEADOWS DRIVE
## 194                                 1910 MALVERN AVENUE
## 195                         9300 VALLEY CHILDRENS PLACE
## 196                               407 EAST THIRD STREET
## 197                                 178 GRANDVIEW DRIVE
## 198                                      1101 W LIBERTY
## 199                                   295 JACKSON HWY S
## 200                           324 MILLER MOUNTAIN DRIVE
## 201                                      1850 WESLEY RD
## 202                                    1221 SOUTH DRIVE
## 203                          1525 N RENAISSANCE BLVD NE
## 204                           603 NORTH PROGRESS AVENUE
## 205                                  1191 PHELPS AVENUE
## 206                               450 WEST WILLIAMS WAY
## 207                                       2707 L STREET
## 208                             130 SOUTH BRYN MAWR AVE
## 209                             1701 S SHACKLEFORD ROAD
## 210                                   1101 MICHIGAN AVE
## 211                             5995 SE COMMUNITY DRIVE
## 212                                     101 COLE AVENUE
## 213                                       170 FORD ROAD
## 214                             1027 EAST CHERRY STREET
## 215                               741 NORTH MAIN STREET
## 216                                3325 POCAHONTAS ROAD
## 217                                    2200 OSPREY BLVD
## 218                                  700 NE 13TH STREET
## 219                                  12 THIRD STREET SE
## 220                                       105 5TH AVE E
## 221                             3535 OLENTANGY RIVER RD
## 222                                    4039 HIGHLAND ST
## 223                                       2809 DENNY AV
## 224                                  20370 NE BURNS AVE
## 225                                88 WASHINGTON STREET
## 226                                   100 MEDICAL DRIVE
## 227       CALLE JAVILLA  #8 AL COSTADO PARQUE DE BOMBAS
## 228                          1850 OLD KNOXVILLE HIGHWAY
## 229                                       659 BOULEVARD
## 230                                   10 NICHOLS STREET
## 231                              901 DAVIDSON STREET NW
## 232                                 801 W GORDON STREET
## 233                                    800 ALDER STREET
## 234                                 18300 ST JOHN DRIVE
## 235                          1800 EAST VAN BUREN STREET
## 236                                       303 CATLIN ST
## 237                                   1825 LOGAN AVENUE
## 238                                    1032 E SUMNER ST
## 239                                    ONE HOSPITAL WAY
## 240                          600 CELEBRATE LIFE PARKWAY
## 241                                  2016 SOUTH MAIN ST
## 242                             17000 MEDICAL CENTER DR
## 243                            5501 SOUTH EXPRESSWAY 77
## 244                 89TH AVENUE AND VAN WYCK EXPRESSWAY
## 245                                      445 LENOX ROAD
## 246                                     416 E MAUMEE ST
## 247                                     6847 N CHESTNUT
## 248                                     9922 LOUETTA RD
## 249                                 35900 EUCLID AVENUE
## 250                               100 FALLS CANYON ROAD
## 251                              15855 NINETEEN MILE RD
## 252                                       189 STORRS RD
## 253                                  2105 FOREST AVENUE
## 254                                    139 GARAU STREET
## 255                                  250 PROSPECT PLACE
## 256                                 411 CANISTEO STREET
## 257                                     651 DUNLOP LANE
## 258                             20333 WEST 151ST STREET
## 259                                 360 SOUTH LOLA LANE
## 260                             22 SOUTH  GREENE STREET
## 261                             6869 FIFTH AVENUE SOUTH
## 262                                   4801 BECKNER ROAD
## 263                                      501 KEYSER AVE
## 264                                2601 NORTH SPRUCE ST
## 265                                 300 HILLMONT AVENUE
## 266                           400 SOUTH CHESTNUT STREET
## 267                                1670 ST VINCENTS WAY
## 268                         1 HOSPITAL DRIVE, SUITE 201
## 269                             1100 VETERANS BOULEVARD
## 270                                   859 WINTER STREET
## 271                                  855 MANKATO AVENUE
## 272                                2872 TURNPIKE STREET
## 273                                      222 TONGASS DR
## 274                   P O BOX 118, 401 SOUTH 5TH STREET
## 275                                  1300 N MAIN AVENUE
## 276                               619 SOUTH 19TH STREET
## 277                                  1101 9TH STREET SE
## 278                              1000 NORTH 15TH STREET
## 279                                1401 W SEMINOLE BLVD
## 280                                     1015 UNITY ROAD
## 281                                    4200 NELSON ROAD
## 282                                 9875 HOSPITAL DRIVE
## 283                                  1900 TEBEAU STREET
## 284                     13600 HORIZON STREET, SUITE 100
## 285                                 1050 MCDONOUGH ROAD
## 286                            302 NORTH HOSPITAL DRIVE
## 287                           5899 WEST RIVENDELL DRIVE
## 288                                       607 BEAMAN ST
## 289                                  220 HOSPITAL DRIVE
## 290                                   900 EIGHTH AVENUE
## 291                             1519 MAIN STREET HWY 33
## 292                                 5601 DE SOTO AVENUE
## 293                     2500 BELLEVUE MEDICAL CENTER DR
## 294                      2633 E 27TH STREET, BUILDING B
## 295                              900 SOUTH THIRD STREET
## 296                                      1000 N MAIN ST
## 297                                44201 DEQUINDRE ROAD
## 298                                 425 WEST 5TH STREET
## 299                          1 MILE EAST US HIGHWAY 270
## 300                              200 SOUTH ACADEMY ROAD
## 301                                  49 HILLSIDE STREET
## 302                                    101 POSEY AVENUE
## 303                                 1205 E NORTH STREET
## 304                                   1404 W BAKER ROAD
## 305                             13215  BROOK LANE DRIVE
## 306                             2960 SLEEPY HOLLOW ROAD
## 307                                8300 RED BUG LAKE RD
## 308                                        HWY 83 NORTH
## 309                            10550 WEST MCDOWELL ROAD
## 310                               11217 LAKEVIEW AVENUE
## 311                              19600 EAST 39TH STREET
## 312                                 1500 SW 10TH AVENUE
## 313                                      500 W COURT ST
## 314                            288 SOUTH RIDGECREST AVE
## 315                          921 SOUTH BALLANCEE AVENUE
## 316                            2010 HEALTH CAMPUS DRIVE
## 317                             200 JEFFERSON AVENUE SE
## 318                                  17065 S 71 HIGHWAY
## 319                                 101 HOSPITAL CIRCLE
## 320                              28400 MCCALL B0ULEVARD
## 321                                    207 FOOTE AVENUE
## 322                                  701 WEST NORTH AVE
## 323                                   736 IRVING AVENUE
## 324                                 1301 KS HIGHWAY 264
## 325                                  150 REYNOIR STREET
## 326                                   1550 SIXTH STREET
## 327                                  5501 OLD YORK ROAD
## 328                                       510 W TIDWELL
## 329                               400 NORTH MAIN STREET
## 330                              1400 NORTH WILMOT ROAD
## 331                                    435 LEWIS AVENUE
## 332                                         4321 FIR ST
## 333                                 13001 SOUTHERN BLVD
## 334                              1455 ST FRANCIS AVENUE
## 335                          729 SOUTH EAST MAIN STREET
## 336                                    500 RUE DE SANTE
## 337                             16251 SYLVESTER ROAD SW
## 338                                1505 N SECOND STREET
## 339                                 1027 WASHINGTON AVE
## 340                                    110 LONGWOOD AVE
## 341                             1 MEDICAL VILLAGE DRIVE
## 342                                         PO BOX 774,
## 343                                   744 S WEBSTER AVE
## 344                                  1451 44TH AVENUE S
## 345                                   1035 RED BUD ROAD
## 346                                1800 E LAKE SHORE DR
## 347                                     3364 KOLBE ROAD
## 348                                  2001 DOCTORS DRIVE
## 349                                1500 S LAKE PARK AVE
## 350                                     1600 E BROADWAY
## 351                                    508 GREEN STREET
## 352                                888 OLD COUNTRY ROAD
## 353                                 JUNCTION OF HWY 371
## 354                                 4646 N MARINE DRIVE
## 355                                1430 COLUMBUS AVENUE
## 356                                   7 MEDICAL PARKWAY
## 357                                    6300 MAIN STREET
## 358                                      1250 S 18TH ST
## 359                                1800 N CALIFORNIA ST
## 360                                     301 MEMORIAL DR
## 361                                    726 MCFARLAND ST
## 362                                   75 BEEKMAN STREET
## 363                                  8111 S EMERSON AVE
## 364                                         200 HEMLOCK
## 365                                  1411 E 31ST STREET
## 366                                 901 EAST 5TH STREET
## 367                               2620 WEST FAIDLEY AVE
## 368                                  4440 W 95TH STREET
## 369                              14445 OLIVE VIEW DRIVE
## 370                              1111 W LA PALMA AVENUE
## 371                                  1717 HWY 59 BYPASS
## 372                                 600 SOMERSET AVENUE
## 373                                         801 E SIOUX
## 374                                225 N JACKSON AVENUE
## 375                                     34700 VALLEY RD
## 376                                       2200 STATE ST
## 377                            24276 166TH AIRPORT ROAD
## 378                          1333 SAM HOUSTON BOULEVARD
## 379                                 1700 CERRILLOS ROAD
## 380                                   335 SE 8TH AVENUE
## 381                                  200 HOSPITAL DRIVE
## 382                                700 CHILDREN'S DRIVE
## 383                                 11801 SOUTH FREEWAY
## 384                            11878 AVENUE OF INDUSTRY
## 385                                 7487 S STATE RD 121
## 386                         14101 PARKWAY COMMONS DRIVE
## 387                       10666 NORTH TORREY PINES ROAD
## 388                               1815 WISCONSIN AVENUE
## 389                                     8300 W 38TH AVE
## 390                             1000 FIRST STREET NORTH
## 391                                7201 N UNIVERSITY DR
## 392                         1045 WEST STEPHENSON STREET
## 393                                   1360 BRICKYARD RD
## 394                                        620 E MONROE
## 395                             19829 NORTH 27TH AVENUE
## 396                                4501 SAND CREEK ROAD
## 397                                      108 6TH AVENUE
## 398                                  1301 S MAIN STREET
## 399                            711 CHESTERFIELD HIGHWAY
## 400                                         921 GESSNER
## 401                             1407 WEST STASSNEY LANE
## 402                                  721 E COURT STREET
## 403                            BO MONACILLO CARR NUM 22
## 404              4301 WEST MARKHAM STREET MAIL SLOT 612
## 405                                     6300 BEACH BLVD
## 406                                   124 S MEMORIAL DR
## 407                                   2611 WAYNE AVENUE
## 408                                      101 S MAJOR ST
## 409                                  700 SOUTH J STREET
## 410                              6501 NORTH 19TH AVENUE
## 411                                 7600 CARROLL AVENUE
## 412                                  1650 COWLES STREET
## 413                                   1600 HOSPITAL WAY
## 414                       3181 SW SAM JACKSON PARK ROAD
## 415                                 701 MCCLINTIC DRIVE
## 416                              455 ST MICHAEL'S DRIVE
## 417                              2200 WEST BROAD STREET
## 418                              610 WEST JEROME AVENUE
## 419                               1001 PROVIDENCE DRIVE
## 420                                    371 DE DIEGO AVE
## 421                                      9201 PINECROFT
## 422                            1409 EAST LAKE MEAD BLVD
## 423                                      500 W BROADWAY
## 424                        5555 CONNER AVENUE, SUITE 3N
## 425                                  1114 W MADISON AVE
## 426                                    2520 E DUPONT RD
## 427                                       349 REID ROAD
## 428                                    280 MAPLE STREET
## 429                            1002 EAST MADISON STREET
## 430                          400 NE MOTHER JOSEPH PLACE
## 431                              4800 FRIENDSHIP AVENUE
## 432                                  200 HEALTH CARE DR
## 433                                      100 KENYON AVE
## 434                           101 E VALENCIA MESA DRIVE
## 435                                    215 E 8TH STREET
## 436                                   1100 ALLIED DRIVE
## 437                                  603 SOUTH CHESTNUT
## 438                         3600 WEST CUMBERLAND AVENUE
## 439                                  1541 KINGS HIGHWAY
## 440                                    656 STATE STREET
## 441                                  209 HEALTH PARK DR
## 442                                   1001 E JOHNSON ST
## 443                             10 JOHN KISSINGER DRIVE
## 444                                    1700 MEDICAL WAY
## 445                              214 PEACH ORCHARD ROAD
## 446                              2700 WAYNE MEMORIAL DR
## 447                                       5801 BREMO RD
## 448                           4075 OLD WESTERN ROW ROAD
## 449                               801 WEST MAPLE STREET
## 450                                      211 4TH STREET
## 451                                  44 VERSAILLES BLVD
## 452                      1101 MOULTON AND PARSONS DRIVE
## 453                         900 NORTH WASHINGTON STREET
## 454                                   147 GETTYS STREET
## 455                                  6901 NORTH 72ND ST
## 456                               1509 E WILSON TERRACE
## 457                                          708 8TH ST
## 458                                   4315 DIPLOMACY DR
## 459                                1555 N BARRINGTON RD
## 460                               750 EAST ADAMS STREET
## 461                                      1910 SOUTH AVE
## 462                             1301 WONDER WORLD DRIVE
## 463                                  200 MEMORIAL DRIVE
## 464                                   5515 PEACH STREET
## 465                                    444 BRUCE STREET
## 466                        1018 SIXTH AVENUE PO BOX 997
## 467                                    110 IRVING ST NW
## 468                                     214 KING STREET
## 469                                      407 S WHITE ST
## 470                               1600 WEST 40TH AVENUE
## 471                                   333 BORTHWICK AVE
## 472                                    1280 CHANDLER DR
## 473                                    6200 W PARKER RD
## 474                                   171 FAIRVIEW ROAD
## 475                                  3160 GENEVA STREET
## 476                         106 PARK DRIVE- PO DRAWER Z
## 477                                  100 SENTARA CIRCLE
## 478                                       1401 W 5TH ST
## 479                                          726 4TH ST
## 480                                5255 LOUGHBORO RD NW
## 481                                   600 S PINE STREET
## 482                                    900 ILLINOIS AVE
## 483                                     300 PINELLAS ST
## 484                              230 EAST RIDGEWOOD AVE
## 485                              2121 SANTA MONICA BLVD
## 486                                    1001 WEST STREET
## 487                              819 NORTH FIRST STREET
## 488                                    1575 BEAM AVENUE
## 489                                350 WEST THOMAS ROAD
## 490                                   1421 OAKDALE ROAD
## 491                                      900 E BROADWAY
## 492                              9100 BABCOCK BOULEVARD
## 493                                 500 E MARKET STREET
## 494                                   2375 E PRATER WAY
## 495                            301 UNIVERSITY BOULEVARD
## 496                                   101 HOSPITAL ROAD
## 497                                255 LAFAYETTE AVENUE
## 498                                 101 WEST 8TH AVENUE
## 499                                     224 PARK AVENUE
## 500                            709 NORTH LINCOLN AVENUE
## 501                                   51 NORTH ROUTE 9W
## 502                                    4502 HIGHWAY 951
## 503                                     2905 3RD AVE SE
## 504                                    5 GARRETT AVENUE
## 505                                  200 FAIRMAN STREET
## 506                             2170 EAST HARMON AVENUE
## 507                         17720 CORPORATE WOODS DRIVE
## 508                                   901 WEST HAMILTON
## 509                                       525 OREGON ST
## 510                              1950 MOUNTAIN VIEW AVE
## 511                                       915 4TH ST NW
## 512                                   300 PASTEUR DRIVE
## 513                              10123 SE MARKET STREET
## 514                           400 NORTH PLEASANT AVENUE
## 515                                501 VAN BUREN STREET
## 516                                   464 LINDEN AVENUE
## 517                                 201 GREENBRIAR BLVD
## 518                                     300 MAIN STREET
## 519                                     97 WEST PARKWAY
## 520                                         1015 BOWLES
## 521                                     130 HAYS STREET
## 522                               517 NORTH MAIN STREET
## 523                                 18 EAST LAUREL ROAD
## 524                                742 MIDDLECREEK ROAD
## 525                    P O BOX 948/427 HIGHWAY 51 NORTH
## 526                                500 UNIVERSITY DRIVE
## 527                               3214 EAST RACE AVENUE
## 528                                   1950 ASPEN AVENUE
## 529                                   3601 CALAIS DRIVE
## 530                                   1035-116TH AVE NE
## 531                                   CHEYENNE & APACHE
## 532                                   415 N MAIN STREET
## 533                                W3985 COUNTY ROAD NN
## 534                                509 BRIGHT LEAF BLVD
## 535                           238 SOUTH CONGRESS STREET
## 536                                       350 BOULEVARD
## 537                           355 NEW SHACKLE ISLAND RD
## 538                            11130 PARKVIEW CIRCLE DR
## 539                                    3330 LOMITA BLVD
## 540                                      1000 S MAIN ST
## 541                                 3865 JACKSON STREET
## 542                                        300 W 5TH ST
## 543                                135 LAFAYETTE AVENUE
## 544                                  1133 W SYCAMORE ST
## 545                            1601 WEST ST MARY'S ROAD
## 546                             27700 MEDICAL CENTER RD
## 547                              3001 BROADMOOR BLVD NE
## 548                       LAUREL AVE SANTA JUANITA #100
## 549                                    1701 S CREASY LN
## 550                                207 WEST LEGION ROAD
## 551                                     ONE CAPITAL WAY
## 552                         110 MEMORIAL HOSPITAL DRIVE
## 553                  27700 MEDICAL CENTER RD, 5TH FLOOR
## 554                            1003 US HIGHWAY 64 NORTH
## 555                                   4500 SAN PABLO RD
## 556                                   413 LILLY ROAD NE
## 557                                    415 SIXTH STREET
## 558                525 BRANSON LANDING BLVD, PO BOX 650
## 559                            555 E CHEVES ST BOX 8700
## 560                            ONE GUSTAVE L LEVY PLACE
## 561                                 3001 SILLECT AVENUE
## 562                              1125 MARGUERITE STREET
## 563                                  601 EAST SECOND ST
## 564                              1011 BALDWIN PARK BLVD
## 565                               904 WOLLARD BOULEVARD
## 566                              2901 SQUALICUM PARKWAY
## 567                                    300 CANAL STREET
## 568                               3741 WEST 12600 SOUTH
## 569                                    60 EASTER AVENUE
## 570                                        707 GRANT ST
## 571                                 2700 E BROAD STREET
## 572                                    4250 HOSPITAL DR
## 573                               4050 COON RAPIDS BLVD
## 574                            200 EAST CHESTNUT STREET
## 575                                     115 MILL STREET
## 576                                   601 E 15TH STREET
## 577                   2175 ROSALINE AVE, CLAIRMONT HGTS
## 578                                      4002 VISTA WAY
## 579                              2777 SPEISSEGGER DRIVE
## 580                                   3800 RESERVOIR RD
## 581                                 911 WEST 5TH AVENUE
## 582                           11116 MEDICAL CAMPUS ROAD
## 583                                     5755 CEDAR LANE
## 584                                 9300 WEST SUNSET RD
## 585                                   835 S BISHOP BLVD
## 586                                    1102 N PINE ROAD
## 587                                  158 HOSPITAL DRIVE
## 588                              179 NORTH BROAD STREET
## 589                                 49 OLD HICKORY BLVD
## 590                             435 EAST HENRIETTA ROAD
## 591                              1000 SOUTH BECKHAM AVE
## 592                                      610 N OHIO AVE
## 593                              220 WEST SECOND STREET
## 594                                 1451 HILLSIDE DRIVE
## 595                                  640 S STATE STREET
## 596                                      501 AIRPORT RD
## 597                        2095 HENRY TECKLENBURG DRIVE
## 598                             1100 GRAMPIAN BOULEVARD
## 599                                   164 W 13TH STREET
## 600                                350 HAWTHORNE AVENUE
## 601                                202-206 MILBY STREET
## 602                              6019 WALNUT GROVE ROAD
## 603                                 1441 FLORIDA AVENUE
## 604                                5215 HOLY CROSS PKWY
## 605                                       801 SENECA ST
## 606                                     1560 SUMRALL RD
## 607                                  1500 SAND POINT RD
## 608                                 15615 POMERADO ROAD
## 609                      2600 REDONDO AVENUE, SUITE 500
## 610                                     1100 S 10TH AVE
## 611                           225 PENN AVENUE 2ND FLOOR
## 612                                     401 N HOOPER ST
## 613                             5000 KENTUCKY ROUTE 321
## 614                                 1141 HOSPITAL DR NW
## 615                             5400 SOUTH RAINBOW BLVD
## 616                                    520 E 6TH STREET
## 617                             1120 CYPRESS STATION DR
## 618                                  300 1ST CAPITOL DR
## 619                                221 N E GLEN OAK AVE
## 620                       P O BOX 1990, 10 EAST 31ST ST
## 621                                       946 EAST REED
## 622                                  309 JACKSON STREET
## 623                                     30901 PALMER RD
## 624                                  150 NORTH 200 WEST
## 625                                      2020 59TH ST W
## 626                                       2131 W 3RD ST
## 627                                  306 STANAFORD ROAD
## 628                             4620 EAST BASELINE ROAD
## 629                                    601 E ROLLINS ST
## 630                   400 WEST INTERSTATE 635 SUITE 101
## 631                                  200 NORTH 400 EAST
## 632                                 221 MAHALANI STREET
## 633                                      2 COULTER ROAD
## 634                           2500 SOUTH WOODWORTH LOOP
## 635                                    3500 ARENDELL ST
## 636                                     208 PIERSON AVE
## 637                                     610 SPARTA ROAD
## 638                                 110 WEST 4TH STREET
## 639                            347 NORTH KUAKINI STREET
## 640                                     2525 HOLLY HALL
## 641                                   326 ASBURY AVENUE
## 642                           500 E POTTAWATAMIE STREET
## 643                                     65 JAMES STREET
## 644                                1822 MULBERRY STREET
## 645                                 600 N WASHINGTON ST
## 646                            8311 WEST ROOSEVELT ROAD
## 647                                  900 11TH STREET SE
## 648                                       2321 STOUT RD
## 649                  600 E INTERSTATE 20     PO BOX 640
## 650                              3421 WEST NINTH STREET
## 651                                 5500 VERULAM AVENUE
## 652                                425 NORTH ELM STREET
## 653                                   680 CENTER STREET
## 654                                      80 HIGHLAND ST
## 655                              2000 DAN PROCTOR DRIVE
## 656                                  2875 NW STUCKI AVE
## 657                               110 WEST SIXTH STREET
## 658                                  W 800 FIFTH AVENUE
## 659                                  1117 SPRING STREET
## 660                                4445 MAGNOLIA AVENUE
## 661                             10 ALICE PECK DAY DRIVE
## 662                                1210 S OLD DIXIE HWY
## 663                                  18500 KATY FREEWAY
## 664                               315 NORTH 14TH AVENUE
## 665                                     2900 EUREKA WAY
## 666                                  901 WESTLAKE DRIVE
## 667                                   1801 HICKMAN ROAD
## 668                 5680 FRISCO SQUARE BLVD, SUITE 3000
## 669                               363 SUNRISE BOULEVARD
## 670                                  757 WESTWOOD PLAZA
## 671                                1024 CENTRAL PARK DR
## 672                                    7031 SW 62ND AVE
## 673                                       520 ROSE LANE
## 674                                    115 PORTER DRIVE
## 675                              1304 W BOBO NEWSOM HWY
## 676                                      540 THE RIALTO
## 677                          300 KINGWOOD MEDICAL DRIVE
## 678                            1324 LAKELAND HILLS BLVD
## 679                              201 - 16TH AVENUE EAST
## 680                                850 RIVERVIEW AVENUE
## 681                                  1000 GREENLEY ROAD
## 682                                  8401 MARKET STREET
## 683                                     1423 SEVENTH ST
## 684                                   840 WALNUT STREET
## 685                                    2901 W SWANN AVE
## 686                                        525 N FOSTER
## 687                                     703 N MCEWAN ST
## 688                           13101 MEMORIAL SPRINGS CT
## 689                                870 WEST MAIN STREET
## 690                                     159 HARTLEY WAY
## 691                                2111 EXCHANGE STREET
## 692                                801 SOUTH WASHINGTON
## 693                                  1400 BRADEN STREET
## 694                                   6900 N DURANGO DR
## 695                               320 EAST NORTH AVENUE
## 696                    5656 BEE CAVES ROAD, SUITE M-302
## 697                                     105 WALL STREET
## 698                                    2770 MAIN STREET
## 699                                     211 PARK STREET
## 700                                        777 AVENUE H
## 701                              1301 NORTH MAIN STREET
## 702                                      300 56TH ST SE
## 703                                     1 KAMANI STREET
## 704                                10000 TELEGRAPH ROAD
## 705                                         924 HOWE ST
## 706                                880 GREENLAWN AVENUE
## 707                                     5001 W HARDY ST
## 708                                224 EAST MAIN STREET
## 709                          3200 NORTH TARRANT PARKWAY
## 710                            509 NORTH MADISON STREET
## 711                                 6640 KANIKSU STREET
## 712                                 13855 E 14TH STREET
## 713                            2305 WEST GEORGIA STREET
## 714                                     700 NORTH HUSER
## 715                                   56 FRANKLIN STEET
## 716                                      916 MYRTLE AVE
## 717                           118 SOUTH MOUNTAIN AVENUE
## 718                                 8201 W BROWARD BLVD
## 719                 800 STE GENEVIEVE DRIVE, PO BOX 468
## 720                                430 NORTH MONITOR ST
## 721                                     420 N CENTER ST
## 722                                         800 CLAY ST
## 723                            1310 SOUTHERN AVENUE  SE
## 724                                     115 CASS AVENUE
## 725                             1001 EAST SECOND STREET
## 726                                     5200 NE 2ND AVE
## 727                              2735 SILVER CREEK ROAD
## 728                                   2701 US HWY 271 N
## 729                            2222 NORTH NEVADA AVENUE
## 730                                  6020 W PARKER ROAD
## 731                                   300 HALKET STREET
## 732                               801 EAST WHEELER ROAD
## 733                              201 WEST AVALON AVENUE
## 734                             3520 WEST OXFORD AVENUE
## 735                        163 SOUTH TALLAHASSEE STREET
## 736                                 805 FRIENDSHIP ROAD
## 737                                315 WEST 15TH STREET
## 738                                  515 QUARTER STREET
## 739                                   1224 TROTWOOD AVE
## 740                               140 OLD ORANGEBURG RD
## 741                            6262 SOUTH SHERIDAN ROAD
## 742                         631 NORTH BROAD STREET EXT.
## 743                       11234 ANDERSON STREET SUITE A
## 744                                     2463 SOUTH M-30
## 745                               5351 DELMAR BOULEVARD
## 746                                   2025 MORSE AVENUE
## 747                                 100 MCGREGOR STREET
## 748                            1001 SOUTH GEORGE STREET
## 749                                    1200 S FIRST AVE
## 750                                      300 HEALTH WAY
## 751                       350 POPLAR DRIVE  PO BOX 3060
## 752                               3000 ARLINGTON AVENUE
## 753                                    1135 CARTHAGE ST
## 754                                   212 S SULLIVAN ST
## 755                           400 SOUTH SANTA FE AVENUE
## 756                              384 SE COMBS FLAT ROAD
## 757                                  23845  MCBEAN PKWY
## 758                                    1800 BYPASS ROAD
## 759                              201 SOUTH GARNETT ROAD
## 760                                     2015 JACKSON ST
## 761                                       707 ROLAND ST
## 762                            10 WAYMAN LANE, PO BOX 8
## 763                                 345 BLACKSTONE BLVD
## 764                                  324 DOOLITTLE ROAD
## 765                                        1225 LAKE ST
## 766                          2718 SQUIRREL HOLLOW DRIVE
## 767                                 169 RIVERSIDE DRIVE
## 768                                4715 NORTH 15 STREET
## 769               #4007 EST DIAMOND RUBY, CHRISTIANSTED
## 770             353 FAIRMONT BLVD  POST OFFICE BOX 6000
## 771                                   1015 MICHIGAN AVE
## 772                           361 ALEXANDER SPRING ROAD
## 773                                      100 AIRPORT RD
## 774                                 2701 HOSPITAL DRIVE
## 775                                      4500 W 69TH ST
## 776                                330 BROOKLINE AVENUE
## 777                                     900 LINCOLN AVE
## 778                                  1420 S CENTRAL AVE
## 779                     5555 WEST LAS POSITAS BOULEVARD
## 780                                  1230 BAXTER STREET
## 781                                   700 W. 7TH STREET
## 782                                   611 ST JOSEPH AVE
## 783                                427 EVERGREEN STREET
## 784                                    2701 DEKALB PIKE
## 785                                      243 ELM STREET
## 786                            325 SOUTH BELMONT STREET
## 787                                 1000 LINCOLN STREET
## 788                                   295 VARNUM AVENUE
## 789                        1800 EAST FLORENCE BOULEVARD
## 790                            1100 SOUTH MEDICAL DRIVE
## 791                                   105 MARY'S AVENUE
## 792                                     100 SOUTH ELLIS
## 793                                      3501 MILLS AVE
## 794                                     401 EAST SPRUCE
## 795                           24451 HEALTH CENTER DRIVE
## 796                               7700 UNIVERSITY DRIVE
## 797                    2408 EAST 81ST STREET, SUITE 300
## 798                                   613 VICTORIA LANE
## 799                                     2500 GRANT ROAD
## 800                                400 EAST 10TH STREET
## 801                                 200 MEMORIAL AVENUE
## 802                                 1315 ROBERTS STREET
## 803                              315 CAMINO DEL REMEDIO
## 804                                 267 NORTH CANYON DR
## 805                                       2100 HWY 61 N
## 806                               258 N RON MCNAIR BLVD
## 807                                 681 CLARKSON AVENUE
## 808                                    630 EATON AVENUE
## 809                                  100 S BLISS AVENUE
## 810                                  1401 10TH AVE WEST
## 811                                  36500 AURORA DRIVE
## 812                              575 NORTH RIVER STREET
## 813                                303 N JACKSON STREET
## 814                             367 CLEAR CREEK PARKWAY
## 815                                   101 DUDLEY STREET
## 816                          1081 NORTH CHINA LAKE BLVD
## 817                                    601 ROXBURY ROAD
## 818                                    100 GRAND STREET
## 819                               98-1079 MOANALUA ROAD
## 820                              311 SOUTH CLARK STREET
## 821                              115 WEST SILVER STREET
## 822                             501 SOUTH POPLAR STREET
## 823                                         109 PLUM ST
## 824                                  1600 SOUTH 48TH ST
## 825                                      602 N 6TH W ST
## 826                                    465 W PUTNAM AVE
## 827                                269 SOUTH CANDY LANE
## 828                                  1200 S COLUMBIA RD
## 829                             2430 WEST PIERCE STREET
## 830                                 400 HIGHLAND AVENUE
## 831                                   58 CARROLL STREET
## 832                              1401 SOUTH PARK STREET
## 833                                1007 GOODYEAR AVENUE
## 834                                        1600 23RD ST
## 835                                        16 W MAIN ST
## 836                                 380 WOODS COVE ROAD
## 837              BLDG 29, 30 BARRETT BLDG, 100 H STREET
## 838                                  82-68 164TH STREET
## 839                                  2845 GREENBRIER RD
## 840                                 9301 CONNECTICUT DR
## 841                                    225 FALCON DRIVE
## 842                                 3400 LINCOLN AVENUE
## 843                                       710 N 11TH ST
## 844                                       4300 ALTON RD
## 845                                   130 N HOSPITAL DR
## 846                                     406 EAST ELM ST
## 847                                     810 12TH STREET
## 848                               1200 E TREMONT STREET
## 849                          2026 WEST UNIVERSITY DRIVE
## 850                           2850  E STATE HIGHWAY 114
## 851                                900 SOUTH BRYAN ROAD
## 852                                1000 BOWER HILL ROAD
## 853                                    1338 PHAY AVENUE
## 854                                  908 W 4TH NORTH ST
## 855                             501 SOUTH  UNION AVENUE
## 856                                  2975 N SYCAMORE DR
## 857                       1 NORTH AVENUE N  PO BOX 1117
## 858                               3500 W WHEATLAND ROAD
## 859                                 651 CATHEDRAL DRIVE
## 860                             7531 S STONY ISLAND AVE
## 861                               1400 WEST MAIN STREET
## 862                                    603 ROSARY DRIVE
## 863                                       401 N MAIN ST
## 864                            7808 CLODUS FIELDS DRIVE
## 865                                   2255 STURGIS ROAD
## 866                                    809 82ND PARKWAY
## 867                                      254 EASTON AVE
## 868                                    1101 NOTT STREET
## 869                                   1316 E SEVENTH ST
## 870                                 4500 MEMORIAL DRIVE
## 871                                    810 W HIGHWAY 71
## 872                                      1000 E MAIN ST
## 873                              551 HILL COUNTRY DRIVE
## 874                 601 DR MARTIN LUTHER KING JR AVE NE
## 875                           18101 PRINCE PHILIP DRIVE
## 876                       250 BON AIR ROAD, PO BOX 8010
## 877                                    16303 GRANT ROAD
## 878                               451 WEST LOCKE STREET
## 879                                    150 BROAD STREET
## 880                            23625 W R HOLMAN HIGHWAY
## 881                                  636 DEL PRADO BLVD
## 882                               1001 STERIGERE STREET
## 883                          15225 HEALTHCOTE BOULEVARD
## 884                                 1395 S PINELLAS AVE
## 885                            60 MEMORIAL MEDICAL PKWY
## 886                           2801 MEDICAL CENTER DRIVE
## 887                                  1501 S  COULTER ST
## 888                                 2204 WILBORN AVENUE
## 889                           1201 PLEASANT VALLEY ROAD
## 890                           535 SOUTH HUMBOLDT STREET
## 891                            801 EAST WILLIAMS AVENUE
## 892                                 26520 CACTUS AVENUE
## 893                                  250 HOSPITAL PLACE
## 894                                  1700 S TAMIAMI TRL
## 895                             2211 LOMAS BOULEVARD NE
## 896                                161 RIVER OAKS DRIVE
## 897                                 200 FLEETWOOD DRIVE
## 898                                302 GOBBLERS KNOB RD
## 899                                      122 PINNELL ST
## 900                                      2530 DEBARR RD
## 901                                    615 N BONITA AVE
## 902                                 2350 HOSPITAL DRIVE
## 903                                        10201 HWY 16
## 904                                  1418 COLLEGE DRIVE
## 905                                 451 CLARKSON AVENUE
## 906                                910 EAST 20TH STREET
## 907                            15790 PAUL VEGA MD DRIVE
## 908                                    23500 US HWY 160
## 909                                  2800 MACGREGOR WAY
## 910                             102 WEST CONECUH AVENUE
## 911                                    1911 JOHNSON AVE
## 912                 CARRETERA 129 KM.1 AVENIDA SAN LUIS
## 913                                  2525 KINGS HIGHWAY
## 914                                       910 COOK ROAD
## 915                        417 FIRST AVENUE, PO BOX 365
## 916                                 29101 HOSPITAL ROAD
## 917                                    204 GROVE AVENUE
## 918                                  23900 KATY FREEWAY
## 919                                 1601 NEWCASTLE ROAD
## 920                                   7601 PRESTON ROAD
## 921                                  215 CHISHOLM TRAIL
## 922                              1300 EAST FIFTH AVENUE
## 923                           1000 MEDICAL CENTER DRIVE
## 924                                       50 N PERRY ST
## 925                                      7050 GALL BLVD
## 926                                 3100 OAK GROVE ROAD
## 927                                    7101 JAHNKE ROAD
## 928                               100 HEALTH PARK DRIVE
## 929                                     2525 N BROADWAY
## 930                                 7500 HOSPITAL DRIVE
## 931                                       14TH & OREGON
## 932                             6350 SOUTH MAPLE AVENUE
## 933                                  6621 FANNIN STREET
## 934                                       3001 AVENUE A
## 935                                        3 ERIE COURT
## 936                                23700 CAMINO DEL SOL
## 937                          18901 LAKE SHORE BOULEVARD
## 938                                    5757 N DIXIE HWY
## 939                                 10101 DOUBLE R BLVD
## 940                                       400 S 43RD ST
## 941                     4600 AMBASSADOR CAFFERY PARKWAY
## 942                            1600 PRAIRIE CENTER PKWY
## 943                                 5483 MOORETOWN ROAD
## 944                                  701 10TH STREET SE
## 945                                1101 VAN NESS AVENUE
## 946                                     101 HARRIS ROAD
## 947                                      801 EAST THIRD
## 948                                 15 DR BASORA STREET
## 949                                 1310 PUNAHOU STREET
## 950                                  9500 EUCLID AVENUE
## 951                               800 WASHINGTON STREET
## 952                            404 SOUTH BRADLEY STREET
## 953                              501 NORTH STATE STREET
## 954                                      805 W CEDAR ST
## 955                                    1850 CHADWICK DR
## 956                                   602 N ACADIA ROAD
## 957                                      1 AMALIA DRIVE
## 958                                205 S HANOVER STREET
## 959                                    8383 N DAVIS HWY
## 960                                     250 PARK STREET
## 961                                    9400 NO NAME UNO
## 962                                  1200 COLLEGE DRIVE
## 963                                  102 E HOLME STREET
## 964                                    107 SWIFT STREET
## 965                                      900 23RD ST NW
## 966                              1800 W CHARLESTON BLVD
## 967                       16000 JOHNSTON MEMORIAL DRIVE
## 968                               1730 WEST 25TH STREET
## 969                 2010 BROOKWOOD MEDICAL CENTER DRIVE
## 970                               1600 EAST HIGH STREET
## 971                            300 SOUTH PRESTON STREET
## 972                                 1155 5TH STREET, SE
## 973                           3136 SOUTH ST LANDRY ROAD
## 974                                11937 US HIGHWAY 271
## 975                               2106 EAST MAIN STREET
## 976                                   2200 KERNAN DRIVE
## 977                                  230 HOSPITAL PLAZA
## 978                                     5974 PENTZ ROAD
## 979                                   809 NE HIGHWAY 60
## 980                                   23515 HIGHWAY 190
## 981                                        747 BROADWAY
## 982                                2310 HIGHLAND AVENUE
## 983                                    501 EAST MAIN ST
## 984                                        1000 36TH ST
## 985                                  6780 MAYFIELD ROAD
## 986                                 3229 BURNETT AVENUE
## 987                            995 9TH AVENUE SOUTHWEST
## 988                                199 WEST MAIN STREET
## 989                                   1401 MORRIS DRIVE
## 990                                  322 COLEMAN STREET
## 991                                     939 CAROLINE ST
## 992                                    372 SOUTH 9TH ST
## 993                              7401 SOUTH MAIN STREET
## 994                         4220 HARDING RD, PO BOX 380
## 995                                 1200 MEMORIAL DRIVE
## 996                                      6501 COYLE AVE
## 997  CARR ESTATAL 14 INTERIOR SARGENTO GERARDO SANTIAGO
## 998                                  200 LOTHROP STREET
## 999                               8200 WALNUT HILL LANE
## 1000                                709 BREEDLOVE DRIVE
## 1001         5400 GIBSON BOULEVARD SE, 4TH FLOOR BOX# 8
## 1002                P O BOX 626, 1313 NORTH CHEYENNE ST
## 1003                                     2800 W 95TH ST
## 1004                                      115 VIVIAN ST
## 1005                            621 SOUTH FOURTH STREET
## 1006                          2105 EAST SOUTH BOULEVARD
## 1007                                    601 W SECOND ST
## 1008                          1211 MEDICAL CENTER DRIVE
## 1009     10102 COUNTRY CLUB ROAD,  POST OFFICE BOX 1722
## 1010                     701 PRINCETON AVENUE SOUTHWEST
## 1011                            2900 CLAY EDWARDS DRIVE
## 1012                                4200 N OAK PARK AVE
## 1013                                     300 RANDALL RD
## 1014                                2615 CHESTER AVENUE
## 1015                                  325 E BREWSTER ST
## 1016                                  100 W 16TH STREET
## 1017                                 127 SOUTH BROADWAY
## 1018                               2801 ATLANTIC AVENUE
## 1019                                2408 BROADMOOR BLVD
## 1020                          3873 NORTH PARKVIEW DRIVE
## 1021                                 3300 TILLMAN DRIVE
## 1022                                  1265 E COLLEGE ST
## 1023                         3801 SOUTH NATIONAL AVENUE
## 1024                            1111 EAST MCDOWELL ROAD
## 1025                              4701 WEST PARK AVENUE
## 1026                              630 SOUTH MAIN STREET
## 1027                                 900 JOHNSON STREET
## 1028                                       4023 REAS LN
## 1029                              1711 W WHEELER AVENUE
## 1030                                      303 S MAIN ST
## 1031                                      1100 MAGELLAN
## 1032                                1530 N LIMESTONE ST
## 1033                            999 SAN BERNARDINO ROAD
## 1034                                  620 SKYLINE DRIVE
## 1035                                212 EAST 8TH STREET
## 1036                   10105 PARK ROW CIRCLE, SUITE 250
## 1037                             #3 EAST BENJAMIN DRIVE
## 1038                            1202 EAST LOCUST STREET
## 1039          AVE. PEDRO ALBIZU CAMPOS URB. LA HACIENDA
## 1040                                     1100 REID PKWY
## 1041                                      1500 S SUNSET
## 1042                        815 SOUTHEAST SECOND STREET
## 1043                                1105 EARL FRYE BLVD
## 1044                               840 NORTH OAK AVENUE
## 1045                                 2201 S STERLING ST
## 1046                       5665 PEACHTREE DUNWOODY ROAD
## 1047                                    2000 NEUSE BLVD
## 1048                             2545 WEST QUAIL AVENUE
## 1049                                      1800 E COPLIN
## 1050                                3150 GERSHWIN DRIVE
## 1051                                   2927 DEMERE ROAD
## 1052                                         870 S MAIN
## 1053                               1000 MONTAUK HIGHWAY
## 1054                                1102 ST MARY'S ROAD
## 1055                               3186 S MARYLAND PKWY
## 1056                                       160 ALLEN ST
## 1057                          1400 PELHAM PARKWAY SOUTH
## 1058                                2525 S MICHIGAN AVE
## 1059                            12601 GARDEN GROVE BLVD
## 1060                                      1020 S 4TH ST
## 1061                                      497 WEST LOTT
## 1062                            210 MARIE LANGDON DRIVE
## 1063                                2400 ROUND ROCK AVE
## 1064                                 4101 TORRANCE BLVD
## 1065                               55 LAKE AVENUE NORTH
## 1066                                    6600 MADISON ST
## 1067                       275 WEST MACARTHUR BOULEVARD
## 1068                                  606 EAST GARFIELD
## 1069                                    ONE ATWELL ROAD
## 1070                                2100 BAPTISTE DRIVE
## 1071                              530 NEW BRUNSWICK AVE
## 1072                             1636 HUNTERS GLEN ROAD
## 1073                                   631 RB WILSON DR
## 1074                             7850 VISTA HILL AVENUE
## 1075                                    304 S DAUGHERTY
## 1076                              321 BYPASS PO BOX 620
## 1077                                  28062 BAXTER ROAD
## 1078                              1320 MAPLEWOOD AVENUE
## 1079                                   1155 MILL STREET
## 1080                                  800 S FILLMORE ST
## 1081                                       200 AVE F NE
## 1082                             120 EAST HARRIS AVENUE
## 1083               1000 HEALTH CENTER DRIVE P O BOX 372
## 1084                                      801 S MAIN ST
## 1085                                   274 E CHICAGO ST
## 1086                                    1 MEDICAL PLAZA
## 1087                    P O BOX 836, 717 NORTH BROWN ST
## 1088                                  3401 LUDINGTON ST
## 1089                                15 MAPLE AVENUE -19
## 1090                                3802 SOUTH 700 EAST
## 1091                             230 NORTH BROAD STREET
## 1092                              4500 UTICA RIDGE ROAD
## 1093                      133 OLD ROAD TO 9 ACRE CORNER
## 1094                                      805 S OAKLAND
## 1095                                 66755 STATE STREET
## 1096                                 175 HOSPITAL DRIVE
## 1097                              240 SOUTH MAIN STREET
## 1098                                      222 PERRY HWY
## 1099                                     1144 N ROAD ST
## 1100                                1500 N. 28TH STREET
## 1101                                 976 NORTH BROADWAY
## 1102                                   104 LEGION DRIVE
## 1103                                         307 N MAIN
## 1104                                759 CHESTNUT STREET
## 1105                              800 E WASHINGTON BLVD
## 1106                                   823 GRAND AVENUE
## 1107                       AVE LAS CUMBRES ST 199KM 1 2
## 1108                                100  15TH NW STREET
## 1109                 2727 EAST LEMMON AVENUE BUILDING I
## 1110                            2201 HEMPSTEAD TURNPIKE
## 1111                                570 CHAUTAUQUA BLVD
## 1112                                  2801 GESSNER ROAD
## 1113                      24440 STONE SPRINGS BOULEVARD
## 1114                           1593 EAST POLSTON AVENUE
## 1115                                11111 SOUTH 84TH ST
## 1116                                13500 N MERIDIAN ST
## 1117                                    4015 22ND PLACE
## 1118                                280 MIDDLETOWN ROAD
## 1119                          310 SOUTH FALLS BOULEVARD
## 1120                          HIGHWAY 264, MILEPOST 388
## 1121                                600 WEST RIDGE ROAD
## 1122                                272 BENEDICT AVENUE
## 1123                                       520 S 7TH ST
## 1124                                   3130 SW 27TH AVE
## 1125                             3625 UNIVERSITY BLVD S
## 1126                                      955 RIBAUT RD
## 1127                                 1907 W SYCAMORE ST
## 1128                             11815 EDUCATION STREET
## 1129                             1200 JD ANDERSON DRIVE
## 1130                            1221 E MCPHERSON AVENUE
## 1131                              3500 HIGHWAY 17 NORTH
## 1132                                   176 PALISADE AVE
## 1133                          855 6TH STREET/PO BOX 661
## 1134                               9200 W WISCONSIN AVE
## 1135                            4700 ALLIANCE BOULEVARD
## 1136                               5700 EAST HIGHWAY 90
## 1137                                 562 WYOMING AVENUE
## 1138                                  8900 N KENDALL DR
## 1139                                4500 COLLEGE AVENUE
## 1140                         3130 NORTH COUNTY ROAD 25A
## 1141                           112 ST OLAF AVENUE SOUTH
## 1142                                   100 WELLNESS WAY
## 1143                                   1600 EUREKA ROAD
## 1144                                         PO BOX 287
## 1145                                        609 SE KENT
## 1146                     6818 AUSTIN CTR BLVD SUITE 100
## 1147                           203 4TH STREET NORTHWEST
## 1148                                         PO BOX 550
## 1149                                    989 ROBERT BLVD
## 1150                     900 EAST DUBLIN GRANVILLE ROAD
## 1151                                   4815 ALAMEDA AVE
## 1152                                 1350 W COVINA BLVD
## 1153                            11820 DESTINATION DRIVE
## 1154                             1200 CARL RAMERT DRIVE
## 1155                          710 CYPRESS CREEK PARKWAY
## 1156                              600 SOUTH AUSTIN ROAD
## 1157                         5555 WEST THUNDERBIRD ROAD
## 1158                               29 L V STABLER DRIVE
## 1159               2831 E PRESIDENT GEORGE BUSH HIGHWAY
## 1160                           701 EAST MARSHALL STREET
## 1161                             6161 W CHARLESTON BLVD
## 1162                                  555 NORTH 30TH ST
## 1163                               1900 SULLIVAN AVENUE
## 1164                               MEDICAL CENTER DRIVE
## 1165                             909 EAST SNYDER AVENUE
## 1166                                  403 BURKARTH ROAD
## 1167  ONE HOSPITAL ROAD, FIRST FL, WING 5,  PO BOX 1477
## 1168                                  160 EAST ERIE AVE
## 1169                               1207 S BAILEY STREET
## 1170                                2825 PARKLAWN DRIVE
## 1171                              710 NORTH 12TH STREET
## 1172            401 9TH AVENUE NW  POST OFFICE BOX 1210
## 1173                                 17400 ST LUKES WAY
## 1174                                   17772 BEACH BLVD
## 1175                                     511 NE 10TH ST
## 1176                              2 PROGRESS POINT PKWY
## 1177                                 1400 LOCUST STREET
## 1178                             14241 GRAND OAKS DRIVE
## 1179                         1960 HIGHWAY 247 CONNECTOR
## 1180                             1750 E. KEN PRATT BLVD
## 1181                               600 9TH AVENUE NORTH
## 1182                               1100 WEST STEWART DR
## 1183                                  106 BLANCA AVENUE
## 1184                            1000 ROLLING HILLS LANE
## 1185                 800 BEMIDJI AVENUE NORTH SUITE 200
## 1186                                  FRIENDSHIP STREET
## 1187                             201 CHESTNUT HILL ROAD
## 1188                                 201 CLIFTON STREET
## 1189                               1978 INDUSTRIAL BLVD
## 1190                                     8700 SUDLEY RD
## 1191                                   2525 DESALES AVE
## 1192                                 640 JACKSON STREET
## 1193                                 150 MEMORIAL DRIVE
## 1194                                  1201 RICKER DRIVE
## 1195                          6901 SOUTH OLYMPIA AVENUE
## 1196                                 1200 OLD YORK ROAD
## 1197             615 NORTH PROMENADE STREET,P O BOX 530
## 1198                                     110 REHILL AVE
## 1199                    8001 W 5TH  POST OFFICE BOX 556
## 1200                           1011 NORTH COOPER STREET
## 1201                           5315 MILLENIUM DRIVE, NW
## 1202                                    7400 ROPER LANE
## 1203                            67 & 100 TER HEUN DRIVE
## 1204                                   945 EAST ZERO ST
## 1205                       1000 EAST MOUNTAIN BOULEVARD
## 1206                             17550 EAST MAIN STREET
## 1207                              1002 SOUTH 4TH STREET
## 1208                                75 NEW SCOTLAND AVE
## 1209                                    250 PLEASANT ST
## 1210                                129 N WASHINGTON ST
## 1211                                   1823 COLLEGE AVE
## 1212                      14200 WEST CELEBRATE LIFE WAY
## 1213            1000 GREG KRUSCHEK AVENUE (P O BOX 966)
## 1214                              1901 N MACARTHUR BLVD
## 1215                              1 KISH HOSPITAL DRIVE
## 1216                              101 NORTH MAIN STREET
## 1217                                  1941 VIRGINIA AVE
## 1218                                     3237 S 16TH ST
## 1219                           1900 NORTH SUNRISE DRIVE
## 1220                                 4700 WATERS AVENUE
## 1221                                        1331 S A ST
## 1222                                 1253 NW CANAL BLVD
## 1223                                      100 PARK ROAD
## 1224                               1000 HARRINGTON BLVD
## 1225                                     178 HIGHWAY 24
## 1226                                8835 GERMANTOWN AVE
## 1227                              759 SOUTH MAIN STREET
## 1228                         200 KENNEDY MEMORIAL DRIVE
## 1229                                    260 26TH STREET
## 1230                                     10 SE FIFTH ST
## 1231                                  9522 HUEBNER ROAD
## 1232                           1310 WEST SEVENTH STREET
## 1233                              72 SOUTH STATE STREET
## 1234                           916 4TH AVENUE SOUTHWEST
## 1235                                1 ABRAHMS BOULEVARD
## 1236                           3555 CESAR CHAVEZ STREET
## 1237                                55 MEADOWLANDS PKWY
## 1238                          17201 INTERSTATE 45 SOUTH
## 1239                                  982 EAST COLUMBIA
## 1240                                300 COMMUNITY DRIVE
## 1241                               199 E WEBSTER STREET
## 1242                                 2471 LOUISIANA AVE
## 1243                           4777 EAST GALBRAITH ROAD
## 1244                                1401 FOUCHER STREET
## 1245                              1225 WARM SPRINGS AVE
## 1246                             1401 EAST STATE STREET
## 1247                             2202 FALSE RIVER DRIVE
## 1248                                  595 COUNTY AVENUE
## 1249                                 100 MICHIGAN ST NE
## 1250                                   21298 OLEAN BLVD
## 1251                                 227 MOUNTAIN DRIVE
## 1252                              1919 EAST THOMAS ROAD
## 1253                           8100 SOUTH WALKER BLDG C
## 1254                              905 SOUTH MAIN STREET
## 1255                             42084 STATE HIGHWAY 28
## 1256                                 111 COLCHESTER AVE
## 1257                              800 SOUTH MAIN STREET
## 1258                                1900 DON WICKHAM DR
## 1259                             6401 PATTERSON PARKWAY
## 1260                               3600 S HIGHLANDS AVE
## 1261                           2000 N OLD HICKORY TRAIL
## 1262                          1010 WEST COLUMBIA STREET
## 1263                                    1010 COLLEGE ST
## 1264                                 1200 E BRIN STREET
## 1265                               506 E SAN ANTONIO ST
## 1266                                    605 HOLDERRIETH
## 1267                                 800 CROSS RIVER RD
## 1268                             ONE SAINT JOSEPH DRIVE
## 1269                                 228 W MCDOWELL AVE
## 1270                                   1102 W MACARTHUR
## 1271                                   1120 15TH STREET
## 1272                     211 HIGHLAND AVENUE PO BOX 217
## 1273                              196 -198 NORTH STREET
## 1274                                   3316 HIGHWAY 280
## 1275                                      400 W 16TH ST
## 1276                                  23019 HIGHWAY 149
## 1277                                    601 PARK STREET
## 1278                           1068 WEST BALTIMORE PIKE
## 1279                                 191 IOWA BOULEVARD
## 1280                                  1 BROOKDALE PLAZA
## 1281                                    911 BYPASS ROAD
## 1282                         1700 SKYLYN DR PO BOX 3217
## 1283                                    201 14TH STREET
## 1284                             TWO CRESCENT PARK WEST
## 1285                                800 RIVERSIDE DRIVE
## 1286                                    6161 SOUTH YALE
## 1287                       1650 FOURTH STREET SOUTHEAST
## 1288                             701 THIRD AVENUE SOUTH
## 1289                             1100 EAST NORRIS DRIVE
## 1290                                130 BRENTWOOD DRIVE
## 1291                              3333 SPRINGHILL DRIVE
## 1292                            2201 S CLEAR CREEK ROAD
## 1293                             2 SOUTH HOSPITAL DRIVE
## 1294                                4201 WOODLAND DRIVE
## 1295                                 187 HOSPITAL DRIVE
## 1296                         9000 FRANKLIN SQUARE DRIVE
## 1297                                    13861 OLIO ROAD
## 1298                               1401 MEDICAL PARKWAY
## 1299                              100 WEST CROSS STREET
## 1300                              1500 SAN PABLO STREET
## 1301                                    330 LAKEVIEW DR
## 1302                        HEALTH SCIENCES CENTER SUNY
## 1303                                   325 ELEVENTH AVE
## 1304                                  27300 IRIS AVENUE
## 1305                              2525 GLENN HENDREN DR
## 1306                                  2911 BRUNSWICK RD
## 1307                                      2101 PEASE ST
## 1308                             34515 9TH AVENUE SOUTH
## 1309                             1501 EAST TENTH STREET
## 1310                                       6720 BERTNER
## 1311                        3916 BEN FRANKLIN BOULEVARD
## 1312                                1925 PACIFIC AVENUE
## 1313                                   189 PROUTY DRIVE
## 1314                                  430 E DIVISION ST
## 1315                                 81 HILLCREST DRIVE
## 1316                                420 FRANKLIN STREET
## 1317                            751 SOUTH BASCOM AVENUE
## 1318                                 163 HOSPITAL DRIVE
## 1319                            3401 NORTH BROAD STREET
## 1320                            5100 WEST  BROAD STREET
## 1321                                   811 S WASHINGTON
## 1322                                4300 E FLAMINGO AVE
## 1323                                   2033 MAIN STREET
## 1324                              181 WEST MEADOW DRIVE
## 1325                                   1000 BLYTHE BLVD
## 1326                                 ONE GENERAL STREET
## 1327                          602 SOUTHWEST 38TH STREET
## 1328                              2351 EAST 22ND STREET
## 1329                                     1233 N 30TH ST
## 1330                              17872 LINCOLN HIGHWAY
## 1331                          10501 GOLF COURSE ROAD NW
## 1332                                      9440 POPPY DR
## 1333                        28 CHICK STREET, PO BOX 850
## 1334                                        617 LIBERTY
## 1335                        FIRST AVENUE AT 16TH STREET
## 1336                             1275 NORTH HIGH STREET
## 1337                                 2301 HOLMES STREET
## 1338                          115 SUMMERS HOSPITAL ROAD
## 1339                                     1313 E 32ND ST
## 1340                               12850 METCALF AVENUE
## 1341                                    7911 DILEY ROAD
## 1342                                   99 MONTECILLO RD
## 1343                               136 W DIAMOND STREET
## 1344                                   4400 CLAYTON AVE
## 1345                                 1505 W SHERMAN AVE
## 1346                                 301 N ALEXANDER ST
## 1347                                       7000 UULA ST
## 1348                               800 WEST MAIN STREET
## 1349                                     506 3RD STREET
## 1350                                 1300 MICCOSUKEE RD
## 1351                                  55 HOSPITAL DRIVE
## 1352                               1304 FRANKLIN AVENUE
## 1353                         414 W JEFFERSON PO BOX 396
## 1354               317 MARTIN LUTHER KING JR W BOX 5299
## 1355                             250 EAST DUNLAP AVENUE
## 1356                                        29910 SR 56
## 1357                                   1300 SOUTH DRIVE
## 1358                             900 ROUND VALLEY DRIVE
## 1359                                   400 NORTHWOOD DR
## 1360                                2500 FAIRWAY STREET
## 1361                                     2400 E 17TH ST
## 1362                                   70 DUBOIS STREET
## 1363                              10800 MAGNOLIA AVENUE
## 1364                 304 TURNER MCCALL BLVD P O BOX 233
## 1365                                 821 NORTH BROADWAY
## 1366                               705 EAST FELT STREET
## 1367                           111  CLARA BARTON STREET
## 1368                       5121 SOUTH COTTONWOOD STREET
## 1369                                940 EAST 5TH STREET
## 1370                             1163 COUNTRY CLUB ROAD
## 1371                                 140 BURWELL STREET
## 1372                                  130 HIGHLAND PKWY
## 1373                                  3301 OVERSEAS HWY
## 1374                               300 MED TECH PARKWAY
## 1375                               3333 RIVERBEND DRIVE
## 1376                                 275 HOSPITAL DRIVE
## 1377                                    901 OLIVE DRIVE
## 1378                               118 NORTH 7TH AVENUE
## 1379                                   300 NORTH STREET
## 1380                         3100 SOUTHWEST 89TH STREET
## 1381                               710 WEST MAIN STREET
## 1382                                    1000 TRANCAS ST
## 1383                                  CARR 2 BO SABALOS
## 1384                             1316 SOUTH MAIN STREET
## 1385                              11711 LIVINGSTON ROAD
## 1386                             2055 NORTH MAIN STREET
## 1387                               6901 MEDICAL PARKWAY
## 1388                            100 EAST CARROLL AVENUE
## 1389                                  1900 COLUMBUS AVE
## 1390                          1220 JEFFERSON ST BOX 607
## 1391                                      2420 G STREET
## 1392                                    55 FRUIT STREET
## 1393                                   218A SUNSET ROAD
## 1394                                  1100 KENTUCKY AVE
## 1395                                         5445 AVE O
## 1396                                 2601 E CHAPMAN AVE
## 1397                                 1165 MONTGOMERY DR
## 1398                  3001 W MARTIN LUTHER KING JR BLVD
## 1399                                  750 HOSPITAL LOOP
## 1400                                    800 SHARE DRIVE
## 1401                            1341 NORTH CLARK STREET
## 1402                                1255 HILYARD STREET
## 1403                                   707 N WALDRIP ST
## 1404                                   2500 HARBOR BLVD
## 1405                             2600 HIGHWAY 118 NORTH
## 1406                                 330 N BROAD STREET
## 1407                               763 JOHNSONBURG ROAD
## 1408                                2101 N WATERMAN AVE
## 1409                               5016 S US HIGHWAY 75
## 1410                                    1615 MAPLE LANE
## 1411                                    745 POPLAR ROAD
## 1412                                  4900 HOUSTON ROAD
## 1413                              1001 EAST 18TH STREET
## 1414                              322 WEST SOUTH STREET
## 1415                                    250 S GRAND AVE
## 1416                                   521 ADAMS STREET
## 1417                        2000 WEST BETHANY HOME ROAD
## 1418                        201 EAST NICOLLET BOULEVARD
## 1419                                  173 MIDDLE STREET
## 1420                                       FERRELL ROAD
## 1421                                    1901 S SHADY ST
## 1422                                360 W RUDDLE STREET
## 1423                                  85 HERRICK STREET
## 1424                             725 SOUTH SHOOP AVENUE
## 1425                                2900 W OKLAHOMA AVE
## 1426                                     800 S MAIN AVE
## 1427                    P O BOX 810, 2101 BOX BUTTE AVE
## 1428                                  14850 ROSCOE BLVD
## 1429                                      2635 N 7TH ST
## 1430                                  4413 US HWY 331 S
## 1431                                    1116 MILLIS AVE
## 1432                         1256 MILITARY STREET SOUTH
## 1433                                        2401 W MAIN
## 1434                              832 SOUTH MAIN STREET
## 1435                             333 NORTH SMITH AVENUE
## 1436                             1000 SOUTH MAIN STREET
## 1437                       120 RIVERVIEW ST PO BOX 1209
## 1438                                3500 FRANCISCAN WAY
## 1439                               1545 ATLANTIC AVENUE
## 1440                               11401 S NORWALK BLVD
## 1441                                   3019 FALSTAFF RD
## 1442                              134 EAST REBOUND ROAD
## 1443                           160 NORTH MIDLAND AVENUE
## 1444                                   433 PLAZA STREET
## 1445                            6511 SPRINGBROOK AVENUE
## 1446                                  211 CHURCH STREET
## 1447                                700 WEST OAK STREET
## 1448                                 1629 E DIVISION ST
## 1449                                120 WEST 8TH STREET
## 1450                               112 MANSFIELD AVENUE
## 1451                                335 GLESSNER AVENUE
## 1452                         50 MEDICAL PARK EAST DRIVE
## 1453                            3501 KNICKERBOCKER ROAD
## 1454                                 2520 ELISHA AVENUE
## 1455                             400 W MINERAL KING AVE
## 1456                                    300 EAST 8TH ST
## 1457                                        600 MARY ST
## 1458                              1025 EAST 32ND STREET
## 1459                                    511 HOSPITAL ST
## 1460                                       308 HUDSPETH
## 1461                                 3020 CHILDRENS WAY
## 1462                                       13025 8TH ST
## 1463                               2600 LOCKWOOD STREET
## 1464                                    22999 US HWY 59
## 1465                               500 NELSON BOULEVARD
## 1466                           6401 FRANCE AVENUE SOUTH
## 1467                                   476 LIBERTY ROAD
## 1468                                5301 S CONGRESS AVE
## 1469                           223 MEDICAL CENTER DRIVE
## 1470                      907 E LAMAR ALEXANDER PARKWAY
## 1471                              2451 FILLINGIM STREET
## 1472                                724 PERSHING STREET
## 1473                                      530 3RD ST NW
## 1474                                    4 FULLER STREET
## 1475                     2905 WEST WARNER ROAD, SUITE 1
## 1476                                      501 SUMMIT ST
## 1477                        200 SECOND AVENUE SOUTHWEST
## 1478                              AVE PONCE DE LEON 435
## 1479                                    7301 ROGERS AVE
## 1480                               503 E LINCOLN STREET
## 1481                                   500 S ACADEMY ST
## 1482                          1000 MEDICAL CENTER DRIVE
## 1483                               951 N WASHINGTON AVE
## 1484                   4000 MIAMISBURG-CENTERVILLE ROAD
## 1485                     1011 VETERANS MEMORIAL PARKWAY
## 1486                                   7590 AUBURN ROAD
## 1487                    2150 HOSPITAL DRIVE, PO BOX 339
## 1488                                  4650 LINCOLN BLVD
## 1489                           92 BRICK ROAD, 3RD FLOOR
## 1490                                    515 MAIN STREET
## 1491                                 401 MATTHEW STREET
## 1492                                   901 NORTH PORTER
## 1493                              66 NORTH SIXTH STREET
## 1494                                  225 ELYRIA STREET
## 1495                                     1201 W 38TH ST
## 1496                               7300 NORTH FRESNO ST
## 1497                             215 MARION AV BOX 1307
## 1498                                600 EAST 5TH STREET
## 1499                                      500 E 51ST ST
## 1500                          1801 N JACKSON ST BOX 460
## 1501                                      500 CHERRY ST
## 1502                                3751 KATELLA AVENUE
## 1503                                   1805 27TH STREET
## 1504                                       4077 5TH AVE
## 1505                                 701 W PLYMOUTH AVE
## 1506                               2100 STANTONSBURG RD
## 1507                             810 ST VINCENT'S DRIVE
## 1508                                   4867 SUNSET BLVD
## 1509                      625 JAMES S TRIMBLE BOULEVARD
## 1510                          241 ROBERT K WILSON DRIVE
## 1511                                    201 BAILEY LANE
## 1512                                 1301 GRUNDMAN BLVD
## 1513                          3125 DR RUSSELL SMITH WAY
## 1514                                      2020 TALLY RD
## 1515                             1100 CENTRAL AVENUE SE
## 1516                                   395 WESTFIELD RD
## 1517                                   433 MCALISTER RD
## 1518                                   1815 HAND AVENUE
## 1519                            711 NORTH TAYLOR STREET
## 1520                              163 E TOLLISON STREET
## 1521                             308 NORTH MAPLE AVENUE
## 1522                                    6500 38TH AVE N
## 1523                               1795 HIGHWAY 64 EAST
## 1524                                   1000 OAKLEAF WAY
## 1525                               651 WEST MARION ROAD
## 1526                                 5901 MONCLOVA ROAD
## 1527                                   5324 PENN AVENUE
## 1528                                   1514 VERNON ROAD
## 1529                             1301 NORTH RACE STREET
## 1530                                     1700 S 23RD ST
## 1531                                 211 SUDDERTH DRIVE
## 1532                               830 S GLOSTER STREET
## 1533                                5475 SOUTH 500 EAST
## 1534                                2801 ST ANTHONY WAY
## 1535                               450 EAST MAIN STREET
## 1536                                         800 E MAIN
## 1537                         3555 SOUTH VAL VISTA DRIVE
## 1538                                      150 BERGEN ST
## 1539                                1200 RALSTON AVENUE
## 1540                                  20 HOSPITAL DRIVE
## 1541                             3700 SOUTH MAIN STREET
## 1542                            20201 S CRAWFORD AVENUE
## 1543                         500 UPPER CHESAPEAKE DRIVE
## 1544                           200 INDUSTRIAL BOULEVARD
## 1545                            6001 NORRIS CANYON ROAD
## 1546                               2700 SE STRATUS AVE.
## 1547                             1800 PARK PLACE AVENUE
## 1548                                      810 N WELO ST
## 1549                                     825 DELBON AVE
## 1550                             1590 WEST LIBERTY ROAD
## 1551                                       300 VEAZY RD
## 1552                                   157 UNION STREET
## 1553                             1601 YGNACIO VALLEY RD
## 1554                                    332 LEAVITT AVE
## 1555                                      220 FAISON DR
## 1556                             4212 NORTH 16TH STREET
## 1557                                5401 OLD COURT ROAD
## 1558                                    507 S MONROE ST
## 1559                                    30 PROSPECT AVE
## 1560                                1530 U S HIGHWAY 43
## 1561                             4363 CONVENTION STREET
## 1562                   24429 TOMBALL PARKWAY, SUITE 100
## 1563                         2500 ROCKY MOUNTAIN AVENUE
## 1564                                 14 PROSPECT STREET
## 1565                                 910 WALLACE AVENUE
## 1566                                       240 MAPLE ST
## 1567                                       615 RIDGE RD
## 1568                           ROUTE 301 NORTH B STREET
## 1569                       46 FAIRVIEW AVE   PO BOX 468
## 1570                                    ONE HEALTHY WAY
## 1571                                    711 ONYX STREET
## 1572                                    1301 15TH AVE W
## 1573                                     333 LAIDLEY ST
## 1574                                   826  18TH STREET
## 1575                              1601 WATSON BOULEVARD
## 1576                               214 EAST 23RD STREET
## 1577                                   24 HOSPITAL LANE
## 1578                            2000 SOUTH PALESTINE ST
## 1579                            1425 NORTH RANDALL ROAD
## 1580                               ONE N ATKINSON DRIVE
## 1581                       2601 DIMMITT ROAD, SUITE 400
## 1582                                3401 WEST GORE BLVD
## 1583                                  1600 COMMUNITY DR
## 1584                             1777 WEST YOSEMITE AVE
## 1585                                    501 SUNSET LANE
## 1586                                    2301 HIGHWAY 71
## 1587                                   695 N KELLOGG ST
## 1588                                100 MEDICAL PARKWAY
## 1589                        33300 CLEVELAND CLINIC BLVD
## 1590                                 1701 OAK PARK BLVD
## 1591                                  3901 S SEVENTH ST
## 1592                                        3701 E MAIN
## 1593                                     701 N FIRST ST
## 1594                                 2600 ST MICHAEL DR
## 1595                  510 E 8TH ST  POST OFFICE BOX 370
## 1596                                   242 GREEN STREET
## 1597                                  1761 BEALL AVENUE
## 1598                                         909 2ND ST
## 1599                                 1300 N VERMONT AVE
## 1600                                 2601 OCEAN PARKWAY
## 1601                                      449 W 23RD ST
## 1602                               722 EAST BUTLER PIKE
## 1603                                  17240 CORTEZ BLVD
## 1604                                     500 GYPSY LANE
## 1605                                 200 HENRY CLAY AVE
## 1606                                  2000 BROOKSIDE DR
## 1607                                  4770 LARIMER PKWY
## 1608                                 6051 US HIGHWAY 49
## 1609                              4343 NORTH JOSEY LANE
## 1610                                     22 MASONIC AVE
## 1611                              1808 WEST MAIN STREET
## 1612                              1000 FOURTH STREET SW
## 1613                                     2255 S 88TH ST
## 1614                            101 LAKE OCONEE PARKWAY
## 1615                              303 PARKWAY DRIVE, NE
## 1616                                    6412 LAUREL AVE
## 1617                                    1100 E LOOP 304
## 1618                                    425 ROBINSON ST
## 1619                      524 DR MICHAEL DEBAKEY STREET
## 1620                        11200 NORTH PORTLAND AVENUE
## 1621                                    2500 N STATE ST
## 1622                       960 JOE FRANK HARRIS PARKWAY
## 1623                                   720 N LINCOLN ST
## 1624                                16750 RED OAK DRIVE
## 1625                          2500 WEST REYNOLDS STREET
## 1626                                      2829 E HWY 76
## 1627                                645 EAST 5TH STREET
## 1628                                  1650 W COLLEGE ST
## 1629                                  810 NORTH 22ND ST
## 1630                              5151 HARRY HINES BLVD
## 1631                                  18697 BAGLEY ROAD
## 1632                                 1234 NAPIER AVENUE
## 1633                                   200 MISSION BLVD
## 1634                      10502 NORTH 110TH EAST AVENUE
## 1635                                     3000 MACK ROAD
## 1636                         2190 NORTH GRACE BOULEVARD
## 1637                       1216 SECOND STREET SOUTHWEST
## 1638                                502 W HIGHLAND BLVD
## 1639                                 50 KIRKBRIDE DRIVE
## 1640                          1805 MEDICAL CENTER DRIVE
## 1641                                    301 FLYNN DRIVE
## 1642                                    1400 HIGHWAY 71
## 1643                                3840 HOMESTEAD ROAD
## 1644                                303 N W 11TH STREET
## 1645                                        419 S CORAL
## 1646                             502 EAST SECOND STREET
## 1647                             310 SOUTH PECOS STREET
## 1648                           402 LAKE CASCADE PARKWAY
## 1649                               200 NORTH ELM STREET
## 1650                                     316 CALHOUN ST
## 1651                                        202 HIGH ST
## 1652                              2300 PATTERSON STREET
## 1653                                    200 HWY 30 WEST
## 1654                                 515 PACIFIC AVENUE
## 1655                                        2000 S MAIN
## 1656                      90 HOSPITAL DRIVE PO BOX 1116
## 1657                              850 NORTH MAIN STREET
## 1658                             269 PORTLAND WAY SOUTH
## 1659                                 1530 LONE OAK ROAD
## 1660                                 401 15TH AVENUE SE
## 1661                               19021 US HIGHWAY 285
## 1662                                   4300 BARTLETT ST
## 1663                            500 MEDICAL CENTER BLVD
## 1664                                  1600 SW ARCHER RD
## 1665                           1317 LAKE POINTE PARKWAY
## 1666                        315 SOUTH MANNING BOULEVARD
## 1667                               101 CITY DRIVE SOUTH
## 1668                                723 MEMORIAL STREET
## 1669                        34TH ST & CIVIC CENTER BLVD
## 1670                                  650 RANCOCAS ROAD
## 1671                                   520 ALLEN STREET
## 1672                                   4250 AUBURN BLVD
## 1673                               3655 MITCHELL STREET
## 1674                           1600 WEST ANTELOPE DRIVE
## 1675                             585 SCHENECTADY AVENUE
## 1676                                9330 SR 54, STE 401
## 1677                            11500 BROOKSHIRE AVENUE
## 1678                            600 NORTH  WOLFE STREET
## 1679                                1800 EAST VAN BUREN
## 1680                                  54 HOSPITAL DRIVE
## 1681                             1600 SOUTH 20TH AVENUE
## 1682                              1625 NASHVILLE STREET
## 1683                                 11365 DORSETT ROAD
## 1684                                    111 HOSPITAL DR
## 1685                                     5620 READ BLVD
## 1686                                    204 N 4TH AVE E
## 1687                                    3000 GETWELL RD
## 1688                            7785 NORTH STATE STREET
## 1689                                   1611 NW 12TH AVE
## 1690                                   1401 WEST PAWNEE
## 1691                                 725 S WAHANNA ROAD
## 1692                                   70 MEDICAL PLAZA
## 1693                              600 HIGHWAY 349 NORTH
## 1694                                  211 HOSPITAL ROAD
## 1695                              1619 EAST 13TH STREET
## 1696                              12401 WASHINGTON BLVD
## 1697                              210 NORTH MAIN STREET
## 1698                                601 MEDICAL PARKWAY
## 1699                                   575 BEECH STREET
## 1700                               117 WINNSBORO STREET
## 1701                                  2000 CANAL STREET
## 1702                                 1111 3RD STREET SW
## 1703                               3500 S LAFOUNTAIN ST
## 1704                                        620 8TH AVE
## 1705                                   9938 AIRLINE HWY
## 1706                                 525 N GARFIELD AVE
## 1707                                    411 W TIPTON ST
## 1708                                        PO BOX 1129
## 1709                                 1215 FRANCISCAN DR
## 1710                                715 N ST JOSEPH AVE
## 1711                                   441 N WABASH AVE
## 1712                    4801 AMBASSADOR CAFFERY PARKWAY
## 1713                              5000 HIGHWAY 39 NORTH
## 1714                              3200 WATERFIELD DRIVE
## 1715                                        703 MAIN ST
## 1716                                    130 DIVISION ST
## 1717                                   981 WOOSTER ROAD
## 1718                                 3909 S WILSON ROAD
## 1719                            1923 SOUTH UTICA AVENUE
## 1720                                     540 JETT DRIVE
## 1721                               1502 NORTH JEFFERSON
## 1722                                 1401 E 12TH STREET
## 1723                                       2412 50TH ST
## 1724                       2799 NORTH WASHINGTON STREET
## 1725                                   300 W OTTLEY AVE
## 1726                                1970 HOSPITAL DRIVE
## 1727                                  425 7TH STREET NW
## 1728                           6015 WEST PEORIA  AVENUE
## 1729                                 1796 HWY 441 NORTH
## 1730                                    216 14TH AVE SW
## 1731                              350 NORTH 11TH STREET
## 1732                                    521 EAST AVENUE
## 1733                             3690 GRANDVIEW PARKWAY
## 1734                                223 HOSPITAL STREET
## 1735                                   700 MEDICAL BLVD
## 1736                                   382 TAYLOR DRIVE
## 1737                     100 PIONEERS MEDICAL CENTER DR
## 1738                       ONE MEDICAL CENTER BOULEVARD
## 1739                                   36 KLONDIKE ROAD
## 1740                                1720 E CESAR AVENUE
## 1741                              1405 CLIFTON ROAD, NE
## 1742                            501 ROBERTSON BOULEVARD
## 1743                           37000 NORTH GANTZEL ROAD
## 1744                          927 WEST CHURCHILL STREET
## 1745                             91500 OVERSEAS HIGHWAY
## 1746                                   1500 LINE AVENUE
## 1747                                      501 N 14TH ST
## 1748                               723 BURKESVILLE ROAD
## 1749                                  831 HWY 150 SOUTH
## 1750                                      611 W MAIN ST
## 1751                                12 NORTH 7TH AVENUE
## 1752                                 100 HOSPITAL DRIVE
## 1753                                   401 SIXTH AVENUE
## 1754                              1901 NORTH HIGHWAY 87
## 1755                                       410 DEWEY ST
## 1756                                 1200 SEVENTH AVE N
## 1757                            401 WOODLAND HILLS BLVD
## 1758                                      355 RIDGE AVE
## 1759                     7 TRANSALPINE ROAD, PO BOX 368
## 1760                                       4301 B VISTA
## 1761                  45TH AVENUE AND PARSONS BOULEVARD
## 1762                             1108 ROSS CLARK CIRCLE
## 1763                                 5189 HOSPITAL ROAD
## 1764                                     8613 MS HWY 12
## 1765                            4201 ST ANTOINE ST - 2C
## 1766                               111 MICHIGAN AVE, NW
## 1767                                  88 LEWIS BAY ROAD
## 1768                             200 WEST LORAIN STREET
## 1769                      117 CAMINO DE VIDA, SUITE 100
## 1770                             401 EAST MURPHY AVENUE
## 1771                              355 NORTH MAIN STREET
## 1772                                   1010 SOUTH BIRCH
## 1773                                  211 E EARL STREET
## 1774                             250 NORTH WICKHAM ROAD
## 1775                                820 W WASHINGTON ST
## 1776                                  41 & 45 MALL ROAD
## 1777                                  3301 MATLOCK ROAD
## 1778                              561 FAIRTHORNE AVENUE
## 1779                                    2020 26TH AVE E
## 1780                             1014 OSWEGATCHIE TRAIL
## 1781                                450 E SIGLER AVENUE
## 1782                                        420 34TH ST
## 1783                                401 W GREENLAWN AVE
## 1784                         PO BOX 3814 DUMC  ERWIN RD
## 1785                                210 WEST 1ST STREET
## 1786                                   200 HOSPITAL AVE
## 1787                                      601 EAST ST N
## 1788                           975 PORT WASHINGTON ROAD
## 1789                           901 WEST REX ALLEN DRIVE
## 1790                                    2900 1ST AVENUE
## 1791                              3400 MINISTRY PARKWAY
## 1792                                520 WEST 5TH STREET
## 1793                                     1499 FAIR ROAD
## 1794                              7400 EAST OSBORN ROAD
## 1795                                      901 S 5TH AVE
## 1796                                 305 LANGDON STREET
## 1797                                 1008 NORTH MAIN ST
## 1798                                    800 ROSE STREET
## 1799                                 1980 CROMPOND ROAD
## 1800                                ONE PLAINSBORO ROAD
## 1801                             475 W RIVER WOODS PKWY
## 1802                               3815 HIGHLAND AVENUE
## 1803                            620 EAST COLLEGE STREET
## 1804                                     1201 S MAIN ST
## 1805                              9204 NORTH MAY AVENUE
## 1806                            483 WEST SEED FARM ROAD
## 1807                              350 N MERIDIAN STREET
## 1808                                      905 SECOND ST
## 1809                              103 MEDICINE WAY ROAD
## 1810                                1720 TERMINO AVENUE
## 1811                             165 BEECH SPRINGS ROAD
## 1812                                 7150 CLEARVISTA DR
## 1813                                  218 E PACK STREET
## 1814                           700 SOUTHEAST INNER LOOP
## 1815                              7171 N DALE MABRY HWY
## 1816                                  5121 RAYTOWN ROAD
## 1817                            400 NORTH PEPPER AVENUE
## 1818                       6601 CENTRAL FLORIDA PARKWAY
## 1819                              815 SOUTH 10TH STREET
## 1820                             501 SOUTH BURMA AVENUE
## 1821                                    593 EDDY STREET
## 1822                               1120 N MELVIN STREET
## 1823                                        1505 8TH ST
## 1824                                 3330 MASONIC DRIVE
## 1825                                   7800 US HWY 98 W
## 1826                                      1200 N 7TH ST
## 1827                              ONE ST JOSEPH'S DRIVE
## 1828                                110 SOUTH NINTH AVE
## 1829                                      509 W 18TH ST
## 1830                                   455 TOLL GATE RD
## 1831                                2825 CAPITOL AVENUE
## 1832                                 1325 LOCUST AVENUE
## 1833                                    500 OSBORN BLVD
## 1834                         1805 HENNEPIN AVENUE NORTH
## 1835              1 LOWER NAVY HILL ROAD (PO BOX 409CK)
## 1836                                1125 W JEFFERSON ST
## 1837                            200 HIGH SERVICE AVENUE
## 1838                                 201 MARIARDEN ROAD
## 1839                      400 W 8TH STREET, P O BOX 399
## 1840                       TWO HOSPITAL DR RD#3 BOX 188
## 1841                                  200 HAWKINS DRIVE
## 1842                                      420 W HIGH ST
## 1843                                          1900 PINE
## 1844                              2360 ROCKMART HIGHWAY
## 1845                              824 NORTH 11TH STREET
## 1846                                  629 SOUTH PLUMMER
## 1847                             1305 WEST HIGHWAY 6/34
## 1848                                  5900 COLLEGE ROAD
## 1849                                  14500 HAYNES BLVD
## 1850                              9032 HARRY HINES BLVD
## 1851                            210 CHAMPAGNE BOULEVARD
## 1852                                 131 HOSPITAL DRIVE
## 1853                                 17800 S KEDZIE AVE
## 1854                                1120 MORNINGSIDE DR
## 1855                                       621 3RD ST S
## 1856                    CARRETERA 21 1785 URB LAS LOMAS
## 1857                             2800 E ROCK HAVEN ROAD
## 1858                               364 WHITE OAK STREET
## 1859                              3405 MIKE PADGETT HWY
## 1860                                   1250 16TH STREET
## 1861                             42570 SOUTH AIRPORT RD
## 1862                                  300 WILSON STREET
## 1863                       5602 SOUTHWEST LEE BOULEVARD
## 1864                                     201 14TH ST SW
## 1865                                3333 NORTH SEMINARY
## 1866                                  1621 FRONT STREET
## 1867                                 1201 7TH STREET SE
## 1868                                      735 S 5TH AVE
## 1869                               701 EAST 16TH STREET
## 1870                                 701 MADISON AVENUE
## 1871                                  4422 THIRD AVENUE
## 1872                                       24 JOLIET ST
## 1873                                    1215 LEE STREET
## 1874                                 5995 SPRING STREET
## 1875                                    800 TILGHMAN DR
## 1876                   1600 N KNISS AVENUE P O BOX 1019
## 1877                                   104 WEST 17TH ST
## 1878                                    365 MONTAUK AVE
## 1879                 PO BOX 94949 FOLSOM AND PROSPECTOR
## 1880                               305 SOUTH 5TH STREET
## 1881                                 777 HEMLOCK STREET
## 1882                                        809 BRAMLEY
## 1883                              600 ST JOHNSBURY ROAD
## 1884                                    400 TAYLOR ROAD
## 1885                                 6401 N FEDERAL HWY
## 1886                                600 PLEASANT AVENUE
## 1887                            1016 E ROOSEVELT AVENUE
## 1888                                   507 HOSPITAL WAY
## 1889                                1330 COSHOCTON ROAD
## 1890                                     3500 TOWER AVE
## 1891                                     147 N BRENT ST
## 1892                                        113 4TH AVE
## 1893                            78 MEDICAL CENTER DRIVE
## 1894                                   35 HOSPITAL ROAD
## 1895                            7601 SOUTHCREST PARKWAY
## 1896                           500 STATE HOSPITAL DRIVE
## 1897                                 107 LINCOLN STREET
## 1898                              #1 MEDICAL PARK DRIVE
## 1899                                  312 CUSTER STREET
## 1900                           8600 OLD GEORGETOWN ROAD
## 1901                                905 NORTH 1000 WEST
## 1902                                       1 MARCELA DR
## 1903                               600 N COLLEGE AVENUE
## 1904                             1003 WILLOW CREEK ROAD
## 1905                                     4488 ROSLIN RD
## 1906                     1000 KINGFISHER HOSPITAL DRIVE
## 1907                                 12303 DEPAUL DRIVE
## 1908                              101 CIVIC CENTER LANE
## 1909                                   100 BROWN STREET
## 1910                     726 EXCHANGE STREET, SUITE 522
## 1911                                     1000 W 8TH AVE
## 1912                                388 BEN BOLT AVENUE
## 1913                                       403 E 1ST ST
## 1914                             1604 ROCK PRAIRIE ROAD
## 1915                                   5900 BOND AVENUE
## 1916                               608 NORTH KEY AVENUE
## 1917                           1100 SOUTH VAN DYKE ROAD
## 1918                                1300 ROANOKE AVENUE
## 1919                                       900 CEDAR ST
## 1920                              2521 EAST 15TH STREET
## 1921                                 2623 E SLAUSON AVE
## 1922                                       608 AVENUE B
## 1923                                    455 PLUMAS BLVD
## 1924                          1600 SEVENTH AVENUE SOUTH
## 1925                            2450 SOUTH TELSHOR BLVD
## 1926                                   271 CAREW STREET
## 1927                                     2001 W 86TH ST
## 1928                            BROADWAY ST & N 11TH ST
## 1929                              7007 POWERS BOULEVARD
## 1930                                    201 WALLS DRIVE
## 1931                                 801 BROADWAY NORTH
## 1932                                 312  9TH STREET SW
## 1933                                        3 S 4TH AVE
## 1934                              2260 WRIGHTSBORO ROAD
## 1935                                 20 HARTFORD STREET
## 1936                        2801 DEKALB MEDICAL PARKWAY
## 1937                               2615 W WASHINGTON ST
## 1938                                 923 CARROLL AVENUE
## 1939                                   1600 E EVERGREEN
## 1940                                 3333 BURNET AVENUE
## 1941                           3421 MEDICAL PARK DRIVE,
## 1942                                       120 PARK AVE
## 1943                                  203 SOUTH WESTERN
## 1944                                3441 DICKERSON PIKE
## 1945                                   315 W HICKORY ST
## 1946                                   2906 17TH STREET
## 1947                                2401 UNIVERSITY AVE
## 1948                SERGIO CUEVAS BUSTAMANTE STREET 550
## 1949                                    570 WILLOW ROAD
## 1950                              2305 CHAMBLISS AVE NW
## 1951        BO. RINCON SECTOR LAS LOMAS  KM.3.1 CARR 14
## 1952                      12500 SOUTH FREEWAY SUITE 100
## 1953                                 6655 ALVARADO ROAD
## 1954                        1700 MEDICAL CENTER PARKWAY
## 1955                                168 S HOWELL STREET
## 1956                                      1500 AVENUE H
## 1957                           615 CHURCHILL-HUBBARD RD
## 1958                                   8166 MAIN STREET
## 1959                                  51 BLOSSOM STREET
## 1960                                  300 WERNER STREET
## 1961                               16850 BEAR VALLEY RD
## 1962                               746 JEFFERSON AVENUE
## 1963                             1275 EAST FAIRFAX ROAD
## 1964                                     28 CRESCENT ST
## 1965               1305 W 18TH ST  POST OFFICE BOX 5039
## 1966                             620 WEST EIGHTH STREET
## 1967                                     270 WALTON WAY
## 1968                                     935 WAYNE ROAD
## 1969                      850 MAPLE STREET - P O BOX  A
## 1970                                     422 W WHITE ST
## 1971                                   480 GALLETTI WAY
## 1972                               36475 FIVE MILE ROAD
## 1973                                        205 OSCEOLA
## 1974                                  1301 PUNCHBOWL ST
## 1975                                 350 PARRISH STREET
## 1976                                 1301 RICHMOND ROAD
## 1977                                 280 HOME OLU PLACE
## 1978                                  75 FRANCIS STREET
## 1979                          3200 PLEASANT VALLEY ROAD
## 1980                                   4500 13TH STREET
## 1981                           4643 WAIMEA CANYON DRIVE
## 1982                       301 EAST MIEL DE LUNA AVENUE
## 1983                                     1515 UNION AVE
## 1984                                   9 LINVILLE DRIVE
## 1985                                301 PROSPECT AVENUE
## 1986                                201 REECEVILLE ROAD
## 1987                          100 SOUTHEAST 59TH STREET
## 1988                              77 WEST BARNEY STREET
## 1989                           440 NORTH HIAWATHA DRIVE
## 1990                                   US HWY 491 NORTH
## 1991                                  3100 CHANNING WAY
## 1992                           200 STONECREST BOULEVARD
## 1993                                     3100 WESTON RD
## 1994                                11040 N STATE RD 77
## 1995                                2500 BERNVILLE ROAD
## 1996                     987400 NEBRASKA MEDICAL CENTER
## 1997                                      532 1ST ST NW
## 1998                              6325 HOSPITAL PARKWAY
## 1999                                  4231 HIGHWAY 1192
## 2000                        400 PALMETTO HEALTH PARKWAY
## 2001                                      1715  26TH ST
## 2002                                   1000 PINE STREET
## 2003                               101 CRESTVIEW AVENUE
## 2004                                  503 MCMILLAN ROAD
## 2005                                564 E PIONEER DRIVE
## 2006                               600 NORTH 7TH STREET
## 2007                                   10 WOODLAND ROAD
## 2008                                  1200 GRANT BLVD W
## 2009                                      3801 E HWY 98
## 2010                         13710 ST FRANCIS BOULEVARD
## 2011                                    515 28 3/4 ROAD
## 2012                               301 SOUTH HIGHWAY 65
## 2013                                707 SHERIDAN AVENUE
## 2014                                    2422 20TH ST SW
## 2015                               1255 HIGHWAY 54 WEST
## 2016                              2201 LEXINGTON AVENUE
## 2017                          100 GROSS CRESCENT CIRCLE
## 2018                                 310 WOODSTOWN ROAD
## 2019                                     4110 GUADALUPE
## 2020                                         801 5TH ST
## 2021                               207 JEFFERSON STREET
## 2022                                    6308 EIGHTH AVE
## 2023                                350 CROSSGATES BLVD
## 2024                                 5325 FARAON STREET
## 2025                                  2000 NORTH AVENUE
## 2026                              ONE MEDICAL PARK BLVD
## 2027                                304 FRANKLIN STREET
## 2028                                    1221 WHIPPLE ST
## 2029                                    180 PARKWOOD DR
## 2030                                     901 ADAMS BLVD
## 2031                          5330 NORTH LOOP 1604 WEST
## 2032                             235 NORTH PEARL STREET
## 2033                                  921 E. HIGHWAY 36
## 2034                               451 HIGHWAY 13 SOUTH
## 2035                                    355 BARD AVENUE
## 2036                           2520 N UNIVERSITY AVENUE
## 2037                                  2316 E MEYER BLVD
## 2038                              191 NORTH MAIN STREET
## 2039                               45 ST LAWRENCE DRIVE
## 2040                                342 FAIRVIEW STREET
## 2041                                   611 ALCORN DRIVE
## 2042                                       2701 17TH ST
## 2043                                    727 EAST 1ST ST
## 2044                                  126 HIGHWAY 280 W
## 2045                                94220 FOURTH STREET
## 2046                                4810 NORTH LOOP 289
## 2047                                    1100 MERCER AVE
## 2048                             2500 METROHEALTH DRIVE
## 2049                               140 WEST MAIN STREET
## 2050                                    ROUTE 7 BOX R50
## 2051                                  904 SCIOTO STREET
## 2052                                      1260 E SR 205
## 2053                                      800 SCHOOL ST
## 2054                                    421 CHEW STREET
## 2055                                2070 CLINTON AVENUE
## 2056                            W180 N8085 TOWN HALL RD
## 2057                                    216 ANAMARIA DR
## 2058                                      275 W 12TH ST
## 2059                                720 ESKENAZI AVENUE
## 2060                                309 ELEVENTH STREET
## 2061                      9850 W ST LUKES DRIVE STE 250
## 2062                                   1710 BARTON ROAD
## 2063                               525 WEST MAIN STREET
## 2064                                  4802 TENTH AVENUE
## 2065                               200 MED CENTER DRIVE
## 2066                                    1400 E UNION ST
## 2067                             1 MEDICAL CENTER DRIVE
## 2068                            701 EAST CYPRESS STREET
## 2069                                   2400 LEE HIGHWAY
## 2070                                 3901 LONE TREE WAY
## 2071                          300 WEST HUTCHINGS STREET
## 2072                               549 EAST FAIR STREET
## 2073                              111 EAST 210TH STREET
## 2074                               172 FOURTH STREET SE
## 2075  CARR 3 KM 8  3 AVE 65TH INFANTERIA       BOX 6021
## 2076                                  1600 WEST 24TH ST
## 2077                              9330 MEDICAL PLAZA DR
## 2078                                  2605 N LEBANON ST
## 2079                               850 W IRVING PARK RD
## 2080                                      702 1ST ST SW
## 2081                                      98 SHERRY AVE
## 2082                               523 NORTH 3RD STREET
## 2083               700 N SPRING ST, BOX 1010-C-ADM BLDG
## 2084                                 10800 KNIGHTS ROAD
## 2085                               2151 W SPRING STREET
## 2086                                   190 ARROWHEAD DR
## 2087                                  710 CENTER STREET
## 2088                              251 FIFTH STREET EAST
## 2089                             300 SIOUX VALLEY DRIVE
## 2090                                      285 BIELBY RD
## 2091                                      301 YADKIN ST
## 2092                                 130 MEDICAL CIRCLE
## 2093                                 2011 WEST BROADWAY
## 2094                                49 ROBINWOOD AVENUE
## 2095                   ONE BARNES-JEWISH HOSPITAL PLAZA
## 2096                                 263 FARMINGTON AVE
## 2097                                   120 NORTH OAK ST
## 2098                                710 N WALNUT STREET
## 2099                            1420 TUSCULUM BOULEVARD
## 2100                                 915 ANDERSON DRIVE
## 2101                                 ONE HOSPITAL DR SE
## 2102                            1402 E COUNTY LINE RD S
## 2103                           459 GA HIGHWAY 119 SOUTH
## 2104                                     1906 BLAKE AVE
## 2105                                 5000 HENNESSY BLVD
## 2106                                  500 THORPE STREET
## 2107                               8080 BLUEBONNET BLVD
## 2108                                   615 W NURSERY ST
## 2109                                200 UNIVERSITY BLVD
## 2110                                       303 AVENUE I
## 2111                                       8555 TAFT ST
## 2112                                 225 MEMORIAL DRIVE
## 2113                             203 SOUTH DAISY STREET
## 2114                                 614 MEMORIAL DRIVE
## 2115                                   321 MITCHELL AVE
## 2116                     100 NORTH MARIO CAPECCHI DRIVE
## 2117                                 5300 MILITARY ROAD
## 2118                                   2400 EAST 4TH ST
## 2119                                    1000 HIGHWAY 12
## 2120                                   300 NORTH 2ND ST
## 2121                                     200 SOUTH A ST
## 2122                                   255 E BONITA AVE
## 2123                            10 EAST HOSPITAL STREET
## 2124                                101 ST ANDREWS LANE
## 2125               305 S STATE ST  POST OFFICE BOX 4450
## 2126                            6200 OVERTON RIDGE BLVD
## 2127                        1000 W PINHOOK RD SUITE 100
## 2128                                     468 CADIEUX RD
## 2129                                    705 S GRAND AVE
## 2130                                   1233 EAST 2ND ST
## 2131                                  1451 N GARDNER ST
## 2132                                 1350 BULL LEA ROAD
## 2133                          1000 NORTH VILLAGE AVENUE
## 2134                                 27100 CHARDON ROAD
## 2135                                   1726 SHAWANO AVE
## 2136                                    700 HIGH STREET
## 2137                     1959 NE PACIFIC ST  BOX 356151
## 2138                                 100 ROCKFORD DRIVE
## 2139           3515 BROADWAY AVE   POST OFFICE BOX 7600
## 2140                          9455 W WATERTOWN PLANK RD
## 2141                                 1530 NORWAY AVENUE
## 2142                                  715 DELMORE DRIVE
## 2143                                   1111 DUFF AVENUE
## 2144                                  14662 NEWPORT AVE
## 2145                              5730 W ROOSEVELT ROAD
## 2146                                     1000 W 10TH ST
## 2147                          1300 MASSACHUSETTS AVENUE
## 2148                                       4600 38TH ST
## 2149                       1080 NORTH ELLINGTON PARKWAY
## 2150                                  1000 TENTH AVENUE
## 2151                             100 MEDICAL CENTER WAY
## 2152                                    3302 GALLOWS RD
## 2153                           9400 RHEA COUNTY HIGHWAY
## 2154                             111 SOUTH GRANT AVENUE
## 2155                          807 SOUTH ISABELLA STREET
## 2156                            1800 SPRING RIDGE DRIVE
## 2157                                95 BRADHURST AVENUE
## 2158                               433 WEST HIGH STREET
## 2159                               1407 WHISENANT DRIVE
## 2160                                     172 KINSLEY ST
## 2161                          ONE HAMILTON HEALTH PLACE
## 2162                                    2520 TROY DRIVE
## 2163                                  17700 SE 272ND ST
## 2164                                  1250 E ALMOND AVE
## 2165                                  539 SOUTHEAST 2ND
## 2166                            200 ABRAHAM FLEXNER WAY
## 2167                       1926 OAK STREET,  PO BOX 389
## 2168                                   800 WHEELING AVE
## 2169                                 6410 MASONIC DRIVE
## 2170                           1912 ALABAMA HIGHWAY 157
## 2171                                1717 SOUTH J STREET
## 2172                                  3651 WHEELER ROAD
## 2173                                    250 MERCY DRIVE
## 2174                                    6200 SW 73RD ST
## 2175                                3000 CORAL HILLS DR
## 2176                                 301 E ST JOSEPH ST
## 2177                                5601 WARREN PARKWAY
## 2178                                      1200 N ELM ST
## 2179                                   254 HIGHWAY 3048
## 2180                               601 SOUTH 8TH STREET
## 2181                                1100 E MICHIGAN AVE
## 2182                                  1150 STATE STREET
## 2183                                      922 E CALL ST
## 2184                                  BOX 158 ROUTE 17M
## 2185                                   300 SOUTH STREET
## 2186                              317 MCWILLIAMS AVENUE
## 2187                               201 EIGHTH AVENUE SE
## 2188                                 1411 DENVER AVENUE
## 2189                          1275 MARVIN HANCOCK DRIVE
## 2190                                    1400 EIGHTH AVE
## 2191                                     1370 WEST D ST
## 2192                      85O GOV CARLOS G CAMACHO ROAD
## 2193                                1222 E WOODLAND AVE
## 2194           760 HOSPITAL CIRCLE, POST OFFICE BOX 760
## 2195                                   809 TURNPIKE AVE
## 2196                                    823 HIGHWAY 589
## 2197                             1625 MEDICAL CENTER DR
## 2198                                  135 S PROSPECT ST
## 2199                                     2320 E 93RD ST
## 2200                                     1220 DEWEY AVE
## 2201                             1211 WILMINGTON AVENUE
## 2202                                       733 CEDAR ST
## 2203                              1026 RIVER OAKS DRIVE
## 2204                              975 S FAIRMONT AVENUE
## 2205                               99 EAST STATE STREET
## 2206                                2800 MELROSE AVENUE
## 2207                            5950 STATE ROUTE 6 WEST
## 2208                          4600 SPOTSYLVANIA PARKWAY
## 2209                                    12935 S GREGORY
## 2210                                  1495 FRAZIER ROAD
## 2211                                   1400 E CHURCH ST
## 2212                                     1700 COFFEE RD
## 2213                                800 EAST 9TH AVENUE
## 2214                               6600 BRUCEVILLE ROAD
## 2215                                      1314 19TH AVE
## 2216                                       300 22ND AVE
## 2217                                  301 BECKER AVE SW
## 2218                                 2315 E MAIN STREET
## 2219                                 2500 MERCED STREET
## 2220                         3249 SOUTH OAK PARK AVENUE
## 2221                       3000 ST MATTHEWS RD BOX 1806
## 2222                       849 SOUTH THREE NOTCH STREET
## 2223                                   901 ADAMS STREET
## 2224                                 320 POMFRET STREET
## 2225                                  5900 BROCKTON AVE
## 2226                                429 WEST ELM STREET
## 2227                             951 EAST MARKET STREET
## 2228                                 617 DOCTORS STREET
## 2229                            3600 NW SAMARITAN DRIVE
## 2230                                 158 WEST MAIN ROAD
## 2231                                       315 KNAPP ST
## 2232                         2250 26TH STREET NORTHWEST
## 2233                           751 SAPPINGTON BRIDGE RD
## 2234                                       215 SANDY ST
## 2235                                 1208 LUTHER STREET
## 2236                 1430 HIGHWAY 4 EAST / P O BOX 6000
## 2237                                      310 W MAIN ST
## 2238                             200 NAT WASHINGTON WAY
## 2239                                    35 MILES STREET
## 2240                                550 MIRABEAU STREET
## 2241                              2600 SOUTHWEST HOLDEN
## 2242                                   809 E MARION AVE
## 2243                                 200 N RIVER STREET
## 2244                                     1 COOPER PLAZA
## 2245                                  ONE ST FRANCIS DR
## 2246                                      802 2ND ST SE
## 2247                                 6071 W OUTER DRIVE
## 2248            9301 NORTH CENTRAL EXPRESSWAY SUITE 100
## 2249                                    1719 E 19TH AVE
## 2250                    600 PEMBERTON-BROWNS MILLS ROAD
## 2251                              447 NORTH MAIN STREET
## 2252                                275 SANDWICH STREET
## 2253                                   350 BONAR AVENUE
## 2254                                 ONE GUTHRIE SQUARE
## 2255                                      615 CLINIC DR
## 2256                               4697 HARRISON STREET
## 2257                                  45 PLATEAU STREET
## 2258                                  200 STADIUM DRIVE
## 2259                            2501 NORTH THIRD STREET
## 2260                                     1501 BURNET DR
## 2261                                   300 NORTH AVENUE
## 2262                         5252 WEST UNIVERSITY DRIVE
## 2263                                9205 SW BARNES ROAD
## 2264                                  1901 SW 172ND AVE
## 2265                                      1850 STATE ST
## 2266                                2222 WELBORN STREET
## 2267                                       1041 45TH ST
## 2268                                      9191 GRANT ST
## 2269                                       10 KRUGER RD
## 2270                                  100 EAGLEVILLE RD
## 2271                             239 BOWLING GREEN ROAD
## 2272                       4305 NEW SHEPHERDSVILLE ROAD
## 2273                             400 EAST TICKLE STREET
## 2274                                  1500 STATE STREET
## 2275                              2050 MERCANTILE DRIVE
## 2276                                 16237 VENTURA BLVD
## 2277                             1303 NORTH MAIN STREET
## 2278                                  1710 LAFAYETTE RD
## 2279                                   162 LEGACY POINT
## 2280                                2415 PARKWOOD DRIVE
## 2281                               1017 WEST 7TH STREET
## 2282                          1906 BELLEVIEW AVENUE, SE
## 2283                              900 WEST KINGSHIGHWAY
## 2284                    P O BOX 489, 704 NORTH THIRD ST
## 2285                               111 17TH AVENUE EAST
## 2286                               200 WEST ARBOR DRIVE
## 2287                               510 4TH STREET SOUTH
## 2288                    BARRIO MONACILLOS,CENTRO MEDICO
## 2289                     990 OAK RIDGE TURNPIKE BOX 529
## 2290                                      7901 FROST ST
## 2291                            2000 W BALTIMORE STREET
## 2292                    P O BOX 100, 100 HOSPITAL DRIVE
## 2293                               2460 WASHINGTON ROAD
## 2294                                     801 BEDELL AVE
## 2295                          908 10TH AVENUE SOUTHWEST
## 2296                               9801 FRONTIER AVE SE
## 2297                                   4000 SPENCER HWY
## 2298                               CARRETERA #2 KM 11 7
## 2299                                      601 E 14TH ST
## 2300                    1220 NORTH GLENN ENGLISH STREET
## 2301                                  204 MEDICAL DRIVE
## 2302                          1454 N COUNTY ROAD 2050 E
## 2303                                2000 CAMPBELL DRIVE
## 2304                                        200 W OLLIE
## 2305                                 800 KIRNWOOD DRIVE
## 2306                                     2501 W 26TH ST
## 2307                               50 ST LAWRENCE DRIVE
## 2308                                   1401 WEST LOCUST
## 2309                                530 NE GLEN OAK AVE
## 2310                                  1100 MARSHALL WAY
## 2311                                  340 GETWELL DRIVE
## 2312                       3333 N FOSTER MALDONADO BLVD
## 2313                              1485 SOUTH HIGHWAY 40
## 2314                                  201 SETON PARKWAY
## 2315                               1701 SANTA ANITA AVE
## 2316                      200 J AVE POST OFFICE BOX 517
## 2317                                232 S WOODS MILL RD
## 2318                                   4040 NORTH BLVD.
## 2319                                361 RANDOLPH STREET
## 2320                                  12033 AGENCY ROAD
## 2321                                 1100 HOLLENBACK LN
## 2322                         1653 WEST CONGRESS PARKWAY
## 2323                                105 HIGHWAY 80 EAST
## 2324                     85 SIERRA PARK ROAD PO BOX 660
## 2325                                1555 LONG POND ROAD
## 2326                                  HIGHWAY 281 SOUTH
## 2327                                2776 PACIFIC AVENUE
## 2328                                     2650 RIDGE AVE
## 2329                                1950 S HAWTHORNE RD
## 2330                             52579 HIGHWAY 51 SOUTH
## 2331                                          1406 Q ST
## 2332                            ONE CHIMNEY POINT DRIVE
## 2333                         225 E CHICAGO AVE, BOX 140
## 2334                                406 WEST OAK STREET
## 2335                              2026 S JACKSON STREET
## 2336                             501 NORTH NAVAJO DRIVE
## 2337                                   765 PIERCE DRIVE
## 2338                                   180 FLOYD AVENUE
## 2339                                         PO BOX 497
## 2340                               826 NORTH 8TH STREET
## 2341                                       301 HENRY ST
## 2342                                 606 N W 7TH STREET
## 2343                                     410 W 16TH AVE
## 2344                                915 EAST 1ST STREET
## 2345                            400 ANNANDALE BOULEVARD
## 2346                                    1000 SOUTH BYRD
## 2347                                 18101 OAKWOOD BLVD
## 2348                                    1001 GAUSE BLVD
## 2349                                  715 RICHLAND MALL
## 2350                                 624 HOSPITAL DRIVE
## 2351                             1901 TATE SPRINGS ROAD
## 2352                 CALLE JOSE C VASQUEZ BO. CAONILLAS
## 2353                         P O BOX 193, 1900 F STREET
## 2354                                 27200 CALAROGA AVE
## 2355                               14901 BROSCHART ROAD
## 2356                                 100 ST LUKE'S LANE
## 2357                             4401 RIVER CHASE DRIVE
## 2358                     2550 SISTER MARY COLUMBA DRIVE
## 2359                           4800 EAST JOHNSON AVENUE
## 2360                      251 WOOD LAKE DRIVE SOUTHEAST
## 2361                           100 MEDICAL CENTER DRIVE
## 2362                          2400 NORTH ROCKTON AVENUE
## 2363                                834 SHERIDAN STREET
## 2364                                 321 MULBERRY ST SW
## 2365                                    300 UTAH STREET
## 2366                                    809 W CHURCH ST
## 2367                                1106 COLEGATE DRIVE
## 2368                           600 MEDICAL CENTER DRIVE
## 2369                                    8303 PLATT ROAD
## 2370                                   500 EAST ACADEMY
## 2371                          2142 NORTH COVE BOULEVARD
## 2372                              1420 NORTH TRACY BLVD
## 2373                                1600 DIAMOND STREET
## 2374                          1691 HIGHWAY 9  -  CN2025
## 2375                             12500 WILLOWBROOK ROAD
## 2376                           1720 CENTRAL AVENUE EAST
## 2377                                321 E HARRIS STREET
## 2378                                  240 WILLOW STREET
## 2379                                   614 EAKER STREET
## 2380                                   1775 DEMPSTER ST
## 2381                                 170 N CASEVILLE RD
## 2382                              512 SKYLINE BOULEVARD
## 2383                               5800 SOUTHLAND DRIVE
## 2384                               9000 W WISCONSIN AVE
## 2385                                   750 EAST 34TH ST
## 2386                                   920 HILLCREST DR
## 2387                              550 N HILLSIDE STREET
## 2388                                       1405 MILL ST
## 2389                                1001 POTRERO AVENUE
## 2390                                 250 SCENIC HIGHWAY
## 2391                              3200 PROVIDENCE DRIVE
## 2392                             P O BOX 277, 2200 H ST
## 2393                          450 SOUTH OCOTILLO AVENUE
## 2394                         4800 SOUTH CROATAN HIGHWAY
## 2395                                1319 PUNAHOU STREET
## 2396                                950 WEST FARIS ROAD
## 2397                             400 SOLDIER CREEK ROAD
## 2398                           8280 W WARM SPRINGS ROAD
## 2399                                 475 SEAVIEW AVENUE
## 2400                     10101 SOUTH 27TH ST  2ND FLOOR
## 2401                                    601 ELMWOOD AVE
## 2402                                  1230 SIXTH AVENUE
## 2403                          1612 SOUTH HENDERSON BLVD
## 2404                         25825 SOUTH VERMONT AVENUE
## 2405                               25 JACOBS GULCH ROAD
## 2406                                   15155 HIGHWAY 43
## 2407                              5145 N CALIFORNIA AVE
## 2408                                    2333 BIDDLE AVE
## 2409                            1057 PAUL MAILLARD ROAD
## 2410                                   6977 MAIN STREET
## 2411                                1000 EAST 100 NORTH
## 2412                            820 NORTH CHELAN AVENUE
## 2413                                        175 HIGH ST
## 2414                              304 WEST PROUT STREET
## 2415                          629 NORTH SANDUSKY AVENUE
## 2416                               317 HIGHWAY 13 SOUTH
## 2417                              2400 ST FRANCIS DRIVE
## 2418                                  61 CHARLES STREET
## 2419                                     420 EAST 76 ST
## 2420                               2300 OPITZ BOULEVARD
## 2421                                1700 CLINTON STREET
## 2422                                    1 GUTHRIE DRIVE
## 2423                               1411 BADDOUR PARKWAY
## 2424                                   1411 HIGHWAY 793
## 2425                                   259 FIRST STREET
## 2426                              2401 W UNIVERSITY AVE
## 2427                                   600 SOUTH MONROE
## 2428                        3000 SCHATULGA RD BOX 12435
## 2429                          32021 COUNTY 24 BOULEVARD
## 2430                              444 NORTH MAIN STREET
## 2431                       PDA. 20 C/ SAN RAFAEL # 1395
## 2432                     6720 PARKDALE PLACE, SUITE 100
## 2433                                  901 S. SWEETWATER
## 2434                                202 HOSPITAL STREET
## 2435                                   800 N JUSTICE ST
## 2436                                    3500 GASTON AVE
## 2437                                  1000 STATE STREET
## 2438                              242 W SHAMROCK STREET
## 2439                            8800 NORTH TYRON STREET
## 2440                         2500 EAST VAN BUREN STREET
## 2441                              3643 N ROXBORO STREET
## 2442                     BARRIO MONACILLOS CENTROMEDICO
## 2443                               707 S UNIVERSITY AVE
## 2444                                    208 VALLEY ROAD
## 2445                                       1201 HILL RD
## 2446                                    6245 INKSTER RD
## 2447                            400 N BROWN, BUILDING 1
## 2448                400 ROSALIND REDFERN GROVER PARKWAY
## 2449                                  400 E SHERIDAN RD
## 2450                      1000 MEDICAL CENTER BOULEVARD
## 2451                               515 N MIRANDA AVENUE
## 2452                                5841 SOUTH MARYLAND
## 2453                               639 WEST MAIN STREET
## 2454                                520 WEST GUM STREET
## 2455                           155 EAST BRUSH HILL ROAD
## 2456                                 719 WEST COKE ROAD
## 2457                       5200 EAST I-240 SERVICE ROAD
## 2458                                 1600 FIRST ST EAST
## 2459                               600 ELIZABETH STREET
## 2460                              1000 DUTCH RIDGE ROAD
## 2461                                   267 GRANT STREET
## 2462                                    2900 S LOOP 256
## 2463                                   25117 HIGHWAY 15
## 2464                                    830 ROCKFORD ST
## 2465                                    805 SUNSET BLVD
## 2466                                   450 EASTVOLD AVE
## 2467                                       1111 6TH AVE
## 2468                               1055 MEDICAL PARK SE
## 2469                            190 EAST BANNOCK STREET
## 2470                              638 CALIFORNIA AVENUE
## 2471             1325 S CLIFF AVE  POST OFFICE BOX 5045
## 2472                    ONE ELIZABETH PLACE, E3 SUITE A
## 2473                                101 SOUTH MOORE AVE
## 2474                             7171 SOUTH 51ST AVENUE
## 2475                              1500 FOREST GLEN ROAD
## 2476                              1400 WEST PARK AVENUE
## 2477                         11109 PARKVIEW PLAZA DRIVE
## 2478                                     115 MALL DRIVE
## 2479                   401 VANITY FAIR LANE, PO BOX 618
## 2480                                      800 N FANT ST
## 2481                                    520 S MAPLE AVE
## 2482                                     60 MERCY COURT
## 2483                               17101 DALLAS PARKWAY
## 2484                        805 PAMPLICO HWY BOX 100550
## 2485                                   100 KEOKEA PLACE
## 2486                                 ONE HOSPITAL PLAZA
## 2487                                  192 VILLAGE DRIVE
## 2488                             250 NORTH FIRST STREET
## 2489                                3050 RIO DOSA DRIVE
## 2490                                914 S SCHEUBER ROAD
## 2491                            1111 CRATER LAKE AVENUE
## 2492                              1309 WEST MAIN STREET
## 2493                              40 EAST MOUNTAIN ROAD
## 2494                                 121 LONGVIEW DRIVE
## 2495                                   15031 RINALDI ST
## 2496                                  505 SOUTH BURG ST
## 2497                              2501 HARBOR BOULEVARD
## 2498                               1710 HARRISON STREET
## 2499                             3637 OLD VINEYARD ROAD
## 2500                           5101 S WILLOW SPRINGS RD
## 2501                                    1000 RUSH DRIVE
## 2502                                     620 W BROWN ST
## 2503                                   200 TRENTON ROAD
## 2504                                 1600 HADDON AVENUE
## 2505                                600 HIGHLAND AVENUE
## 2506                                       538 BROADWAY
## 2507                                    565 ABBOTT ROAD
## 2508                              2800 GODWIN BOULEVARD
## 2509                     310 S MCCASKEY RD P O BOX 1128
## 2510                                  150 WEST ROUTE 66
## 2511                             231 SOUTH COLLINS ROAD
## 2512                                     1969 W HART RD
## 2513                                      8200 DODGE ST
## 2514                                700 MEDICAL PARKWAY
## 2515                                        900 HYDE ST
## 2516                              6201 HARRY HINES BLVD
## 2517                                  3600 FLORIDA BLVD
## 2518                   115  SECOND STREET WEST, BOX 157
## 2519                              250 SOUTH 21ST STREET
## 2520                                      5353 G STREET
## 2521                4600 EAST SAM HOUSTON PARKWAY SOUTH
## 2522                                  801 MIDDLEFORD RD
## 2523                          9901 MEDICAL CENTER DRIVE
## 2524                               1525 RIVER OAKS WEST
## 2525                                 1500 E HOUSTON HWY
## 2526                               9733 HEALTHWAY DRIVE
## 2527                                2451 INTELLIPLEX DR
## 2528                                    401 W POPLAR ST
## 2529                    CARR 349 KM 2 7 CERRO LAS MESAS
## 2530                                 888 SO KING STREET
## 2531                                     29 NW 1ST LANE
## 2532                   1800 SOUTH RENAISSANCE BOULEVARD
## 2533                                    202 PROSPECT DR
## 2534                              1095 HIGHWAY 15 SOUTH
## 2535                                      1460 G STREET
## 2536                                     2050 VIBORG RD
## 2537                                   500 CAMPUS DRIVE
## 2538                                     91 BEEHIVE CIR
## 2539                                  1500 WATERS PLACE
## 2540                                  1263 DELAWARE AVE
## 2541                               801 POINCIANA AVENUE
## 2542                                       6 13TH AVE E
## 2543                                5808 W 110TH STREET
## 2544                                      205 PARKER ST
## 2545                               200 BELLE TERRE ROAD
## 2546            CARR.2 KM.1.4 AVE. SEVERIANO CUEVAS #18
## 2547                      3101 SW SAM JACKSON PARK ROAD
## 2548                                     215 W JANSS RD
## 2549              4070 HIGHWAY 17 BYPASS PO DRAWER 3350
## 2550                                  2605 CIRCLE DRIVE
## 2551                          5880 SOUTH HOSPITAL DRIVE
## 2552                                 4102 WOOLWORTH AVE
## 2553                                      1501 E 3RD ST
## 2554                                   601 S SEVENTH ST
## 2555                                      350 N WALL ST
## 2556                                    610 WEST BYPASS
## 2557                    152 WACCAMAW MEDICAL PARK DRIVE
## 2558                         8050 WEST NORTHVIEW STREET
## 2559                           16250 SAND CANYON AVENUE
## 2560                                    1235 E CHEROKEE
## 2561                                  315 W MADISON AVE
## 2562                                 1406 6TH AVE NORTH
## 2563                                      601 GROVE AVE
## 2564                               1600 MEDICAL PARKWAY
## 2565                                  751 NE BLAKELY DR
## 2566                    P O BOX 429, 402 NORTH MAPLE ST
## 2567                                   791 E SUMMIT AVE
## 2568                                 300 SEASIDE AVENUE
## 2569                                   1111 11TH STREET
## 2570                                   6000 HOSPITAL DR
## 2571                              621 NORTH HALL STREET
## 2572                                    100 COUNTY RD B
## 2573                                   951 COURT AVENUE
## 2574                                       655 W 8TH ST
## 2575                                    29 EAST 29TH ST
## 2576                                3000 HOSPITAL DRIVE
## 2577                            25 HOSPITAL CENTER BLVD
## 2578                               1555 EXCHANGE AVENUE
## 2579                                5830 N W BARRY ROAD
## 2580                                  4700 LADY MOON DR
## 2581                             3231 MCMULLEN BOOTH RD
## 2582                      PO BOX 160 - 602 CHASE AVENUE
## 2583                                3551 N BROAD STREET
## 2584                                   2300 WESTERN AVE
## 2585                       451 EAST BISHOP FEDERAL LANE
## 2586                                   1210 KY HWY 36 E
## 2587 EDIF JESUS T PINEIRO AVE FERNANDEZ JUNCOS BO PUEBL
## 2588                                       23901 LAHSER
## 2589                 2016 SOUTH ALABAMA AVENUE, BOX 886
## 2590                                 1801 ASHLEY CIRCLE
## 2591                                    3933 S BROADWAY
## 2592                                   HWY 43 S BOX 847
## 2593                                 375 DIXMYTH AVENUE
## 2594                                     401 KENDALL DR
## 2595                                  2030 LAY DAM ROAD
## 2596                            9613 EAST US HIGHWAY 36
## 2597                             7939 U S HWY 165 SOUTH
## 2598                                 7519 HOSPITAL ROAD
## 2599                         2601 EAST ROOSEVELT STREET
## 2600                              401 12TH STREET NORTH
## 2601                                3719 DAUPHIN STREET
## 2602                                  800 SPRUCE STREET
## 2603                               1000 WEST LINCOLNWAY
## 2604                                      100 DAWN LANE
## 2605                     1311 EAST GENERAL CAVAZOS BLVD
## 2606                             700 EAST COTTONWOOD RD
## 2607                                        720 WOOD ST
## 2608                                   604 STONE AVENUE
## 2609                                  11690 GROOMS ROAD
## 2610                     6200 NORTH LA CHOLLA BOULEVARD
## 2611                             302 SOUTH WAYNE STREET
## 2612                                  1705 S TARBORO ST
## 2613                               111 SOUTH 5TH STREET
## 2614                           123 MEDICAL CENTER DRIVE
## 2615                                 1046 6TH AVENUE SW
## 2616                                    CARR 506 KM 1 0
## 2617                        1306 KANAWHA BOULEVARD EAST
## 2618                                    2800 10TH AVE N
## 2619                                  2200 E WASHINGTON
## 2620                                  712 SOUTH CASCADE
## 2621                                  811 WRIGHT STREET
## 2622                          4201 MEDICAL CENTER DRIVE
## 2623                         701 W COCOA BEACH CAUSEWAY
## 2624                                 4800 KAWAIHAU ROAD
## 2625                                        301 TROY DR
## 2626                                   108 DENVER TRAIL
## 2627                                    911 N SHELBY ST
## 2628                                         2124 14 ST
## 2629                                  1400 EAST SIDE RD
## 2630                                     2000 CHURCH ST
## 2631                              8 PRESTIGE CIRCLE 101
## 2632                                     60 WEST STREET
## 2633                                  ONE NORTON AVENUE
## 2634                                 1559 SPARTA STREET
## 2635                                1034 NORTH 500 WEST
## 2636                            1101 EAST SPRING STREET
## 2637                                      651 E 25TH ST
## 2638                           1001 SAM PERRY BOULEVARD
## 2639                                2950 ELMWOOD AVENUE
## 2640                             5000 SAN BERNARDINO ST
## 2641                                 315 OAK ST BOX 550
## 2642                                   213 EAST REDWOOD
## 2643                                    100 PARK STREET
## 2644                                     711 W ADAMS ST
## 2645                                     777 BANNOCK ST
## 2646                               3-3420 KUHIO HIGHWAY
## 2647                                      64 ROBBINS ST
## 2648                                802 N MINTER AVENUE
## 2649                                     5800 RIDGE AVE
## 2650                                   185 ROSEBERRY ST
## 2651                             520 NORTH THIRD AVENUE
## 2652                               130 WEST RAVINE ROAD
## 2653                                   61 GRASSE STREET
## 2654                                 1020 FERTITTA BLVD
## 2655                              4673 EUGENE WARE ROAD
## 2656                          170 ALAMEDA DE LAS PULGAS
## 2657                                  128  N FM RD 3167
## 2658                             1900 KILDARE FARM ROAD
## 2659                               6777 WEST MAPLE ROAD
## 2660                                 575 RIVERGATE LANE
## 2661                                      1400 NOYES ST
## 2662                                  247 S MAIN STREET
## 2663                              39-000 BOB HOPE DRIVE
## 2664                            106 MEDICAL CENTER BLVD
## 2665                                    347 ANDRIEUX ST
## 2666                               44 SOUTH MAIN STREET
## 2667                                     700 W GROVE ST
## 2668                                     406 W NEELY ST
## 2669                                   85 EAST US HWY 6
## 2670                                400 MEDICAL PARK DR
## 2671                               5353 REYNOLDS STREET
## 2672                          701 SOUTH DELLWOOD AVENUE
## 2673                      ONE CHILDREN'S HOSPITAL DRIVE
## 2674                           100 MEDICAL CENTER DRIVE
## 2675                                300 LONGWOOD AVENUE
## 2676                                      855 S MAIN ST
## 2677                                      150 W HIGH ST
## 2678                                      111 N 49TH ST
## 2679                                  709 W MAIN STREET
## 2680                    7400 EAST THOMPSON PEAK PARKWAY
## 2681                          60 HODGES AVENUE, BOX 151
## 2682                   1200 SOUTH CEDAR CREST BOULEVARD
## 2683                                   1100 LAKEVIEW DR
## 2684                                200 1ST STREET WEST
## 2685                               707 EAST MAIN STREET
## 2686                             1000 NORTH MAIN STREET
## 2687                                   2157 MAIN STREET
## 2688                                151 REDSTONE AVE SE
## 2689                                     3300 S FM 1788
## 2690                                     498 NW 18TH ST
## 2691                                   15107 VANOWEN ST
## 2692                            4920 NE STALLINGS DRIVE
## 2693                                  100 FALLWOOD ROAD
## 2694                                   5352 LINTON BLVD
## 2695                                      1515 PARK AVE
## 2696                                       700 BROADWAY
## 2697                                    1225 N STATE ST
## 2698                                   1101 EAST MONROE
## 2699                                  201 ALBERT AVENUE
## 2700                                     3901 W 15TH ST
## 2701                             1050 EAST SOUTH TEMPLE
## 2702                                  6580 165TH STREET
## 2703                                 1161 E COVINA BLVD
## 2704                             1000 MINERAL POINT AVE
## 2705                                   ST ANTHONY'S WAY
## 2706                                  1306 MARICOPA HWY
## 2707                         4755 OGLETOWN-STANTON ROAD
## 2708                         900 NORTH HIGH SCHOOL ROAD
## 2709                              11705 MERCY BOULEVARD
## 2710                           10864 TEXAS HEALTH TRAIL
## 2711                                2959 US HIGHWAY 275
## 2712                                    135 HIGHWAY 402
## 2713                                  110 S MAIN STREET
## 2714                                   500 EAST WEBSTER
## 2715                                    5451 WALNUT AVE
## 2716                               1925 WOODWINDS DRIVE
## 2717                               216 EAST MAIN STREET
## 2718                             5201 NORTH SHORE DRIVE
## 2719                                    155 GLASSON WAY
## 2720                               1000 W HARLEM AVENUE
## 2721                                1320 MERCY DRIVE NW
## 2722                                 1924 ALCOA HIGHWAY
## 2723                               1425 PORTLAND AVENUE
## 2724                                 2701 W 68TH STREET
## 2725                                       921 AVENUE G
## 2726                                 150 WEST 100 NORTH
## 2727                      REECE CAMPUS 2600 OTTAWA ROAD
## 2728                                  2520 5TH STREET N
## 2729                                       101 AVENUE J
## 2730                                       640 PARK AVE
## 2731                              11740 COLUMBIA STREET
## 2732                           400 EAST CHESTNUT STREET
## 2733                                 800 W CENTRAL ROAD
## 2734                          810 SOUTH BROADWAY STREET
## 2735                                363 HIGHLAND AVENUE
## 2736                             217 SOUTH THIRD STREET
## 2737                                      15248 11TH ST
## 2738                                1200 EL CAMINO REAL
## 2739                                 145 MEMORIAL DRIVE
## 2740                             501 EAST LOCUST STREET
## 2741                                   640 W WASHINGTON
## 2742                                    1 HEALTH CIRCLE
## 2743                     310 BENNETT STREET PO BOX 1081
## 2744                                       900 N 2ND ST
## 2745                                  91 HOSPITAL DRIVE
## 2746                                    201 E SAMPLE RD
## 2747                              375 LAGUNA HONDA BLVD
## 2748                         2601 GENE GEORGE BOULEVARD
## 2749                           1200 NORTH BEAVER STREET
## 2750                             13100 STUDERBAKER ROAD
## 2751                           1412 MILSTEAD AVENUE, NE
## 2752                                   3260 HOSPITAL DR
## 2753                         4801 WELDON SPRING PARKWAY
## 2754                                18341 US HIGHWAY 41
## 2755                                    1215 E COURT ST
## 2756                               1100 BROOKHAVEN ROAD
## 2757                                1001 E PENNSYLVANIA
## 2758                                      304 WRIGHT ST
## 2759                           900 EAST WHITESTONE BLVD
## 2760                              825 CHALKSTONE AVENUE
## 2761                           1324 NORTH SHERIDAN ROAD
## 2762                               3033 W ORANGE AVENUE
## 2763                                  12502 USF PINE DR
## 2764                                 1229 C AVENUE EAST
## 2765                               529 CAPP HARLAN ROAD
## 2766                                      400 HOBART ST
## 2767                         401 W MOHAWK DR  SUITE 100
## 2768                                       760 BROADWAY
## 2769                               800 RAVIN HILL DRIVE
## 2770                            1711 WEST TEMPLE STREET
## 2771                                   16874 HIGHWAY 43
## 2772                                 1100 CARSON AVENUE
## 2773                                 200 HOSPITAL DRIVE
## 2774                      ONE ROBERT WOOD JOHNSON PLACE
## 2775               64026 HWY 434, SUITE 300 (3RD FLOOR)
## 2776                                      125 NEWMAN ST
## 2777                                  2520 VALLEY DRIVE
## 2778                           1653 TEMPLE AVENUE NORTH
## 2779                                       1140 RT 72 W
## 2780                       2200 EAST SHOW LOW LAKE ROAD
## 2781                                    1375 E 19TH AVE
## 2782                                  507 SOUTH MAIN ST
## 2783                                2215 TRUXTUN AVENUE
## 2784                                    100 WOMAN'S WAY
## 2785                       430 RANKIN DRIVE P O BOX 730
## 2786                                 671 HOES LANE WEST
## 2787                                    812 N LOGAN AVE
## 2788                                    1100 SW 11TH ST
## 2789                             2752 CENTURY BOULEVARD
## 2790                           8330 LAKEWOOD RANCH BLVD
## 2791                                 100 MCDOUGAL DRIVE
## 2792                              609 WEST MAPLE AVENUE
## 2793                                   21644 STATE RD 7
## 2794                          401 SOUTH SANTA FE AVENUE
## 2795                                  207 EAST F STREET
## 2796                                     1475 W 49TH ST
## 2797                                    300 CENTRAL AVE
## 2798                                 1420 TUSCULUM BLVD
## 2799                                         20 YORK ST
## 2800                        150 NORTH EAGLE CREEK DRIVE
## 2801                       505 SOUTH JOHN REDDITT DRIVE
## 2802                                 833 PARK EAST BLVD
## 2803                            303 N CLYDE MORRIS BLVD
## 2804                                    401 PALMETTO ST
## 2805                       P O BOX 406, 1113 SHERMAN ST
## 2806                               8201 HEALTHCARE LOOP
## 2807                                  41 EAST POST R0AD
## 2808                                  2500 NE NEFF ROAD
## 2809                            311 NORTH MORROW STREET
## 2810                           915 WEST MICHIGAN STREET
## 2811                                     5 ALUMNI DRIVE
## 2812                               49725 COUNTY ROAD 83
## 2813                                    2401 S  31ST ST
## 2814                                  714 LINCOLN ST NE
## 2815                                  235 W FLETCHER ST
## 2816                                   900 SUNSET DRIVE
## 2817                               5454 YORKTOWNE DRIVE
## 2818                       2518 JIMMY LEE SMITH PARKWAY
## 2819                              5301 E HURON RIVER DR
## 2820                                      100 N MAIN ST
## 2821                  2801 MARTIN LUTHER KING, JR DRIVE
## 2822                                1200 W MAPLE AVENUE
## 2823                                   134 HOMER AVENUE
## 2824                           301 2ND STREET NORTHEAST
## 2825                                        1945 RTE 33
## 2826                            300 RIDGE MEDICAL PLAZA
## 2827                                 1756 SAGAMORE ROAD
## 2828                                    2924 BROOK ROAD
## 2829                                  4901 COLLEGE BLVD
## 2830                              1200 NORTH 7TH STREET
## 2831                               1001 SCHNEIDER DRIVE
## 2832                                   3100 SW 62ND AVE
## 2833                                            BOX 547
## 2834                                  1000 SOUTH AVENUE
## 2835                        EISENHOWER ROAD AND FM 2185
## 2836                             500 SOUTH MAPLE STREET
## 2837                                  130 EAST LOCKLING
## 2838                             525 WEST ACACIA STREET
## 2839                                 1901 W HARRISON ST
## 2840                                    901 GRIFFIN AVE
## 2841                                     400 S CLARK ST
## 2842                               410 BENEDICTA AVENUE
## 2843                                  1017 S TRAVIS AVE
## 2844                              5025 N PAULINA STREET
## 2845                                  21 BRIDGEWAY ROAD
## 2846                            1001 JOHNSON FERRY ROAD
## 2847                                      52 OAK STREET
## 2848                          255 WEST LANCASTER AVENUE
## 2849                   MARGINAL CARRETERA NO 2, KM 47 7
## 2850                              2030 TEMPLE HILL ROAD
## 2851                            116 WEST THIGPEN AVENUE
## 2852           707 OLD DALTON ELLIJAY ROAD, PO BOX 1406
## 2853                       1501 NORTH WILLIAMSON AVENUE
## 2854                         7601 EAST IMPERIAL HIGHWAY
## 2855                               404 JEFFERSON STREET
## 2856                              336 NORTH HOOD STREET
## 2857                               401 BICENTENNIAL WAY
## 2858                                 350 HOSPITAL DRIVE
## 2859                           25500 POINT LOOKOUT ROAD
## 2860                                  100 HOSPITAL ROAD
## 2861                                     600 GRESHAM DR
## 2862                          701 SOUTHEAST  5TH STREET
## 2863                             10101 FOREST HILL BLVD
## 2864                                3000 32ND AVE SOUTH
## 2865                                  150 KINGSLEY LANE
## 2866                                10580 N MERIDIAN ST
## 2867                                 2600 MILLER STREET
## 2868                                      7600 RIVER RD
## 2869                                 368 NE FRANKLIN ST
## 2870                                   410 PILGRIM BLVD
## 2871                                  1812 VERDUGO BLVD
## 2872                                   3615 19TH STREET
## 2873                              223 N VAN DIEN AVENUE
## 2874                                        300 S BYRON
## 2875                           2855 OLD HIGHWAY 5 NORTH
## 2876                             401 MEDICAL PARK DRIVE
## 2877                            1000 EAST CHERRY STREET
## 2878                                        BREWSTER RD
## 2879                                 205 E GRANT STREET
## 2880                               1401 WEST ASH STREET
## 2881                           1700 MOUNT VERNON AVENUE
## 2882               CALLE ISAAC GONZALEZ ESQUINA LEDESMA
## 2883                                600 WILSON CREEK RD
## 2884                               8001 BRUCEVILLE ROAD
## 2885                                      1204 MOUND ST
## 2886                            2075 EAST FLAMINGO ROAD
## 2887                                       800 S ASH ST
## 2888                                         206 BAY ST
## 2889                           1102 CONSTITUTION AVENUE
## 2890                            94 OLD SHORT HILLS ROAD
## 2891                                     1220 3RD AVE W
## 2892                                    101 DATES DRIVE
## 2893                                 1010 SPRUCE STREET
## 2894                                3003 BEE CAVES ROAD
## 2895                           6644 EAST BAYWOOD AVENUE
## 2896                                2233 STATE ROUTE 86
## 2897                            2460 CURTIS ELLIS DRIVE
## 2898                                   2000 EOFF STREET
## 2899                            6601 WHITE FEATHER ROAD
## 2900                                 305 NORTH MCKINNEY
## 2901                             913 NORTH DIXIE AVENUE
## 2902                                    6819 PLUM CREEK
## 2903                             701 EAST ORANGE STREET
## 2904                                2042 JUNIPER AVENUE
## 2905                            1225 WILSHIRE BOULEVARD
## 2906                              9333 IMPERIAL HIGHWAY
## 2907                                   2309 ANTONIO AVE
## 2908                          2626 CAPITAL MEDICAL BLVD
## 2909                                  555 SOUTH 70TH ST
## 2910                                  2401 GILLHAM ROAD
## 2911                    100 FAIRVIEW DRIVE - PO BOX 817
## 2912                                         PO BOX 151
## 2913                                         255 N 30TH
## 2914                                  1000 THIRD STREET
## 2915                                    1600 N ROSE AVE
## 2916                                  380 SUMMIT AVENUE
## 2917                     1740 WEST TAYLOR ST SUITE 1400
## 2918                                     1031 7TH ST NE
## 2919                           751 MEDICAL CENTER COURT
## 2920                                 1700 E 19TH STREET
## 2921                                   1397 WEIMER ROAD
## 2922                                      615 FULTON ST
## 2923                 5555 GROSSMONT CENTER DRIVE BOX 58
## 2924                                       800 W 9TH ST
## 2925                           1500 COMMONWEALTH AVENUE
## 2926                            9601 STEILACOOM BLVD SW
## 2927                                 43563 HWY 299 EAST
## 2928                              1601 GOLF COURSE ROAD
## 2929                                  4401 WORNALL ROAD
## 2930                                450 EAST ROMIE LANE
## 2931                                      125 SW 7TH ST
## 2932                                  700 SOUTH PARK ST
## 2933                                        800 11TH ST
## 2934                                2050 FAIRMONT DRIVE
## 2935                                    600 MT HWY 91 S
## 2936                               LANGHORNE-NEWTOWN RD
## 2937                                   778 SCOGIN DRIVE
## 2938                                    845 PARKSIDE ST
## 2939                                9920 TALBERT AVENUE
## 2940                           303 MEDICAL CENTER DRIVE
## 2941                           404 WEST FOUNTAIN STREET
## 2942                                101 INDUSTRIAL ROAD
## 2943                               425 JACK MARTIN BLVD
## 2944                                67252 INDUSTRY LANE
## 2945                               15200 COMMUNITY ROAD
## 2946                                 720 HOSPITAL DRIVE
## 2947                                555 CREEKSIDE XING,
## 2948                           1000 POLE CREEK CROSSING
## 2949                                 1101 WOODSON DRIVE
## 2950                          11150 US HIGHWAY 49 NORTH
## 2951                                     252 MCHENRY ST
## 2952                           210 SOUTH VERMONT AVENUE
## 2953                                3001 HOSPITAL DRIVE
## 2954                                  164 SUMMIT AVENUE
## 2955                                    24 HOSPITAL AVE
## 2956                                          PO BOX 43
## 2957                        930 PROFESSIONAL PARK DRIVE
## 2958                            409 SOUTH SECOND STREET
## 2959                              5623 PULPIT PEAK VIEW
## 2960                                 1900 ELECTRIC ROAD
## 2961                                4081 E OLYMPIC BLVD
## 2962                                    1104 E GRACE ST
## 2963                                 102 NORTH BROADWAY
## 2964                        14502 WEST MEEKER BOULEVARD
## 2965                         80 JESSE HILL, JR DRIVE SE
## 2966                                      7007 GROVE RD
## 2967                      100 PORT WASHINGTON BOULEVARD
## 2968                                900 S ATLANTIC BLVD
## 2969                              234 EAST 149TH STREET
## 2970                                     4608 HIGHWAY 1
## 2971                   450 NORTHSIDE CHEROKEE BOULEVARD
## 2972                                       6001 WEBB RD
## 2973                              300 ROCKEFELLER DRIVE
## 2974                                744 WEST 9TH STREET
## 2975                                  213 SECOND AVE NE
## 2976                              815 SOUTH PINE STREET
## 2977                          1111 N RONALD REAGAN PKWY
## 2978                               229 SOUTH 7TH STREET
## 2979                                  6 GLEN COVE DRIVE
## 2980                   1801 MARTIN LUTHER KING JR DRIVE
## 2981                                         30 13TH ST
## 2982                                  1220 MISSOURI AVE
## 2983                     6801 GOVERNOR GC PERRY HIGHWAY
## 2984                               5383 STATE ROUTE 154
## 2985                                 2520 CHERRY AVENUE
## 2986                                  901 E 18TH STREET
## 2987                                 1800 EAST PARK AVE
## 2988                                218 CORPORATE DRIVE
## 2989                                      11750 BIRD RD
## 2990                           251 NORTH  FOURTH STREET
## 2991                           1060 FIRST COLONIAL ROAD
## 2992                                  100 MEDICAL PLAZA
## 2993                                 1416 GEORGE DIETER
## 2994                                   2200 N BRYAN AVE
## 2995                                 310 SUNNYVIEW LANE
## 2996          315 N WASHINGTON AVE  POST OFFICE BOX 368
## 2997                           2929 WOODLAND PARK DRIVE
## 2998                                  11203 MAIN STREET
## 2999                                11100 EUCLID AVENUE
## 3000                             6801 AIRPORT BOULEVARD
## 3001                                     725 WELCH ROAD
## 3002                                    50 UNION STREET
## 3003                                 9515 HOLY CROSS LN
## 3004                                  211 SKYLINE DRIVE
## 3005                                   955 S BAILEY AVE
## 3006                                      616 E 13TH ST
## 3007                          6260 HUDSON CROSSING PKWY
## 3008                          885 NORTH SANDUSKY AVENUE
## 3009                              1030 RIVER OAKS DRIVE
## 3010                                     501 S RAGSDALE
## 3011                                504 LIPSCOMB STREET
## 3012                                1415 KINCAID STREET
## 3013                                523 EAST STATE ROAD
## 3014                                    180 ROWLAND WAY
## 3015                                    302  SILVER AVE
## 3016                               825 CENTENNIAL DRIVE
## 3017                               3333 NORTH WEBB ROAD
## 3018                                 100 HOSPITAL DRIVE
## 3019                                     ONE MELLON WAY
## 3020                                   456 BURNLEY ROAD
## 3021                                       865 STONE ST
## 3022                          456 GROS VENTRE AVE, RR 1
## 3023                                   345 TENTH AVENUE
## 3024                                  81 BALL PARK ROAD
## 3025                                      1400 W 4TH ST
## 3026                         1201 HEALTH CENTER PARKWAY
## 3027                               258 SAN JORGE STREET
## 3028                               10150 SE 32ND AVENUE
## 3029                                   2900 LAMB CIRCLE
## 3030                               2325 CORONADO STREET
## 3031                                  2350 MEADOWS BLVD
## 3032                       1638 OWEN DRIVE P O BOX 2000
## 3033                                   333 MERCY AVENUE
## 3034                             1900 NORTH HIGLEY ROAD
## 3035                                   2000 N DEWEY AVE
## 3036                                   6500 NEWBERRY RD
## 3037                                    240 W TYRONE RD
## 3038                                     2835 HWY 231 N
## 3039                            700 LAWRENCE EXPRESSWAY
## 3040                                    50 LEROY STREET
## 3041                      1139 E SONTERRA BLVD, STE 535
## 3042                               1086 FRANKLIN STREET
## 3043                                 1 WICKERSHAM DRIVE
## 3044                               2817 NEW PINERY ROAD
## 3045                            1300 EAST CENTER STREET
## 3046                                  6 NORTH COVINGTON
## 3047                             210 WEST WALNUT STREET
## 3048                                   911 SUNSET DRIVE
## 3049                            1334 SW BUCHANAN STREET
## 3050                                7600 CENTRAL AVENUE
## 3051                             10655 STEEPLETOP DRIVE
## 3052                                  2000 OGDEN AVENUE
## 3053                                3100 TONGASS AVENUE
## 3054                                   3636 HIGH STREET
## 3055                               2501 KENTUCKY AVENUE
## 3056                              600 SOUTH 13TH STREET
## 3057                            11500 SPACE CENTER BLVD
## 3058                                 601 DALLAS HIGHWAY
## 3059                                   850 W BARAGA AVE
## 3060                                     34 PARK STREET
## 3061                                4253 CROSSOVER ROAD
## 3062                              909 WEST FIRST STREET
## 3063                               900 W CLAIREMONT AVE
## 3064                                    7500 STATE ROAD
## 3065                                     70 EAST STREET
## 3066                        111 FRANKLIN HEALTH COMMONS
## 3067                               232 WEST 25TH STREET
## 3068                                400 SUNRISE HIGHWAY
## 3069                                     2001 STULTS RD
## 3070                             1001 SAINT JOSEPH LANE
## 3071                                  901 MT VIEW DRIVE
## 3072                                    100 HEALTHY WAY
## 3073                              815 N VIRGINIA STREET
## 3074                                6245 DE LONGPRE AVE
## 3075                                    8260 ATLEE ROAD
## 3076                               400 EAST POLK STREET
## 3077                                       1527 MADISON
## 3078                                  100 MEDICAL DRIVE
## 3079                                 5000 UNIVERSITY DR
## 3080                                      24 CREE DRIVE
## 3081                                  611 SHERMAN AVE E
## 3082                                  9048 SUGAR ESTATE
## 3083                                      2022  13TH ST
## 3084                                      252 ROUTE 601
## 3085                              1703 NORTH BUERKLE ST
## 3086                                     611 ZEAGLER DR
## 3087                                  1025 MARSH STREET
## 3088                                      100 N MAIN ST
## 3089                                  214 CARTER STREET
## 3090                               1648 HUNTINGDON PIKE
## 3091                                1465 E PARKDALE AVE
## 3092                             1325 N HIGHLAND AVENUE
## 3093                      93 CAMPUS AVENUE - PO BOX 291
## 3094                                  320 THIRTEENTH ST
## 3095                               611 WEST PARK STREET
## 3096                               826 WEST KING STREET
## 3097                                9888 GENESEE AVENUE
## 3098                              611 S MARSHALL AVENUE
## 3099                                   320 LORETTO ROAD
## 3100                              9201 WEST THOMAS ROAD
## 3101                              855 N WESTHAVEN DRIVE
## 3102                                     600 ROE AVENUE
## 3103                                  2323 TEXAS STREET
## 3104                                  743 SPRING STREET
## 3105                   7115 GREENVILLE AVENUE SUITE 100
## 3106                                2400 SOUTH AVENUE A
## 3107                                         214 4TH ST
## 3108                             2000 PEPPERELL PARKWAY
## 3109                                1501 PASADENA AVE S
## 3110              102 MAJOR ALLEN   POST OFFICE BOX 70D
## 3111                                  3651 COLLEGE BLVD
## 3112                                 203 HOSPITAL DRIVE
## 3113                                 309 W BEVERLY BLVD
## 3114                                       301 TYSON AV
## 3115                             1341 WEST SIXTH STREET
## 3116                                     200 MAY STREET
## 3117                              1915 EISENHOWER DRIVE
## 3118                              TWO ST VINCENT CIRCLE
## 3119                                  240 SPRUCE STREET
## 3120                                  2170 SOUTH AVENUE
## 3121                                 1801 - 16TH STREET
## 3122                                     6001 KYLE PKWY
## 3123                                   1635 CENTRAL AVE
## 3124                                    1634 ELTON ROAD
## 3125                     200 PERRY HOUSE ROAD, BOX 1447
## 3126                                   420 S 5TH AVENUE
## 3127                                 719 DETROIT STREET
## 3128                          8012 SOUTH CRANDON AVENUE
## 3129                                3200 CANYON LAKE DR
## 3130                                      402 MERCER ST
## 3131                           2014 QUAIL HOLLOW CIRCLE
## 3132                                31700 TEMECULA PKWY
## 3133                       301 MEMORIAL MEDICAL PARKWAY
## 3134                               355 AVE FONT MARTELO
## 3135                               4301 MAPLESHADE LANE
## 3136                                55 FOUNDATION DRIVE
## 3137                                   1801 WEST ALCOTT
## 3138                                       711 GREEN RD
## 3139                            221 STEWARTS FERRY PIKE
## 3140                           1250 S WASHINGTON STREET
## 3141                      12451 EAST 100TH STREET NORTH
## 3142                                 260 HOSPITAL DRIVE
## 3143                            3535 SOUTHERN BOULEVARD
## 3144         306 PRAIRIE AVENUE SW  POST OFFICE BOX 160
## 3145                                450 WEST HIGHWAY 22
## 3146                            440 HOPKINSVILLE STREET
## 3147                            700 SCOTT & WHITE DRIVE
## 3148                            801 POLE LINE ROAD WEST
## 3149                        P O BOX 399, 3307 BARADA ST
## 3150                             933 EAST PIERCE STREET
## 3151                               160 EAST MAIN STREET
## 3152                              2450 RIVERSIDE AVENUE
## 3153                                3100 E FLETCHER AVE
## 3154                 3424 KOSSUTH AVENUE & 210TH STREET
## 3155                          1124 WASHINGTON BOULEVARD
## 3156                                200 SE HOSPITAL AVE
## 3157                              555 EAST HARDY STREET
## 3158                            923 EAST CENTRAL AVENUE
## 3159                                1102 W TRENTON ROAD
## 3160                            501 NORTH LANSDOWNE AVE
## 3161                                4940 EASTERN AVENUE
## 3162                              1000 NORTH LEE AVENUE
## 3163                                333 PINE RIDGE BLVD
## 3164                             45-547 PLUMERIA STREET
## 3165                                103 J V MANGUBAT DR
## 3166                                   1900 COLLEGE AVE
## 3167                            16901 LAKESIDE HILLS CT
## 3168                                     16 GUION PLACE
## 3169                               5409 N KNOXVILLE AVE
## 3170                               7900 LEE'S SUMMIT RD
## 3171                                    1415 TULANE AVE
## 3172                               3901 BEAUBIEN STREET
## 3173                          180 WEST ESPLANADE AVENUE
## 3174                                 5000 W CHAMBERS ST
## 3175                              1545 E SOUTHLAKE BLVD
## 3176                                   800 W MEETING ST
## 3177                                8118 GOOD LUCK ROAD
## 3178                              1721 S STEPHENSON AVE
## 3179                                     10 HEALTHY WAY
## 3180                               481 INTERSTATE DRIVE
## 3181                           1850 TOWN CENTER PARKWAY
## 3182                                   127 NORTH STREET
## 3183                            108 MUNOZ RIVERA STREET
## 3184                                1025 S ANAHEIM BLVD
## 3185                              830 WASHINGTON STREET
## 3186                                   5450 FORT STREET
## 3187                               1240 HUFFMAN MILL RD
## 3188                                    555 LINN STREET
## 3189                                   3462 HOSPITAL RD
## 3190                               12866 TROXLER AVENUE
## 3191                                 898 COLLEGE STREET
## 3192                             1900 SILVER CROSS BLVD
## 3193                                      201 LYONS AVE
## 3194                                       700 RIVER DR
## 3195                               1641 WHITEHEAD DRIVE
## 3196                         210 MEDICAL PAVILION DRIVE
## 3197                          9150 HUEBNER RD SUITE 100
## 3198                                1515 E OCEAN AVENUE
## 3199                                        601 MAIN ST
## 3200                                   1600 11TH STREET
## 3201                       455 SILICON VALLEY BOULEVARD
## 3202                              100 MEDICAL BOULEVARD
## 3203                               1501 WEST ELK AVENUE
## 3204                                   3288 MOANALUA RD
## 3205                                  11375 CORTEZ BLVD
## 3206                                       900 RIDGE ST
## 3207                             9400 ZANE AVENUE NORTH
## 3208                          1401 E TRINITY MILLS ROAD
## 3209                                1405 EAST KIRK ROAD
## 3210                           609 MEDICAL CENTER DRIVE
## 3211                              2827 FORT MISSOULA RD
## 3212                                   7601 OSLER DRIVE
## 3213                           9485 CRESTWYN HILLS COVE
## 3214                             501 SIXTH AVENUE SOUTH
## 3215                         2505 U S HIGHWAY 431 NORTH
## 3216                                601 CHILDREN'S LANE
## 3217                  600 NORTH HIGHLAND SPRINGS AVENUE
## 3218                              24800 SE STARK STREET
## 3219                                 102 E LAKE MEAD DR
## 3220                                   1101 OCILLA ROAD
## 3221                                       3559 PINE ST
## 3222                                  2001 KINGSLEY AVE
## 3223                                    6420 CLAYTON RD
## 3224                                   3015 N BALLAS RD
## 3225           1305 W CHEROKEE STREET - HIGHWAY 19 WEST
## 3226                             1201 WEST FRANK STREET
## 3227                             630 EAST MEDICAL DRIVE
## 3228                                 110 HOSPITAL DRIVE
## 3229                                      100 MERCY WAY
## 3230                              630 EAST RIVER STREET
## 3231                                7700 SOUTH BROADWAY
## 3232                   2600 EAST  PFLUGERVILLE  PARKWAY
## 3233                  500 NORTH CLARENCE NASH BOULEVARD
## 3234                                    16088 SAN PEDRO
## 3235                                  155 WILSON AVENUE
## 3236                            2801 SOUTH MAYHILL ROAD
## 3237                                    4 MEDICAL DRIVE
## 3238                             245 MEDICAL PARK DRIVE
## 3239                                    238 BARNES ROAD
## 3240                                    200 W CHURCH ST
## 3241                                 2570 HAYMAKER ROAD
## 3242                           201 EAST PLEASANT STREET
## 3243                           1000 MCKINLEY PARK DRIVE
## 3244                               400 EAST MAIN STREET
## 3245                                  340 BAGLEY CIRCLE
## 3246                                 2776 CLEVELAND AVE
## 3247                         1201 BISHOP ST, PO BOX 310
## 3248                             6655 SOUTH YALE AVENUE
## 3249                                  8 DOCTORS PARK RD
## 3250                           1570 NC 8 & 89 HWY NORTH
## 3251                            310 WEST HALSELL STREET
## 3252                             262 LEROY GEORGE DRIVE
## 3253                                901 LAKESHORE DRIVE
## 3254                                   150 PIONEER LANE
## 3255                              615 OLD SYMSONIA ROAD
## 3256                            1324 FIFTH NORTH STREET
## 3257                                   1101 SUMMIT ROAD
## 3258                                  250 OLD HOOK ROAD
## 3259                                301 W WALNUT STREET
## 3260                            901 WEST BEN WHITE BLVD
## 3261                                 1153 CENTRE STREET
## 3262                                   13652 CANTARA ST
## 3263                            2301 US HIGHWAY 74 WEST
## 3264                          STATE ROUTE 264 SOUTH 191
## 3265                                    2900 N RIVER RD
## 3266                               10101 RIDGEGATE PKWY
## 3267                                1955 WEST FRYE ROAD
## 3268          PUERTO RICO MEDICAL CENTER IN RIO PIEDRAS
## 3269                                   506 LENOX AVENUE
## 3270                                455 PARK GROVE LANE
## 3271                               18951 MEMORIAL NORTH
## 3272                            8102 CLEARVISTA PARKWAY
## 3273                                   2901 N FOURTH ST
## 3274                     9 J STREET EXT HERMANAS DAVILA
## 3275                            557 W WASHINGTON STREET
## 3276                               11101 N SHERMAN ROAD
## 3277                                  1211  24TH STREET
## 3278                                   CARR 135 KM 64 2
## 3279                              300 - 68TH STREET, SE
## 3280                            1700 WEST TOWNLINE ROAD
## 3281                                    175 MADISON AVE
## 3282                         500 MARTHA JEFFERSON DRIVE
## 3283                                         600 E BLVD
## 3284                                   1024 S LEMAY AVE
## 3285                                    2001 SOUTH MAIN
## 3286                                   822 W 4TH STREET
## 3287                          10300 SW EASTRIDGE STREET
## 3288                                  169 MARTIN AVENUE
## 3289                    4011 S MONROE MEDICAL PARK BLVD
## 3290                                   235 STATE STREET
## 3291                        1000 EAST WASHINGTON STREET
## 3292                            10 SOUTH HOSPITAL DRIVE
## 3293                                      421 S MAIN ST
## 3294                                 201 NW R D MIZE RD
## 3295                             1 MEDICAL CENTER DRIVE
## 3296                    2300 MARIE CURIE BLVD 5TH FLOOR
## 3297                                2863 STATE ROUTE 45
## 3298                         2122 MANCHESTER EXPRESSWAY
## 3299                                     3801 SPRING ST
## 3300                                   601 HAMILTON AVE
## 3301                                      99 RT 37 WEST
## 3302                              1600 HOSPITAL PARKWAY
## 3303                                11100 EUCLID AVENUE
## 3304                                 3999 RICHMOND ROAD
## 3305                                  1600 WALLACE BLVD
## 3306                                1645 LUTCHER AVENUE
## 3307                                   2101 E DUBOIS DR
## 3308                             865 SOUTH FIRST STREET
## 3309                            1708 WEST ROGERS AVENUE
## 3310                        11 UPPER RIVERDALE ROAD, SW
## 3311                                     1375 N MAIN ST
## 3312                                  205 PALMER AVENUE
## 3313                                      7500 MERCY RD
## 3314                                  59 PAGE HILL ROAD
## 3315                                   13207 RAVENNA RD
## 3316                               401 PARNASSUS AVENUE
## 3317                               189 EAST MAIN STREET
## 3318                             401 NORTHWEST H STREET
## 3319       P O BOX 34400, 6901 NORTH 72ND ST, STE 20300
## 3320                                        707 14TH ST
## 3321                       10501 EAST 91ST STREET SOUTH
## 3322                                   300 HIGHLAND AVE
## 3323                               6125 NORTH FRESNO ST
## 3324                                      201 S 14TH ST
## 3325                                   5460 WEST SAHARA
## 3326                             10109 EAST 79TH STREET
## 3327                          1227 EAST RUSHOLME STREET
## 3328                                  915 HIGHLAND BLVD
## 3329                                    181 MAIN STREET
## 3330                                651 WILLOW GROVE ST
## 3331                                     2900 W 16TH ST
## 3332                               473 E GREENVILLE AVE
## 3333                                1044 BELMONT AVENUE
## 3334                             50 NORTH MEDICAL DRIVE
## 3335                                    300 HOSPITAL DR
## 3336                                      1305 N ELM ST
## 3337                               901 WEST MAIN STREET
## 3338                                  708 N 18TH STREET
## 3339                              1050 VALDOSTA HIGHWAY
## 3340                                    3700 KOLBE ROAD
## 3341                                   18300 HIGHWAY 18
## 3342                            1401 ST. JOSEPH PARKWAY
## 3343                            2555 JIMMY JOHNSON BLVD
## 3344                                   1600 W WALNUT ST
## 3345                                2115 PARKVIEW DRIVE
## 3346                            12251 SOUTH 80TH AVENUE
## 3347                                      2190 HWY 85 N
## 3348                                1980 E WOODSMALL DR
## 3349                                     205 N EAST AVE
## 3350                                     718 TEANECK RD
## 3351                                18646 OXNARD STREET
## 3352                        100 DOCTOR WARREN TUTTLE DR
## 3353                                5848 SOUTH 300 EAST
## 3354                                     1208 6TH AVE E
## 3355                              2510 N  CALIFORNIA ST
## 3356                                     460 ANDES ROAD
## 3357                              700 EAST BROAD STREET
## 3358                                 161 MOUNT PELIA RD
## 3359                                    125 HOSPITAL DR
## 3360                                       P O BOX 4030
## 3361                                      702 N MAIN ST
## 3362                                        8885 SR 237
## 3363                                  1995 HIGHWAY 51 S
## 3364                               1200 EAST 3900 SOUTH
## 3365                                       1 ELLIOT WAY
## 3366                                      801 LOCUST ST
## 3367                              10455 LINCOLN HIGHWAY
## 3368                                  965 SHAMROCK LANE
## 3369                                      628 E 12TH ST
## 3370                                     321 MADISON ST
## 3371                                 727 HOSPITAL DRIVE
## 3372                         920 BELL AVENUE PO BOX 188
## 3373                         700 EAST UNIVERSITY AVENUE
## 3374                         504 NORTH CLEVELAND STREET
## 3375                                   126 HOSPITAL AVE
## 3376                                     5435 E 16TH ST
## 3377                                8400 NORTHWEST BLVD
## 3378                                  123 MCCOMB AVENUE
## 3379                                1872 ST LUKE'S BLVD
## 3380                                  2801 ATLANTIC AVE
## 3381                                310 SOUTH ROOSEVELT
## 3382                                     404 N CHESTNUT
## 3383                           2187 NORTH VICKEY STREET
## 3384                                 535 SOUTH FREEBORN
## 3385                           MEDICAL CENTER BOULEVARD
## 3386                                 187 WOLFORD AVENUE
## 3387                              7821 EAST HIGHWAY 153
## 3388                                   602 MICHIGAN AVE
## 3389                                  3300 GALLOWS ROAD
## 3390                                     75 PARK STREET
## 3391                               800 W RANDOL MILL RD
## 3392                 515 SOUTH MOORE STREET, PO BOX 160
## 3393                111 W 10TH AVE  POST OFFICE BOX 420
## 3394                                      3360 BURNS RD
## 3395                                 145 PEACOCK STREET
## 3396                               30 SOUTH BEHL STREET
## 3397                               1525 WEST 5TH STREET
## 3398                                1600 N CHESTNUT AVE
## 3399                                   550 FIRST AVENUE
## 3400                                     1101 26TH ST S
## 3401                                    150 DUNCAN ROAD
## 3402                         P O BOX 310, 706 EWING AVE
## 3403                                 13535 NEMOURS PKWY
## 3404                              4801 INTEGRIS PARKWAY
## 3405                                  5200 HARROUN ROAD
## 3406                     100 N E SAINT LUKE'S BOULEVARD
## 3407                     250 HOSPITAL DRIVE PO BOX 1817
## 3408                               1323 WEST 6TH STREET
## 3409                                  #4 HOSPITAL DRIVE
## 3410                             1680 EAST 120TH STREET
## 3411                                    903 SOUTH ADAMS
## 3412                                    1100 WEST BLUFF
## 3413                                  2525 S DOWNING ST
## 3414                                   1102 ROSE STREET
## 3415                                 2233 W DIVISION ST
## 3416                               510 ROOSEVELT STREET
## 3417                         1 MEDICAL CENTER BOULEVARD
## 3418                                 903 N COURT STREET
## 3419                                 ONE MEMORIAL DRIVE
## 3420                                 18321 CLARK STREET
## 3421                                5000 MEMORIAL DRIVE
## 3422                                     6250 HWY 83/84
## 3423                                   209 MOLLER DRIVE
## 3424                               BAY AND HIGHLAND AVE
## 3425                                        905 MAIN ST
## 3426                     258 PINE TREE DRIVE PO BOX 258
## 3427                              1110 GULF BREEZE PKWY
## 3428                                 200 HOSPITAL DRIVE
## 3429                                  7400 BARLITE BLVD
## 3430                       1000 SAINT CHRISTOPHER DRIVE
## 3431                            1400 SOUTH  DOBSON ROAD
## 3432                              700 WEST AVENUE SOUTH
## 3433                    83825 HIGHWAY 9    P O BOX 1270
## 3434                                 701 NORTH BROADWAY
## 3435                                     401 GETWELL DR
## 3436                                   725 AMERICAN AVE
## 3437                                2041 GEORGIA AVE NW
## 3438                                  1301 N ROSE DRIVE
## 3439                                2251 NORTH SHORE DR
## 3440                                   98 POPLAR STREET
## 3441                                   250 W 9TH STREET
## 3442                                  2661 COUNTY HWY I
## 3443                              700 EAST ALICE STREET
## 3444                                  40100 US HWY 27 N
## 3445                            8TH AVENUE AND C STREET
## 3446                                      WASHINGTON ST
## 3447                                    751 DERBY DRIVE
## 3448                                 2525 SEVERN AVENUE
##                      City State ZIP_Code               County_Name
## 1                  CAGUAS    PR    00725                    CAGUAS
## 2               HAMMONTON    NJ    08037                  ATLANTIC
## 3               BROUSSARD    LA    70518                 LAFAYETTE
## 4            CORAL GABLES    FL    33134                MIAMI-DADE
## 5           WICHITA FALLS    TX    76308                   WICHITA
## 6                   MAGEE    MS    39111                   SIMPSON
## 7                 HOUSTON    TX    77090                    HARRIS
## 8                 BRITTON    SD    57430                  MARSHALL
## 9              MARYSVILLE    WA    98271                 SNOHOMISH
## 10                 DAYTON    OH    45404                MONTGOMERY
## 11             FORT MYERS    FL    33908                       LEE
## 12              GREENWICH    CT    06830                 FAIRFIELD
## 13               KINGWOOD    TX    77339                    HARRIS
## 14                   CARO    MI    48723                   TUSCOLA
## 15                 WAUKON    IA    52172                 ALLAMAKEE
## 16                CHICAGO    IL    60649                      COOK
## 17               SYRACUSE    NE    68446                      OTOE
## 18                HUMACAO    PR    00792                   HUMACAO
## 19                   OREM    UT    84097                      UTAH
## 20               NEW YORK    NY    10035                  NEW YORK
## 21                 CASPER    WY    82609                   NATRONA
## 22                NEEDLES    CA    92363            SAN BERNARDINO
## 23                 IDABEL    OK    74745                 MCCURTAIN
## 24            SPRINGFIELD    MO    65806                    GREENE
## 25               CHEROKEE    NC    28719                     SWAIN
## 26                  SELLS    AZ    85634                      PIMA
## 27                ABILENE    TX    79606                    TAYLOR
## 28            DELL RAPIDS    SD    57022                 MINNEHAHA
## 29            BRATTLEBORO    VT    05301                   WINDHAM
## 30                  EUTAW    AL    35462                    GREENE
## 31              COLDWATER    KS    67029                  COMANCHE
## 32              ARLINGTON    TX    76001                   TARRANT
## 33               ANDERSON    SC    29622                  ANDERSON
## 34                CHICAGO    IL    60624                      COOK
## 35              PAGO PAGO    AS    96799          EASTERN DISTRICT
## 36                  CIDRA    PR    00739                     CIDRA
## 37                HOUSTON    TX    77054                    HARRIS
## 38             DILLINGHAM    AK    99576                DILLINGHAM
## 39           DAKOTA DUNES    SD    57049                     UNION
## 40                FAJARDO    PR    00738                   FAJARDO
## 41             AMITYVILLE    NY    11701                   SUFFOLK
## 42                 RANKIN    TX    79778                     UPTON
## 43                 HELENA    MT    59601           LEWIS AND CLARK
## 44                HOUSTON    TX    77004                    HARRIS
## 45             SHREVEPORT    LA    71103                     CADDO
## 46                 BERLIN    VT    05602                WASHINGTON
## 47                ARECIBO    PR    00614                   ARECIBO
## 48              WHITFIELD    MS    39193                    RANKIN
## 49              WHITFIELD    MS    39193                    RANKIN
## 50                 BREMEN    IN    46506                  MARSHALL
## 51              GREEN BAY    WI    54311                     BROWN
## 52               VALDOSTA    GA    31602                   LOWNDES
## 53               SAN JUAN    PR    00928                  SAN JUAN
## 54            RIO PIEDRAS    PR    00928                  SAN JUAN
## 55            CATONSVILLE    MD    21228                 BALTIMORE
## 56                STANLEY    WI    54768                  CHIPPEWA
## 57             FORT WORTH    TX    76177                   TARRANT
## 58               MOULTRIE    GA    31788                  COLQUITT
## 59              ALLENTOWN    PA    18104                    LEHIGH
## 60               RICHMOND    KY    40475                   MADISON
## 61              GALVESTON    TX    77550                 GALVESTON
## 62                 CUSTER    SD    57730                    CUSTER
## 63                  ERWIN    NC    28339                   HARNETT
## 64                RED BUD    IL    62278                  RANDOLPH
## 65              GREENWOOD    MS    38935                   LEFLORE
## 66                WINDSOR    VT    05089                   WINDSOR
## 67               FLUSHING    NY    11355                    QUEENS
## 68              BALTIMORE    MD    21209            BALTIMORE CITY
## 69               MOULTRIE    GA    31768                  COLQUITT
## 70             LOMA LINDA    CA    92354            SAN BERNARDINO
## 71              ANNAPOLIS    MD    21401              ANNE ARUNDEL
## 72                WICHITA    KS    67214                  SEDGWICK
## 73            SOUTHBRIDGE    MA    01550                 WORCESTER
## 74                 DENVER    CO    80206                    DENVER
## 75                  TERRY    MT    59349                   PRAIRIE
## 76         HARKER HEIGHTS    TX    76548                      BELL
## 77                RALEIGH    MS    39153                     SMITH
## 78              EL DORADO    KS    67042                    BUTLER
## 79                ANAHEIM    CA    92806                    ORANGE
## 80            SAN GABRIEL    CA    91776               LOS ANGELES
## 81              WORCESTER    MA    01604                 WORCESTER
## 82                   EDNA    TX    77957                   JACKSON
## 83         BLACK MOUNTAIN    NC    28711                  BUNCOMBE
## 84             WILMINGTON    NC    28402               NEW HANOVER
## 85              CHARLOTTE    NC    28210               MECKLENBURG
## 86                LOCKNEY    TX    79241                     FLOYD
## 87             HUNTINGTON    WV    25701                    CABELL
## 88            OSAGE BEACH    MO    65065                    CAMDEN
## 89              VALENTINE    NE    69201                    CHERRY
## 90            FRONT ROYAL    VA    22630                    WARREN
## 91             CHARLESTON    WV    25301                   KANAWHA
## 92                  DERRY    NH    03038                ROCKINGHAM
## 93                HOUSTON    TX    77030                    HARRIS
## 94               CALDWELL    ID    83605                    CANYON
## 95                    JAY    FL    32565                SANTA ROSA
## 96               FAULKTON    SD    57438                     FAULK
## 97                TAVARES    FL    32778                      LAKE
## 98              VARNVILLE    SC    29944                   HAMPTON
## 99                OSCEOLA    WI    54020                      POLK
## 100             LAFAYETTE    LA    70508                 LAFAYETTE
## 101               FOSSTON    MN    56542                      POLK
## 102                MONROE    MI    48162                    MONROE
## 103           NORTHAMPTON    MA    01060                 HAMPSHIRE
## 104              LAKEWOOD    CA    90712               LOS ANGELES
## 105          PHOENIXVILLE    PA    19460                   CHESTER
## 106                  MESA    AZ    85209                  MARICOPA
## 107                DAYTON    OH    45405                MONTGOMERY
## 108           SAINT LOUIS    MO    63136                 ST. LOUIS
## 109             VANCOUVER    WA    98686                     CLARK
## 110               WICHITA    KS    67226                  SEDGWICK
## 111              HOLDREGE    NE    68949                    PHELPS
## 112          JERSEY SHORE    PA    17740                  LYCOMING
## 113             BALTIMORE    MD    21229            BALTIMORE CITY
## 114                HUDSON    FL    34667                     PASCO
## 115          MADISONVILLE    KY    42431                   HOPKINS
## 116             WESTBROOK    ME    04092                CUMBERLAND
## 117                  TROY    NY    12180                RENSSELAER
## 118         WOODLAND PARK    CO    80863                    TELLER
## 119            FORT WORTH    TX    76104                   TARRANT
## 120                 FORKS    WA    98331                   CLALLAM
## 121            MONTICELLO    IN    47960                     WHITE
## 122              ROSEMEAD    CA    91770               LOS ANGELES
## 123              LEESBURG    FL    34748                      LAKE
## 124                MEQUON    WI    53097                   OZAUKEE
## 125                BEAVER    UT    84713                    BEAVER
## 126          MURFREESBORO    TN    37129                RUTHERFORD
## 127                 BRYAN    TX    77802                    BRAZOS
## 128               HAMMOND    IN    46320                      LAKE
## 129                TUCSON    AZ    85704                      PIMA
## 130                ANTIGO    WI    54409                  LANGLADE
## 131               DECATUR    GA    30033                   DE KALB
## 132           FARMERVILLE    LA    71241                     UNION
## 133             AMSTERDAM    NY    12010                MONTGOMERY
## 134                 NEPHI    UT    84648                      JUAB
## 135                 DELHI    LA    71232                  RICHLAND
## 136                ALBION    NE    68620                     BOONE
## 137              COLUMBUS    KS    66725                  CHEROKEE
## 138            ALEXANDRIA    MN    56308                   DOUGLAS
## 139             PITTSBURG    KS    66762                  CRAWFORD
## 140            SANTA CRUZ    CA    95065                SANTA CRUZ
## 141                 CRETE    NE    68333                    SALINE
## 142              SYRACUSE    NY    13210                  ONONDAGA
## 143                HELENA    MT    59601           LEWIS AND CLARK
## 144             SAN DIEGO    CA    92120                 SAN DIEGO
## 145              GOODYEAR    AZ    85395                  MARICOPA
## 146                NOWATA    OK    74048                    NOWATA
## 147            SWAINSBORO    GA    30401                   EMANUEL
## 148           BOLINGBROOK    IL    60440                      WILL
## 149                 PONCE    PR    00717                     PONCE
## 150                CHINLE    AZ    86503                    APACHE
## 151              O FALLON    IL    62269                 ST. CLAIR
## 152                OSWEGO    KS    67356                   LABETTE
## 153            SOUTH BEND    IN    46601                ST. JOSEPH
## 154             CROOKSTON    MN    56716                      POLK
## 155               CLINTON    MD    20735            PRINCE GEORGES
## 156                RUSTON    LA    71270                   LINCOLN
## 157               PORTOLA    CA    96122                    PLUMAS
## 158             MANHATTAN    KS    66502                     RILEY
## 159           NORTH LOGAN    UT    84341                     CACHE
## 160            DODGEVILLE    WI    53533                      IOWA
## 161             KNOXVILLE    TN    37916                      KNOX
## 162          LINCOLN CITY    OR    97367                   LINCOLN
## 163                 PRICE    UT    84501                    CARBON
## 164               CONCORD    NC    28025                  CABARRUS
## 165               CARIBOU    ME    04736                 AROOSTOOK
## 166               PHOENIX    AZ    85018                  MARICOPA
## 167          DOUGLASVILLE    GA    30134                   DOUGLAS
## 168             CHARLOTTE    NC    28233               MECKLENBURG
## 169            GREENSBURG    KS    67054                     KIOWA
## 170          JACKSONVILLE    FL    32204                     DUVAL
## 171              SEMINOLE    TX    79360                    GAINES
## 172             CORSICANA    TX    75110                   NAVARRO
## 173             YERINGTON    NV    89447                      LYON
## 174                 FLINT    MI    48503                   GENESEE
## 175                KENEDY    TX    78119                    KARNES
## 176                 MINOT    ND    58701                      WARD
## 177         SAN FRANCISCO    CA    94115             SAN FRANCISCO
## 178            ALEXANDRIA    LA    71301                   RAPIDES
## 179              GLENWOOD    MN    56334                      POPE
## 180                  HILO    HI    96720                    HAWAII
## 181              BELCOURT    ND    58316                   ROLETTE
## 182                ARCATA    CA    95521                  HUMBOLDT
## 183              ELMHURST    NY    11373                    QUEENS
## 184                MARTIN    TN    38237                   WEAKLEY
## 185         SAN FRANCISCO    CA    94117             SAN FRANCISCO
## 186              ONANCOCK    VA    23417                  ACCOMACK
## 187                SILVIS    IL    61282               ROCK ISLAND
## 188          THREE RIVERS    MI    49093                ST. JOSEPH
## 189          HUNTERSVILLE    NC    28078               MECKLENBURG
## 190                ALBANY    NY    12204                    ALBANY
## 191           SAN ANTONIO    TX    78258                     BEXAR
## 192               BOULDER    CO    80303                   BOULDER
## 193           CENTRE HALL    PA    16828                    CENTRE
## 194           HOT SPRINGS    AR    71901                   GARLAND
## 195                MADERA    CA    93636                    MADERA
## 196                DULUTH    MN    55805                 ST. LOUIS
## 197            COBLESKILL    NY    12043                 SCHOHARIE
## 198            FARMINGTON    MO    63640              ST. FRANCOIS
## 199            GROVE HILL    AL    36451                    CLARKE
## 200       WEBSTER SPRINGS    WV    26288                   WEBSTER
## 201                AUBURN    IN    46706                   DE KALB
## 202        MOUNT PLEASANT    MI    48858                  ISABELLA
## 203           ALBUQUERQUE    NM    87107                BERNALILLO
## 204        SILOAM SPRINGS    AR    72761                    BENTON
## 205              COALINGA    CA    93210                    FRESNO
## 206                  MOAB    UT    84532                     GRAND
## 207                   ORD    NE    68862                    VALLEY
## 208             BRYN MAWR    PA    19010                MONTGOMERY
## 209           LITTLE ROCK    AR    72211                   PULASKI
## 210            LOGANSPORT    IN    46947                      CASS
## 211                STUART    FL    34997                    MARTIN
## 212                BISBEE    AZ    85603                   COCHISE
## 213              JOHN DAY    OR    97845                     GRANT
## 214               CUSHING    OK    74023                     PAYNE
## 215            CEDARVILLE    CA    96104                     MODOC
## 216            BAKER CITY    OR    97814                     BAKER
## 217                BARTOW    FL    33831                      POLK
## 218         OKLAHOMA CITY    OK    73104                  OKLAHOMA
## 219             HILLSBORO    ND    58045                    TRAILL
## 220                SCOBEY    MT    59263                   DANIELS
## 221              COLUMBUS    OH    43214                  FRANKLIN
## 222                 MILAN    TN    38358                    GIBSON
## 223            PASCAGOULA    MS    39581                   JACKSON
## 224           BLOUNTSTOWN    FL    32424                   CALHOUN
## 225               TAUNTON    MA    02780                   BRISTOL
## 226                BORGER    TX    79007                HUTCHINSON
## 227            SAN GERMAN    PR    00683                SAN GERMAN
## 228              TAZEWELL    TN    37879                 CLAIBORNE
## 229                 DOVER    OH    44622                TUSCARAWAS
## 230             DAVENPORT    WA    99122                   LINCOLN
## 231               ELKADER    IA    52043                   CLAYTON
## 232             THOMASTON    GA    30286                     UPSON
## 233            SOUTH BEND    WA    98586                   PACIFIC
## 234            NASSAU BAY    TX    77058                    HARRIS
## 235               PHOENIX    AZ    85006                  MARICOPA
## 236               BUFFALO    MN    55313                    WRIGHT
## 237              WATERLOO    IA    50703                BLACK HAWK
## 238              HARTFORD    WI    53027                WASHINGTON
## 239                BUTLER    PA    16001                    BUTLER
## 240                NEWNAN    GA    30265                    COWETA
## 241             MARYVILLE    MO    64468                   NODAWAY
## 242           BATON ROUGE    LA    70816            E. BATON ROUGE
## 243             HARLINGEN    TX    78550                   CAMERON
## 244               JAMAICA    NY    11418                    QUEENS
## 245              BROOKLYN    NY    11203                     KINGS
## 246                ANGOLA    IN    46703                   STEUBEN
## 247               RAVENNA    OH    44266                   PORTAGE
## 248               HOUSTON    TX    77070                    HARRIS
## 249            WILLOUGHBY    OH    44094                      LAKE
## 250                AVALON    CA    90704               LOS ANGELES
## 251      CLINTON TOWNSHIP    MI    48038                    MACOMB
## 252      MANSFIELD CENTER    CT    06250                   TOLLAND
## 253              SAN JOSE    CA    95128               SANTA CLARA
## 254              BLUFFTON    OH    45817                     ALLEN
## 255              CORONADO    CA    92118                 SAN DIEGO
## 256               HORNELL    NY    14843                   STEUBEN
## 257           CLARKSVILLE    TN    37040                MONTGOMERY
## 258                OLATHE    KS    66061                   JOHNSON
## 259               PAHRUMP    NV    89048                       NYE
## 260             BALTIMORE    MD    21201            BALTIMORE CITY
## 261            BIRMINGHAM    AL    35212                 JEFFERSON
## 262              SANTA FE    NM    87507                  SANTA FE
## 263          NATCHITOCHES    LA    71457              NATCHITOCHES
## 264              OGALLALA    NE    69153                     KEITH
## 265               VENTURA    CA    93003                   VENTURA
## 266              ABERDEEN    MS    39730                    MONROE
## 267            MIDDLEBURG    FL    32068                      CLAY
## 268              JENNINGS    LA    70546            JEFFRSON DAVIS
## 269          REDWOOD CITY    CA    94063                 SAN MATEO
## 270              LUCEDALE    MS    39452                    GEORGE
## 271                WINONA    MN    55987                    WINONA
## 272           SUSQUEHANNA    PA    18847               SUSQUEHANNA
## 273                 SITKA    AK    99835             SITKA BOROUGH
## 274                 LYNCH    NE    68746                      BOYD
## 275              BIG LAKE    TX    76932                    REAGAN
## 276            BIRMINGHAM    AL    35233                 JEFFERSON
## 277          SIOUX CENTER    IA    51250                     SIOUX
## 278              HUMBOLDT    IA    50548                  HUMBOLDT
## 279               SANFORD    FL    32771                  SEMINOLE
## 280              CROSSETT    AR    71635                    ASHLEY
## 281          LAKE CHARLES    LA    70605                 CALCASIEU
## 282           MAPLE GROVE    MN    55369                  HENNEPIN
## 283              WAYCROSS    GA    31501                      WARE
## 284          HORIZON CITY    TX    79928                   EL PASO
## 285               JACKSON    GA    30233                     BUTTS
## 286                GIRARD    KS    66743                  CRAWFORD
## 287           WEST JORDAN    UT    84088                 SALT LAKE
## 288               CLINTON    NC    28328                   SAMPSON
## 289               JACKSON    AL    36545                    CLARKE
## 290            FORT WORTH    TX    76104                   TARRANT
## 291            SNEEDVILLE    TN    37869                   HANCOCK
## 292        WOODLAND HILLS    CA    91367               LOS ANGELES
## 293              BELLEVUE    NE    68123                     SARPY
## 294               OAKLAND    CA    94601                   ALAMEDA
## 295               MCGEHEE    AR    71654                     DESHA
## 296                  ANNA    IL    62906                     UNION
## 297                  TROY    MI    48085                   OAKLAND
## 298        EAST LIVERPOOL    OH    43920                COLUMBIANA
## 299           FORT SUPPLY    OK    73841                  WOODWARD
## 300               GUTHRIE    OK    73044                     LOGAN
## 301            FALL RIVER    MA    02720                   BRISTOL
## 302               CLIFTON    TX    76634                    BOSQUE
## 303               MANTECA    CA    95336               SAN JOAQUIN
## 304               BAYTOWN    TX    77521                    HARRIS
## 305            HAGERSTOWN    MD    21742                WASHINGTON
## 306          FALLS CHURCH    VA    22044                   FAIRFAX
## 307                OVIEDO    FL    32765                  SEMINOLE
## 308             CHILDRESS    TX    79201                 CHILDRESS
## 309              AVONDALE    AZ    85392                  MARICOPA
## 310                LENEXA    KS    66219                   JOHNSON
## 311          INDEPENDENCE    MO    64057                   JACKSON
## 312                TOPEKA    KS    66604                   SHAWNEE
## 313              KANKAKEE    IL    60901                  KANKAKEE
## 314         RUTHERFORDTON    NC    28139                RUTHERFORD
## 315                  LUSK    WY    82225                  NIOBRARA
## 316          HARRISONBURG    VA    22801         HARRISONBURG CITY
## 317          GRAND RAPIDS    MI    49503                      KENT
## 318                BELTON    MO    64012                      CASS
## 319               LUVERNE    AL    36049                  CRENSHAW
## 320              SUN CITY    CA    92585                 RIVERSIDE
## 321             JAMESTOWN    NY    14701                CHAUTAUQUA
## 322          MELROSE PARK    IL    60160                      COOK
## 323              SYRACUSE    NY    13210                  ONONDAGA
## 324                LARNED    KS    67550                    PAWNEE
## 325                BILOXI    MS    39530                  HARRISON
## 326               MANNING    IA    51455                   CARROLL
## 327          PHILADELPHIA    PA    19141              PHILADELPHIA
## 328               HOUSTON    TX    77091                    HARRIS
## 329                WARSAW    NY    14569                   WYOMING
## 330                TUCSON    AZ    85712                      PIMA
## 331               MERIDEN    CT    06450                 NEW HAVEN
## 332          EAST CHICAGO    IN    46312                      LAKE
## 333           LOXAHATCHEE    FL    33470                PALM BEACH
## 334              SHAKOPEE    MN    55379                     SCOTT
## 335          SIMPSONVILLE    SC    29681                GREENVILLE
## 336              LA PLACE    LA    70068          ST. JOHN BAPTIST
## 337                BURIEN    WA    98166                      KING
## 338               MEMPHIS    TN    38107                    SHELBY
## 339         DETROIT LAKES    MN    56501                    BECKER
## 340             ROCKLEDGE    FL    32955                   BREVARD
## 341              EDGEWOOD    KY    41017                    KENTON
## 342                 SALEM    MO    65560                      DENT
## 343             GREEN BAY    WI    54305                     BROWN
## 344           GRAND FORKS    ND    58201               GRAND FORKS
## 345               CALHOUN    GA    30701                    GORDON
## 346               DECATUR    IL    62521                     MACON
## 347                LORAIN    OH    44053                    LORAIN
## 348            SPRINGHILL    LA    71075                   WEBSTER
## 349                HOBART    IN    46342                      LAKE
## 350              COLUMBIA    MO    65201                     BOONE
## 351            GREENSBORO    AL    36744                      HALE
## 352             PLAINVIEW    NY    11803                    NASSAU
## 353            CROWNPOINT    NM    87313                  MCKINLEY
## 354               CHICAGO    IL    60640                      COOK
## 355         WASHINGTON CH    OH    43160                   FAYETTE
## 356                DALLAS    TX    75234                    DALLAS
## 357               ZACHARY    LA    70791            E. BATON ROUGE
## 358      FERNANDINA BEACH    FL    32034                    NASSAU
## 359              STOCKTON    CA    95204               SAN JOAQUIN
## 360        DONALDSONVILLE    LA    70346                 ASCENSION
## 361            MORRISTOWN    TN    37814                   HAMBLEN
## 362           PLATTSBURGH    NY    12901                   CLINTON
## 363          INDIANAPOLIS    IN    46237                    MARION
## 364            TAWAS CITY    MI    48764                     IOSCO
## 365               OAKLAND    CA    94602                   ALAMEDA
## 366            WASHINGTON    MO    63090                  FRANKLIN
## 367          GRAND ISLAND    NE    68803                      HALL
## 368              OAK LAWN    IL    60453                      COOK
## 369                SYLMAR    CA    91342               LOS ANGELES
## 370               ANAHEIM    CA    92801                    ORANGE
## 371            LIVINGSTON    TX    77351                      POLK
## 372               WINDBER    PA    15963                  SOMERSET
## 373                PIERRE    SD    57501                    HUGHES
## 374              SAN JOSE    CA    95116               SANTA CLARA
## 375            OCONOMOWOC    WI    53066                  WAUKESHA
## 376         LAWRENCEVILLE    IL    62439                  LAWRENCE
## 377           EAGLE BUTTE    SD    57625                     DEWEY
## 378               HOUSTON    MO    65483                     TEXAS
## 379              SANTA FE    NM    87501                  SANTA FE
## 380             HILLSBORO    OR    97123                WASHINGTON
## 381                 GALAX    VA    24333                GALAX CITY
## 382              COLUMBUS    OH    43205                  FRANKLIN
## 383              BURLESON    TX    76028                   JOHNSON
## 384             SAN DIEGO    CA    92128                 SAN DIEGO
## 385             MACCLENNY    FL    32063                     BAKER
## 386         OKLAHOMA CITY    OK    73134                  OKLAHOMA
## 387              LA JOLLA    CA    92037                 SAN DIEGO
## 388                BENSON    MN    56215                     SWIFT
## 389           WHEAT RIDGE    CO    80033                 JEFFERSON
## 390             ALABASTER    AL    35007                    SHELBY
## 391               TAMARAC    FL    33321                   BROWARD
## 392              FREEPORT    IL    61032                STEPHENSON
## 393               CHIPLEY    FL    32428                WASHINGTON
## 394                MEXICO    MO    65265                   AUDRAIN
## 395               PHOENIX    AZ    85027                  MARICOPA
## 396               ANTIOCH    CA    94531              CONTRA COSTA
## 397                KINDER    LA    70648                     ALLEN
## 398                OTTAWA    KS    66067                  FRANKLIN
## 399                CHERAW    SC    29520              CHESTERFIELD
## 400               HOUSTON    TX    77024                    HARRIS
## 401                AUSTIN    TX    78745                    TRAVIS
## 402                 PARIS    IL    61944                     EDGAR
## 403              SAN JUAN    PR    00935                  SAN JUAN
## 404           LITTLE ROCK    AR    72205                   PULASKI
## 405          JACKSONVILLE    FL    32216                     DUVAL
## 406            PRATTVILLE    AL    36067                   AUTAUGA
## 407                DAYTON    OH    45420                MONTGOMERY
## 408                EUREKA    IL    61530                  WOODFORD
## 409              LAKEVIEW    OR    97630                      LAKE
## 410               PHOENIX    AZ    85015                  MARICOPA
## 411           TAKOMA PARK    MD    20912                MONTGOMERY
## 412             FAIRBANKS    AK    99701      FAIRBANKS NORTH STAR
## 413             WHITEFISH    MT    59937                  FLATHEAD
## 414              PORTLAND    OR    97239                 MULTNOMAH
## 415             GROESBECK    TX    76642                 LIMESTONE
## 416              SANTA FE    NM    87505                  SANTA FE
## 417              COLUMBUS    OH    43223                  FRANKLIN
## 418                  MESA    AZ    85210                  MARICOPA
## 419               NEWBERG    OR    97132                   YAMHILL
## 420              SAN JUAN    PR    00923                  SAN JUAN
## 421            SHENANDOAH    TX    77380                MONTGOMERY
## 422       NORTH LAS VEGAS    NV    89030                     CLARK
## 423              MISSOULA    MT    59806                  MISSOULA
## 424               DETROIT    MI    48213                     WAYNE
## 425                ATHENS    TN    37371                   MC MINN
## 426            FORT WAYNE    IN    46825                     ALLEN
## 427              JUNCTION    TX    76849                    KIMBLE
## 428               ASHLAND    OR    97520                   JACKSON
## 429               HOUSTON    MS    38851                 CHICKASAW
## 430             VANCOUVER    WA    98668                     CLARK
## 431            PITTSBURGH    PA    15224                 ALLEGHENY
## 432            GREENVILLE    IL    62246                      BOND
## 433             WAKEFIELD    RI    02879                WASHINGTON
## 434             FULLERTON    CA    92835                    ORANGE
## 435           MINNEAPOLIS    KS    67467                    OTTAWA
## 436                 PLANO    TX    75093                    COLLIN
## 437            ELLENSBURG    WA    98926                  KITTITAS
## 438           MIDDLESBORO    KY    40965                      BELL
## 439            SHREVEPORT    LA    71103                     CADDO
## 440                BANGOR    ME    04401                 PENOBSCOT
## 441                 LIBBY    MT    59923                   LINCOLN
## 442               HOLYOKE    CO    80734                  PHILLIPS
## 443                WABASH    IN    46992                    WABASH
## 444            SNELLVILLE    GA    30078                  GWINNETT
## 445        MCCONNELLSBURG    PA    17233                    FULTON
## 446             GOLDSBORO    NC    27534                     WAYNE
## 447              RICHMOND    VA    23226             RICHMOND CITY
## 448                 MASON    OH    45040                    WARREN
## 449            FARMINGTON    NM    87401                  SAN JUAN
## 450            ALEXANDRIA    LA    71301                   RAPIDES
## 451            ALEXANDRIA    LA    71303                   RAPIDES
## 452              ST JAMES    MN    56081                  WATONWAN
## 453              DU QUOIN    IL    62832                     PERRY
## 454            GETTYSBURG    PA    17325                     ADAMS
## 455                 OMAHA    NE    68122                   DOUGLAS
## 456              GLENDALE    CA    91206               LOS ANGELES
## 457                ARMOUR    SD    57313                   DOUGLAS
## 458             ANCHORAGE    AK    99508                 ANCHORAGE
## 459       HOFFMAN ESTATES    IL    60169                      COOK
## 460              SYRACUSE    NY    13210                  ONONDAGA
## 461             LA CROSSE    WI    54601                 LA CROSSE
## 462            SAN MARCOS    TX    78666                      HAYS
## 463                 LURAY    VA    22835                      PAGE
## 464                  ERIE    PA    16509                      ERIE
## 465                 YREKA    CA    96097                  SISKIYOU
## 466           WORTHINGTON    MN    56187                    NOBLES
## 467            WASHINGTON    DC    20010              THE DISTRICT
## 468            OGDENSBURG    NY    13669              ST. LAWRENCE
## 469        MOUNT PLEASANT    IA    52641                     HENRY
## 470            PINE BLUFF    AR    71603                 JEFFERSON
## 471            PORTSMOUTH    NH    03801                ROCKINGHAM
## 472               SPOONER    WI    54801                  WASHBURN
## 473                 PLANO    TX    75093                    COLLIN
## 474           MOORESVILLE    NC    28117                   IREDELL
## 475           LOS ANGELES    CA    90020               LOS ANGELES
## 476           HOT SPRINGS    VA    24445                      BATH
## 477          WILLIAMSBURG    VA    23188                JAMES CITY
## 478              SHERIDAN    WY    82801                  SHERIDAN
## 479            MARYSVILLE    CA    95901                      YUBA
## 480            WASHINGTON    DC    20016              THE DISTRICT
## 481              DERIDDER    LA    70634                BEAUREGARD
## 482         STEVENS POINT    WI    54481                   PORTAGE
## 483            CLEARWATER    FL    33756                  PINELLAS
## 484               PARAMUS    NJ    07652                    BERGEN
## 485          SANTA MONICA    CA    90404               LOS ANGELES
## 486              CARTHAGE    NY    13619                 JEFFERSON
## 487              DENNISON    OH    44621                TUSCARAWAS
## 488             MAPLEWOOD    MN    55109                    RAMSEY
## 489               PHOENIX    AZ    85013                  MARICOPA
## 490               MODESTO    CA    95355                STANISLAUS
## 491              BISMARCK    ND    58501                  BURLEIGH
## 492            PITTSBURGH    PA    15237                 ALLEGHENY
## 493             IOWA CITY    IA    52245                   JOHNSON
## 494                SPARKS    NV    89434                    WASHOE
## 495             GALVESTON    TX    77555                 GALVESTON
## 496             PATCHOGUE    NY    11772                   SUFFOLK
## 497               SUFFERN    NY    10901                  ROCKLAND
## 498               SPOKANE    WA    99204                   SPOKANE
## 499             FRANKFORT    MI    49635                    BENZIE
## 500                JEROME    ID    83338                    JEROME
## 501       WEST HAVERSTRAW    NY    10993                  ROCKLAND
## 502               JACKSON    LA    70748            EAST FELICIANA
## 503              ABERDEEN    SD    57402                     BROWN
## 504              LA PLATA    MD    20646                   CHARLES
## 505               WATSEKA    IL    60970                  IROQUOIS
## 506             LAS VEGAS    NV    89119                     CLARK
## 507           SAN ANTONIO    TX    78259                     BEXAR
## 508                 OLNEY    TX    76374                     YOUNG
## 509               VALLEJO    CA    94590                    SOLANO
## 510              LONGMONT    CO    80501                   BOULDER
## 511               CHOTEAU    MT    59422                     TETON
## 512              STANFORD    CA    94305               SANTA CLARA
## 513              PORTLAND    OR    97216                 MULTNOMAH
## 514             CENTRALIA    IL    62801                    MARION
## 515              FOSTORIA    OH    44830                    SENECA
## 516           HARRODSBURG    KY    40330                    MERCER
## 517             COVINGTON    LA    70433               ST. TAMMANY
## 518              LEWISTON    ME    04240              ANDROSCOGGIN
## 519        POMPTON PLAINS    NJ    07444                    MORRIS
## 520                FENTON    MO    63026                 JEFFERSON
## 521                LULING    TX    78648                  CALDWELL
## 522                  ANNA    IL    62906                     UNION
## 523             STRATFORD    NJ    08084                    CAMDEN
## 524           SEVIERVILLE    TN    37862                    SEVIER
## 525            BROOKHAVEN    MS    39601                   LINCOLN
## 526               HERSHEY    PA    17033                   DAUPHIN
## 527                SEARCY    AR    72143                     WHITE
## 528               LUBBOCK    TX    79408                   LUBBOCK
## 529               SHERMAN    TX    75090                   GRAYSON
## 530              BELLEVUE    WA    98004                      KING
## 531               SATANTA    KS    67870                   HASKELL
## 532               ULYSSES    KS    67880                     GRANT
## 533               ELKHORN    WI    53121                  WALWORTH
## 534            SMITHFIELD    NC    27577                  JOHNSTON
## 535             RUSHVILLE    IL    62681                  SCHUYLER
## 536               PASSAIC    NJ    07055                   PASSAIC
## 537        HENDERSONVILLE    TN    37075                    SUMNER
## 538            FORT WAYNE    IN    46845                     ALLEN
## 539              TORRANCE    CA    90509               LOS ANGELES
## 540                TIPTON    IN    46072                    TIPTON
## 541             RIVERSIDE    CA    92503                 RIVERSIDE
## 542                MILLER    SD    57362                      HAND
## 543             PALMERTON    PA    18071                    CARBON
## 544               WILLOWS    CA    95988                     GLENN
## 545                TUCSON    AZ    85745                      PIMA
## 546         MISSION VIEJO    CA    92691                    ORANGE
## 547            RIO RANCHO    NM    87144                  SANDOVAL
## 548               BAYAMON    PR    00956                   BAYAMON
## 549             LAFAYETTE    IN    47905                TIPPECANOE
## 550               BRAWLEY    CA    92227                  IMPERIAL
## 551            PENNINGTON    NJ    08534                    MERCER
## 552            HUNTSVILLE    TX    77340                    WALKER
## 553         MISSION VIEJO    CA    92691                    ORANGE
## 554               BUFFALO    OK    73834                    HARPER
## 555          JACKSONVILLE    FL    32224                     DUVAL
## 556               OLYMPIA    WA    98506                  THURSTON
## 557              LEWISTON    ID    83501                 NEZ PERCE
## 558               BRANSON    MO    65615                     TANEY
## 559              FLORENCE    SC    29506                  FLORENCE
## 560              NEW YORK    NY    10029                  NEW YORK
## 561           BAKERSFIELD    CA    93308                      KERN
## 562           MORGAN CITY    LA    70380                  ST. MARY
## 563               OAKLAND    NE    68045                      BURT
## 564          BALDWIN PARK    CA    91706               LOS ANGELES
## 565              RICHMOND    MO    64085                       RAY
## 566            BELLINGHAM    WA    98225                   WHATCOM
## 567             KING CITY    CA    93930                  MONTEREY
## 568              RIVERTON    UT    84065                 SALT LAKE
## 569           WEAVERVILLE    CA    96093                   TRINITY
## 570                ATWOOD    KS    67730                   RAWLINS
## 571             MANSFIELD    TX    76063                   TARRANT
## 572              MARIANNA    FL    32446                   JACKSON
## 573           COON RAPIDS    MN    55433                     ANOKA
## 574            LOUISVILLE    KY    40202                 JEFFERSON
## 575               BELMONT    MA    02478                 MIDDLESEX
## 576                AUSTIN    TX    78701                    TRAVIS
## 577               REDDING    CA    96001                    SHASTA
## 578             OCEANSIDE    CA    92056                 SAN DIEGO
## 579            CHARLESTON    SC    29405                CHARLESTON
## 580            WASHINGTON    DC    20007              THE DISTRICT
## 581               SPOKANE    WA    99204                   SPOKANE
## 582            HAGERSTOWN    MD    21742                WASHINGTON
## 583              COLUMBIA    MD    21044                    HOWARD
## 584             LAS VEGAS    NV    89148                     CLARK
## 585               PULLMAN    WA    99163                   WHITMAN
## 586                  OLLA    LA    71465                   LASALLE
## 587              CARTHAGE    TN    37030                     SMITH
## 588               NORWICH    NY    13815                  CHENANGO
## 589               JACKSON    TN    38305                   MADISON
## 590             ROCHESTER    NY    14620                    MONROE
## 591                 TYLER    TX    75701                     SMITH
## 592         APPLETON CITY    MO    64724                 ST. CLAIR
## 593              GOODLAND    KS    67735                   SHERMAN
## 594         CLARKS SUMMIT    PA    18411                LACKAWANNA
## 595                 DOVER    DE    19901                      KENT
## 596                 RIFLE    CO    81650                  GARFIELD
## 597            CHARLESTON    SC    29414                CHARLESTON
## 598          WILLIAMSPORT    PA    17701                  LYCOMING
## 599               GRAFTON    ND    58237                     WALSH
## 600               OAKLAND    CA    94609                   ALAMEDA
## 601            GREENSBURG    KY    42743                     GREEN
## 602               MEMPHIS    TN    38120                    SHELBY
## 603               MODESTO    CA    95350                STANISLAUS
## 604             MISHAWAKA    IN    46545                ST. JOSEPH
## 605               VENTURA    CA    93001                   VENTURA
## 606              COLUMBIA    MS    39429                    MARION
## 607              MUNISING    MI    49862                     ALGER
## 608                 POWAY    CA    92064                 SAN DIEGO
## 609            LONG BEACH    CA    90806               LOS ANGELES
## 610           ROCK RAPIDS    IA    51246                      LYON
## 611            PITTSBURGH    PA    15221                 ALLEGHENY
## 612                  CARO    MI    48723                   TUSCOLA
## 613          PRESTONSBURG    KY    41653                     FLOYD
## 614               CORYDON    IN    47112                  HARRISON
## 615             LAS VEGAS    NV    89118                     CLARK
## 616                ODESSA    TX    79761                     ECTOR
## 617               HOUSTON    TX    77090                    HARRIS
## 618         SAINT CHARLES    MO    63301               ST. CHARLES
## 619                PEORIA    IL    61636                    PEORIA
## 620               KEARNEY    NE    68848                   BUFFALO
## 621                 HAYTI    MO    63851                  PEMISCOT
## 622                MONROE    LA    71201                  OUACHITA
## 623              WESTLAND    MI    48185                     WAYNE
## 624                 MALAD    ID    83252                    ONEIDA
## 625             BRADENTON    FL    34209                   MANATEE
## 626           LOS ANGELES    CA    90057               LOS ANGELES
## 627               BECKLEY    WV    25801                   RALEIGH
## 628                  MESA    AZ    85206                  MARICOPA
## 629               ORLANDO    FL    32803                    ORANGE
## 630                IRVING    TX    75063                    DALLAS
## 631             PANGUITCH    UT    84759                  GARFIELD
## 632               WAILUKU    HI    96793                      MAUI
## 633       CLIFTON SPRINGS    NY    14432                   ONTARIO
## 634                PALMER    AK    99645         MATANUSKA-SUSITNA
## 635         MOREHEAD CITY    NC    28557                  CARTERET
## 636           CENTREVILLE    AL    35042                      BIBB
## 637          SANDERSVILLE    GA    31082                WASHINGTON
## 638              DEQUINCY    LA    70633                 CALCASIEU
## 639              HONOLULU    HI    96817                  HONOLULU
## 640               HOUSTON    TX    77054                    HARRIS
## 641                RIPLEY    TN    38063                LAUDERDALE
## 642              TECUMSEH    MI    49286                   LENAWEE
## 643                EDISON    NJ    08818                 MIDDLESEX
## 644              SCRANTON    PA    18510                LACKAWANNA
## 645         COUNCIL GROVE    KS    66846                    MORRIS
## 646           FOREST PARK    IL    60130                      COOK
## 647                BANDON    OR    97411                      COOS
## 648             MENOMONIE    WI    54751                      DUNN
## 649               STANTON    TX    79782                    MARTIN
## 650              WATERLOO    IA    50702                BLACK HAWK
## 651            CINCINNATI    OH    45213                  HAMILTON
## 652           SAUK CENTRE    MN    56378                   STEARNS
## 653              BROCKTON    MA    02302                  PLYMOUTH
## 654               LACONIA    NH    03246                   BELKNAP
## 655           SAINT MARYS    GA    31558                    CAMDEN
## 656             HILLSBORO    OR    97124                WASHINGTON
## 657                OSWEGO    NY    13126                    OSWEGO
## 658               SPOKANE    WA    99210                   SPOKANE
## 659         FRIDAY HARBOR    WA    98250                  SAN JUAN
## 660             RIVERSIDE    CA    92501                 RIVERSIDE
## 661               LEBANON    NH    03766                   GRAFTON
## 662               JUPITER    FL    33458                PALM BEACH
## 663               HOUSTON    TX    77094                    HARRIS
## 664               OTHELLO    WA    99344                     ADAMS
## 665               REDDING    CA    96001                    SHASTA
## 666              COLUMBIA    KY    42728                     ADAIR
## 667            DES MOINES    IA    50314                      POLK
## 668                FRISCO    TX    75034                    DENTON
## 669                ROMNEY    WV    26757                 HAMPSHIRE
## 670           LOS ANGELES    CA    90095               LOS ANGELES
## 671     STEAMBOAT SPRINGS    CO    80487                     ROUTT
## 672           SOUTH MIAMI    FL    33143                MIAMI-DADE
## 673            WICKENBURG    AZ    85390                  MARICOPA
## 674            MIDDLEBURY    VT    05753                   ADDISON
## 675            HARTSVILLE    SC    29550                DARLINGTON
## 676                VENICE    FL    34285                  SARASOTA
## 677              KINGWOOD    TX    77339                    HARRIS
## 678              LAKELAND    FL    33805                      POLK
## 679               SEATTLE    WA    98112                      KING
## 680             PINEVILLE    KY    40977                      BELL
## 681                SONORA    CA    95370                  TUOLUMNE
## 682              BOARDMAN    OH    44512                  MAHONING
## 683                AURORA    NE    68818                  HAMILTON
## 684          PHILADELPHIA    PA    19107              PHILADELPHIA
## 685                 TAMPA    FL    33609              HILLSBOROUGH
## 686              MITCHELL    SD    57301                   DAVISON
## 687                 CLARE    MI    48617                     CLARE
## 688         OKLAHOMA CITY    OK    73114                  OKLAHOMA
## 689                GENEVA    OH    44041                 ASHTABULA
## 690            PEARISBURG    VA    24134                     GILES
## 691               ASTORIA    OR    97103                   CLATSOP
## 692            NAPERVILLE    IL    60540                   DU PAGE
## 693          JACKSONVILLE    AR    72076                   PULASKI
## 694             LAS VEGAS    NV    89149                     CLARK
## 695            PITTSBURGH    PA    15212                 ALLEGHENY
## 696                AUSTIN    TX    78746                    TRAVIS
## 697                POTEAU    OK    74953                  LE FLORE
## 698              MARLETTE    MI    48453                   SANILAC
## 699             ATTLEBORO    MA    02703                   BRISTOL
## 700                POWELL    WY    82435                      PARK
## 701              SANDWICH    IL    60548                   DE KALB
## 702            CHARLESTON    WV    25304                   KANAWHA
## 703                PAHALA    HI    96777                    HAWAII
## 704                TAYLOR    MI    48180                     WAYNE
## 705             SOUTHPORT    NC    28461                 BRUNSWICK
## 706              COLUMBUS    OH    43223                  FRANKLIN
## 707           HATTIESBURG    MS    39402                     LAMAR
## 708           SPRINGVILLE    NY    14141                      ERIE
## 709            FORT WORTH    TX    76177                   TARRANT
## 710            BLOOMFIELD    IA    52537                     DAVIS
## 711         BONNERS FERRY    ID    83805                  BOUNDARY
## 712           SAN LEANDRO    CA    94578                   ALAMEDA
## 713             LOUISIANA    MO    63353                      PIKE
## 714              SYRACUSE    KS    67878                  HAMILTON
## 715             WATERBURY    CT    06706                 NEW HAVEN
## 716               STURGIS    MI    49091                ST. JOSEPH
## 717         SPRINGERVILLE    AZ    85938                    APACHE
## 718            PLANTATION    FL    33324                   BROWARD
## 719      SAINTE GENEVIEVE    MO    63670            STE. GENEVIEVE
## 720            WEST POINT    NE    68788                    CUMING
## 721               HICKORY    NC    28601                   CATAWBA
## 722            DARLINGTON    WI    53530                 LAFAYETTE
## 723            WASHINGTON    DC    20032              THE DISTRICT
## 724            WOONSOCKET    RI    02895                PROVIDENCE
## 725           COUDERSPORT    PA    16915                    POTTER
## 726                 MIAMI    FL    33137                MIAMI-DADE
## 727         BULLHEAD CITY    AZ    86442                    MOHAVE
## 728             PITTSBURG    TX    75686                      CAMP
## 729      COLORADO SPRINGS    CO    80907                   EL PASO
## 730                 PLANO    TX    75093                    COLLIN
## 731            PITTSBURGH    PA    15213                 ALLEGHENY
## 732            MOSES LAKE    WA    98837                     GRANT
## 733         MUSCLE SHOALS    AL    35661                   COLBERT
## 734                DENVER    CO    80236                    DENVER
## 735            HAZLEHURST    GA    31539                JEFF DAVIS
## 736             TALLASSEE    AL    36078                    ELMORE
## 737               LIBERAL    KS    67901                    SEWARD
## 738               GLADWIN    MI    48624                   GLADWIN
## 739              COLUMBIA    TN    38401                     MAURY
## 740            ORANGEBURG    NY    10962                  ROCKLAND
## 741                 TULSA    OK    74133                     TULSA
## 742            GROVE CITY    PA    16127                    MERCER
## 743            LOMA LINDA    CA    92354            SAN BERNARDINO
## 744           WEST BRANCH    MI    48661                    OGEMAW
## 745           SAINT LOUIS    MO    63112            ST. LOUIS CITY
## 746            SACRAMENTO    CA    95825                SACRAMENTO
## 747            MANCHESTER    NH    03102              HILLSBOROUGH
## 748                  YORK    PA    17403                      YORK
## 749                 HINES    IL    60141                      COOK
## 750                POTOSI    MO    63664                WASHINGTON
## 751            PETERSBURG    VA    23805           PETERSBURG CITY
## 752                TOLEDO    OH    43699                     LUCAS
## 753               SANFORD    NC    27330                       LEE
## 754               FREMONT    MI    49412                   NEWAYGO
## 755                SALINA    KS    67401                    SALINE
## 756            PRINEVILLE    OR    97754                     CROOK
## 757              VALENCIA    CA    91355               LOS ANGELES
## 758         HEBER SPRINGS    AR    72543                  CLEBURNE
## 759                 TULSA    OK    74128                     TULSA
## 760              ANDERSON    IN    46016                   MADISON
## 761              SPEARMAN    TX    79081                  HANSFORD
## 762            BAR HARBOR    ME    04609                   HANCOCK
## 763            PROVIDENCE    RI    02906                PROVIDENCE
## 764              WOODBURY    TN    37190                    CANNON
## 765          MELROSE PARK    IL    60160                      COOK
## 766                LINDEN    TN    37096                     PERRY
## 767            BINGHAMTON    NY    13905                    BROOME
## 768             ARLINGTON    VA    22205                 ARLINGTON
## 769              ST CROIX    VI    00820        SAINT CROIX ISLAND
## 770            RAPID CITY    SD    57701                PENNINGTON
## 771            LOGANSPORT    IN    46947                      CASS
## 772              CARLISLE    PA    17015                CUMBERLAND
## 773               KINSTON    NC    28501                    LENOIR
## 774              VICTORIA    TX    77901                  VICTORIA
## 775           SIOUX FALLS    SD    57108                   LINCOLN
## 776                BOSTON    MA    02215                   SUFFOLK
## 777                 GRANT    NE    69140                   PERKINS
## 778              GLENDALE    CA    91204               LOS ANGELES
## 779            PLEASANTON    CA    94588                   ALAMEDA
## 780                ATHENS    GA    30606                    CLARKE
## 781               BRISTOW    OK    74010                     CREEK
## 782            MARSHFIELD    WI    54449                      WOOD
## 783                BUNKIE    LA    71322                 AVOYELLES
## 784            NORRISTOWN    PA    19401                MONTGOMERY
## 785             CLAREMONT    NH    03743                  SULLIVAN
## 786                  YORK    PA    17403                      YORK
## 787           FORT MORGAN    CO    80701                    MORGAN
## 788                LOWELL    MA    01854                 MIDDLESEX
## 789           CASA GRANDE    AZ    85122                     PINAL
## 790        MOUNT PLEASANT    UT    84647                   SANPETE
## 791              KINGSTON    NY    12401                    ULSTER
## 792            BOISE CITY    OK    73933                  CIMARRON
## 793                AUSTIN    TX    78731                    TRAVIS
## 794           GARDEN CITY    KS    67846                    FINNEY
## 795          LAGUNA HILLS    CA    92653                    ORANGE
## 796          WEST CHESTER    OH    45069                    BUTLER
## 797                 TULSA    OK    74137                     TULSA
## 798             HARLINGEN    TX    78550                   CAMERON
## 799         MOUNTAIN VIEW    CA    94040               SANTA CLARA
## 800              ANNISTON    AL    36207                   CALHOUN
## 801           WESTMINSTER    MD    21157                   CARROLL
## 802                CAMDEN    SC    29020                   KERSHAW
## 803         SANTA BARBARA    CA    93110             SANTA BARBARA
## 804               GOODING    ID    83330                   GOODING
## 805             VICKSBURG    MS    39183                    WARREN
## 806             LAKE CITY    SC    29560                  FLORENCE
## 807              BROOKLYN    NY    11203                     KINGS
## 808              HAMILTON    OH    45013                    BUTLER
## 809             TAHLEQUAH    OK    74464                  CHEROKEE
## 810              MOBRIDGE    SD    57601                  WALWORTH
## 811                SUMMIT    WI    53066                  WAUKESHA
## 812          WILKES-BARRE    PA    18764                   LUZERNE
## 813              MORRISON    IL    61270                 WHITESIDE
## 814               LAVONIA    GA    30553                  FRANKLIN
## 815            PROVIDENCE    RI    02905                PROVIDENCE
## 816            RIDGECREST    CA    93555                      KERN
## 817          SHIPPENSBURG    PA    17257                CUMBERLAND
## 818           NEW BRITAIN    CT    06050                  HARTFORD
## 819                  AIEA    HI    96701                  HONOLULU
## 820               CARROLL    IA    51401                   CARROLL
## 821             WESTFIELD    MA    01085                   HAMPDEN
## 822         ELIZABETHTOWN    NC    28337                    BLADEN
## 823              DONIPHAN    MO    63935                    RIPLEY
## 824               LINCOLN    NE    68506                 LANCASTER
## 825        CHEYENNE WELLS    CO    80810                  CHEYENNE
## 826           PORTERVILLE    CA    93257                    TULARE
## 827            COTTONWOOD    AZ    86326                   YAVAPAI
## 828           GRAND FORKS    ND    58201               GRAND FORKS
## 829              CARLSBAD    NM    88220                      EDDY
## 830             LEWISTOWN    PA    17044                   MIFFLIN
## 831               LEBANON    VA    24266                   RUSSELL
## 832     EL DORADO SPRINGS    MO    64744                     CEDAR
## 833               GADSDEN    AL    35903                    ETOWAH
## 834               BEDFORD    IN    47421                  LAWRENCE
## 835  WHITE SULPHUR SPRING    MT    59645                   MEAGHER
## 836            SCOTTSBORO    AL    35768                   JACKSON
## 837                BUTNER    NC    27509                 GRANVILLE
## 838               JAMAICA    NY    11432                    QUEENS
## 839             GREEN BAY    WI    54311                     BROWN
## 840           CROWN POINT    IN    46307                      LAKE
## 841        MOUNT STERLING    KY    40353                MONTGOMERY
## 842            EVANSVILLE    IN    47714               VANDERBURGH
## 843              COLUMBUS    MT    59019                STILLWATER
## 844           MIAMI BEACH    FL    33140                MIAMI-DADE
## 845               OAKDALE    LA    71463                     ALLEN
## 846           CARSON CITY    MI    48811                  MONTCALM
## 847            HOOD RIVER    OR    97031                HOOD RIVER
## 848             HILLSBORO    IL    62049                MONTGOMERY
## 849                DENTON    TX    76201                    DENTON
## 850           TROPHY CLUB    TX    76262                    DENTON
## 851               MISSION    TX    78572                   HIDALGO
## 852            PITTSBURGH    PA    15243                 ALLEGHENY
## 853            CANON CITY    CO    81212                   FREMONT
## 854            MORRISTOWN    TN    37814                   HAMBLEN
## 855        HAVRE DE GRACE    MD    21078                   HARFORD
## 856           SIMI VALLEY    CA    93065                   VENTURA
## 857               HASKELL    TX    79521                   HASKELL
## 858                DALLAS    TX    75237                    DALLAS
## 859            RAPID CITY    SD    57701                PENNINGTON
## 860               CHICAGO    IL    60649                      COOK
## 861              BELLEVUE    OH    44811                  SANDUSKY
## 862               CORNING    IA    50841                     ADAMS
## 863           KENANSVILLE    NC    28349                    DUPLIN
## 864                DALLAS    TX    75251                    DALLAS
## 865                CONWAY    AR    72034                  FAULKNER
## 866          MYRTLE BEACH    SC    29572                     HORRY
## 867         NEW BRUNSWICK    NJ    08901                 MIDDLESEX
## 868           SCHENECTADY    NY    12308               SCHENECTADY
## 869                AUBURN    IN    46706                   DE KALB
## 870            BELLEVILLE    IL    62226                 ST. CLAIR
## 871          MARBLE FALLS    TX    78654                    BURNET
## 872              DANVILLE    IN    46122                 HENDRICKS
## 873             KERRVILLE    TX    78028                      KERR
## 874           ALBUQUERQUE    NM    87102                BERNALILLO
## 875                 OLNEY    MD    20832                MONTGOMERY
## 876             GREENBRAE    CA    94904                     MARIN
## 877               CYPRESS    TX    77429                    HARRIS
## 878               ASHDOWN    AR    71822              LITTLE RIVER
## 879              HAMILTON    NY    13346                   MADISON
## 880              MONTEREY    CA    93940                  MONTEREY
## 881            CAPE CORAL    FL    33990                       LEE
## 882            NORRISTOWN    PA    19401                MONTGOMERY
## 883             HAYMARKET    VA    20169            PRINCE WILLIAM
## 884        TARPON SPRINGS    FL    34689                  PINELLAS
## 885            PALM COAST    FL    32164                   FLAGLER
## 886            POCAHONTAS    AR    72455                  RANDOLPH
## 887              AMARILLO    TX    79106                    POTTER
## 888          SOUTH BOSTON    VA    24592                   HALIFAX
## 889             OWENSBORO    KY    42303                   DAVIESS
## 890             BATTE MTN    NV    89820                    LANDER
## 891                FALLON    NV    89406                 CHURCHILL
## 892         MORENO VALLEY    CA    92555                 RIVERSIDE
## 893              SOLDOTNA    AK    99669           KENAI PENINSULA
## 894              SARASOTA    FL    34239                  SARASOTA
## 895           ALBUQUERQUE    NM    87106                BERNALILLO
## 896                CANTON    MS    39046                   MADISON
## 897                EASLEY    SC    29640                   PICKENS
## 898                LUFKIN    TX    75904                  ANGELINA
## 899                RIPLEY    WV    25271                   JACKSON
## 900             ANCHORAGE    AK    99508                 ANCHORAGE
## 901           PANAMA CITY    FL    32401                       BAY
## 902          WEBSTER CITY    IA    50595                  HAMILTON
## 903              COMANCHE    TX    76442                  COMANCHE
## 904          MOUNT CARMEL    IL    62863                    WABASH
## 905              BROOKLYN    NY    11203                     KINGS
## 906           SIOUX FALLS    SD    57105                 MINNEHAHA
## 907               HAMMOND    LA    70403                TANGIPAHOA
## 908            WALSENBURG    CO    81089                  HUERFANO
## 909               HOUSTON    TX    77021                    HARRIS
## 910         UNION SPRINGS    AL    36089                   BULLOCK
## 911       SAN LUIS OBISPO    CA    93401           SAN LUIS OBISPO
## 912               ARECIBO    PR    00613                   ARECIBO
## 913              BROOKLYN    NY    11229                     KINGS
## 914            ORANGEBURG    SC    29118                ORANGEBURG
## 915                SEWARD    AK    99664           KENAI PENINSULA
## 916        LAKE ARROWHEAD    CA    92352            SAN BERNARDINO
## 917           CEDAR GROVE    NJ    07009                     ESSEX
## 918                  KATY    TX    77494                 FORT BEND
## 919          FORREST CITY    AR    72335               ST. FRANCIS
## 920                 PLANO    TX    75024                    COLLIN
## 921             JACKSBORO    TX    76458                      JACK
## 922              WINFIELD    KS    67156                    COWLEY
## 923           HARDEEVILLE    SC    29927                    JASPER
## 924               PONTIAC    MI    48342                   OAKLAND
## 925           ZEPHYRHILLS    FL    33541                     PASCO
## 926          POPLAR BLUFF    MO    63901                    BUTLER
## 927              RICHMOND    VA    23235              CHESTERFIELD
## 928            LOUISVILLE    CO    80027                   BOULDER
## 929             RED LODGE    MT    59068                    CARBON
## 930            SACRAMENTO    CA    95823                SACRAMENTO
## 931               SABETHA    KS    66534                    NEMAHA
## 932                 TEMPE    AZ    85283                  MARICOPA
## 933               HOUSTON    TX    77030                    HARRIS
## 934            DODGE CITY    KS    67801                      FORD
## 935              OAK PARK    IL    60302                      COOK
## 936              TORRANCE    CA    90505               LOS ANGELES
## 937                EUCLID    OH    44119                  CUYAHOGA
## 938          OAKLAND PARK    FL    33334                   BROWARD
## 939                  RENO    NV    89521                    WASHOE
## 940                RENTON    WA    98055                      KING
## 941             LAFAYETTE    LA    70508                 LAFAYETTE
## 942              BRIGHTON    CO    80601                     ADAMS
## 943          WILLIAMSBURG    VA    23188                JAMES CITY
## 944          CEDAR RAPIDS    IA    52403                      LINN
## 945         SAN FRANCISCO    CA    94109             SAN FRANCISCO
## 946            KILMARNOCK    VA    22482                 LANCASTER
## 947              HEREFORD    TX    79045                DEAF SMITH
## 948              MAYAGUEZ    PR    00681                  MAYAGUEZ
## 949              HONOLULU    HI    96826                  HONOLULU
## 950             CLEVELAND    OH    44195                  CUYAHOGA
## 951               NORWOOD    MA    02062                   NORFOLK
## 952                WARREN    AR    71671                   BRADLEY
## 953                WASECA    MN    56093                    WASECA
## 954              STANDISH    MI    48658                    ARENAC
## 955               JACKSON    MS    39204                     HINDS
## 956             THIBODAUX    LA    70301                 LAFOURCHE
## 957            BUCKHANNON    WV    26201                    UPSHUR
## 958               HANOVER    KS    66945                WASHINGTON
## 959             PENSACOLA    FL    32514                  ESCAMBIA
## 960         BOWLING GREEN    KY    42101                    WARREN
## 961                GILROY    CA    95020               SANTA CLARA
## 962          ROCK SPRINGS    WY    82901                SWEETWATER
## 963                NORTON    KS    67654                    NORTON
## 964               REFUGIO    TX    78377                   REFUGIO
## 965            WASHINGTON    DC    20037              THE DISTRICT
## 966             LAS VEGAS    NV    89102                     CLARK
## 967              ABINGDON    VA    24211                WASHINGTON
## 968             CLEVELAND    OH    44113                  CUYAHOGA
## 969            BIRMINGHAM    AL    35209                 JEFFERSON
## 970             POTTSTOWN    PA    19464                MONTGOMERY
## 971                RANSON    WV    25438                 JEFFERSON
## 972                 CAIRO    GA    39828                     GRADY
## 973              GONZALES    LA    70737                 ASCENSION
## 974                 TYLER    TX    75708                     SMITH
## 975         MOUNTAIN VIEW    AR    72560                     STONE
## 976             BALTIMORE    MD    21207                 BALTIMORE
## 977                WESTON    WV    26452                     LEWIS
## 978              PARADISE    CA    95969                     BUTTE
## 979               SEILING    OK    73663                     DEWEY
## 980            MANDEVILLE    LA    70448               ST. TAMMANY
## 981               SEATTLE    WA    98122                      KING
## 982             BETHLEHEM    PA    18017               NORTHAMPTON
## 983            WAYNESBORO    PA    17268                  FRANKLIN
## 984            VERO BEACH    FL    32960              INDIAN RIVER
## 985      MAYFIELD HEIGHTS    OH    44124                  CUYAHOGA
## 986            CINCINNATI    OH    45229                  HAMILTON
## 987              BESSEMER    AL    35021                 JEFFERSON
## 988                SHELBY    OH    44875                  RICHLAND
## 989              OKMULGEE    OK    74447                  OKMULGEE
## 990                MARLIN    TX    76661                     FALLS
## 991          PORT ANGELES    WA    98362                   CLALLAM
## 992            DAVID CITY    NE    68632                    BUTLER
## 993               HOUSTON    TX    77030                    HARRIS
## 994             NASHVILLE    TN    37205                  DAVIDSON
## 995                DALTON    GA    30720                 WHITFIELD
## 996            CARMICHAEL    CA    95608                SACRAMENTO
## 997              AIBONITO    PR    00705                  AIBONITO
## 998            PITTSBURGH    PA    15213                 ALLEGHENY
## 999                DALLAS    TX    75231                    DALLAS
## 1000               MONROE    GA    30655                    WALTON
## 1001          ALBUQUERQUE    NM    87108                BERNALILLO
## 1002            BENKELMAN    NE    69021                     DUNDY
## 1003       EVERGREEN PARK    IL    60805                      COOK
## 1004           PARK RIVER    ND    58270                     WALSH
## 1005             LE SUEUR    MN    56058                  LE SUEUR
## 1006           MONTGOMERY    AL    36116                MONTGOMERY
## 1007          BLOOMINGTON    IN    47403                    MONROE
## 1008            NASHVILLE    TN    37232                  DAVIDSON
## 1009           CUMBERLAND    MD    21502                  ALLEGANY
## 1010           BIRMINGHAM    AL    35211                 JEFFERSON
## 1011    NORTH KANSAS CITY    MO    64116                      CLAY
## 1012              CHICAGO    IL    60634                      COOK
## 1013               GENEVA    IL    60134                      KANE
## 1014          BAKERSFIELD    CA    93301                      KERN
## 1015               HARVEY    ND    58341                     WELLS
## 1016               EUREKA    KS    67045                 GREENWOOD
## 1017              YONKERS    NY    10701               WESTCHESTER
## 1018           LONG BEACH    CA    90806               LOS ANGELES
## 1019               MONROE    LA    71201                  OUACHITA
## 1020         FAYETTEVILLE    AR    72703                WASHINGTON
## 1021             BENSALEM    PA    19020                     BUCKS
## 1022              PULASKI    TN    38478                     GILES
## 1023          SPRINGFIELD    MO    65807                    GREENE
## 1024              PHOENIX    AZ    85006                  MARICOPA
## 1025                HOUMA    LA    70364                TERREBONNE
## 1026         WATER VALLEY    MS    38965                 YALOBUSHA
## 1027             TALLULAH    LA    71282                   MADISON
## 1028           NEW ALBANY    IN    47150                     FLOYD
## 1029         ARANSAS PASS    TX    78336              SAN PATRICIO
## 1030             BLUFFTON    IN    46714                     WELLS
## 1031            TEHACHAPI    CA    93561                      KERN
## 1032              GAFFNEY    SC    29340                  CHEROKEE
## 1033               UPLAND    CA    91786            SAN BERNARDINO
## 1034              JACKSON    TN    38301                   MADISON
## 1035               BEAVER    OK    73932                    BEAVER
## 1036          BATON ROUGE    LA    70810            E. BATON ROUGE
## 1037     NEW MARTINSVILLE    WV    26155                    WETZEL
## 1038               EMMETT    ID    83617                       GEM
## 1039              GUAYAMA    PR    00785                GUAYANILLA
## 1040             RICHMOND    IN    47374                     WAYNE
## 1041          LITTLEFIELD    TX    79339                      LAMB
## 1042         LITTLE FALLS    MN    56345                  MORRISON
## 1043                AMORY    MS    38821                    MONROE
## 1044            RULEVILLE    MS    38771                 SUNFLOWER
## 1045            MORGANTON    NC    28655                     BURKE
## 1046              ATLANTA    GA    30342                    FULTON
## 1047             NEW BERN    NC    28560                    CRAVEN
## 1048              PHOENIX    AZ    85027                  MARICOPA
## 1049               OKEMAH    OK    74859                  OKFUSKEE
## 1050            GREEN BAY    WI    54311                     BROWN
## 1051  SAINT SIMONS ISLAND    GA    31522                     GLYNN
## 1052              FAYETTE    MS    39069                 JEFFERSON
## 1053           WEST ISLIP    NY    11795                   SUFFOLK
## 1054        JUNCTION CITY    KS    66441                     GEARY
## 1055            LAS VEGAS    NV    89109                     CLARK
## 1056              RUTLAND    VT    05701                   RUTLAND
## 1057                BRONX    NY    10461                     BRONX
## 1058              CHICAGO    IL    60616                      COOK
## 1059         GARDEN GROVE    CA    92843                    ORANGE
## 1060             CANADIAN    TX    79014                  HEMPHILL
## 1061              BUFFALO    WY    82834                   JOHNSON
## 1062           MANCHESTER    KY    40962                      CLAY
## 1063           ROUND ROCK    TX    78681                WILLIAMSON
## 1064             TORRANCE    CA    90503               LOS ANGELES
## 1065            WORCESTER    MA    01655                 WORCESTER
## 1066      NEW PORT RICHEY    FL    34652                     PASCO
## 1067              OAKLAND    CA    94611                   ALAMEDA
## 1068           GETTYSBURG    SD    57442                    POTTER
## 1069          COOPERSTOWN    NY    13326                    OTSEGO
## 1070                PAOLA    KS    66071                     MIAMI
## 1071          PERTH AMBOY    NJ    08861                 MIDDLESEX
## 1072           SAN ANGELO    TX    76901                 TOM GREEN
## 1073           HUNTINGDON    TN    38344                   CARROLL
## 1074            SAN DIEGO    CA    92123                 SAN DIEGO
## 1075             EASTLAND    TX    76448                  EASTLAND
## 1076            WINNSBORO    SC    29180                 FAIRFIELD
## 1077             MURRIETA    CA    92563                 RIVERSIDE
## 1078           RONCEVERTE    WV    24970                GREENBRIER
## 1079                 RENO    NV    89502                    WASHOE
## 1080              OSCEOLA    IA    50213                    CLARKE
## 1081         WINTER HAVEN    FL    33881                      POLK
## 1082           SAN ANGELO    TX    76903                 TOM GREEN
## 1083              MATTOON    IL    61938                     COLES
## 1084              CLINTON    IN    47842                VERMILLION
## 1085            COLDWATER    MI    49036                    BRANCH
## 1086                PAMPA    TX    79065                      GRAY
## 1087                 ALMA    NE    68920                    HARLAN
## 1088             ESCANABA    MI    49829                     DELTA
## 1089              WARWICK    NY    10990                    ORANGE
## 1090       SALT LAKE CITY    UT    84106                 SALT LAKE
## 1091         PHILADELPHIA    PA    19102              PHILADELPHIA
## 1092           BETTENDORF    IA    52722                     SCOTT
## 1093            W CONCORD    MA    01742                 MIDDLESEX
## 1094          SAINT JOHNS    MI    48879                   CLINTON
## 1095            CAMBRIDGE    OH    43725                  GUERNSEY
## 1096               CAMDEN    TN    38320                    BENTON
## 1097            WOLFEBORO    NH    03894                   CARROLL
## 1098         HAWKINSVILLE    GA    31036                   PULASKI
## 1099       ELIZABETH CITY    NC    27909                PASQUOTANK
## 1100             RICHMOND    VA    23223             RICHMOND CITY
## 1101              YONKERS    NY    10701               WESTCHESTER
## 1102            LAS VEGAS    NM    87701                SAN MIGUEL
## 1103              WINDSOR    MO    65360                     HENRY
## 1104          SPRINGFIELD    MA    01199                   HAMPDEN
## 1105        CRESCENT CITY    CA    95531                 DEL NORTE
## 1106           YAZOO CITY    MS    39194                     YAZOO
## 1107         ALT DE SANTA    PR    00969                  GUAYNABO
## 1108               NORTON    VA    24273               NORTON CITY
## 1109               DALLAS    TX    75204                    DALLAS
## 1110          EAST MEADOW    NY    11554                    NASSAU
## 1111          VALLEY CITY    ND    58072                    BARNES
## 1112              HOUSTON    TX    77080                    HARRIS
## 1113               DULLES    VA    20166                   LOUDOUN
## 1114           POST FALLS    ID    83854                  KOOTENAI
## 1115            PAPILLION    NE    68046                     SARPY
## 1116               CARMEL    IN    46032                  HAMILTON
## 1117              LUBBOCK    TX    79410                   LUBBOCK
## 1118            LANGHORNE    PA    19047                     BUCKS
## 1119                WYNNE    AR    72396                     CROSS
## 1120              POLACCA    AZ    86042                    NAVAJO
## 1121           WYTHEVILLE    VA    24382                     WYTHE
## 1122              NORWALK    OH    44857                     HURON
## 1123            VINCENNES    IN    47591                      KNOX
## 1124                OCALA    FL    34474                    MARION
## 1125         JACKSONVILLE    FL    32216                     DUVAL
## 1126             BEAUFORT    SC    29902                  BEAUFORT
## 1127               KOKOMO    IN    46904                    HOWARD
## 1128               AUBURN    CA    95603                    PLACER
## 1129           MORGANTOWN    WV    26505                MONONGALIA
## 1130            NASHVILLE    GA    31639                   BERRIEN
## 1131       MOUNT PLEASANT    SC    29466                CHARLESTON
## 1132          JERSEY CITY    NJ    07306                    HUDSON
## 1133             LOVELOCK    NV    89419                  PERSHING
## 1134            MILWAUKEE    WI    53226                 MILWAUKEE
## 1135                PLANO    TX    75093                    COLLIN
## 1136         SIERRA VISTA    AZ    85635                   COCHISE
## 1137             KINGSTON    PA    18704                   LUZERNE
## 1138                MIAMI    FL    33176                MIAMI-DADE
## 1139                ALTON    IL    62002                   MADISON
## 1140                 TROY    OH    45373                     MIAMI
## 1141                CANBY    MN    56220            YELLOW MEDCINE
## 1142              MILFORD    DE    19963                    SUSSEX
## 1143            ROSEVILLE    CA    95661                    PLACER
## 1144               BETHEL    AK    99559                    BETHEL
## 1145           GREENFIELD    IA    50849                     ADAIR
## 1146               AUSTIN    TX    78731                    TRAVIS
## 1147               BAGLEY    MN    56621                CLEARWATER
## 1148               VALDEZ    AK    99686            VALDEZ-CORDOVA
## 1149              SLIDELL    LA    70458               ST. TAMMANY
## 1150             COLUMBUS    OH    43229                  FRANKLIN
## 1151              EL PASO    TX    79905                   EL PASO
## 1152            SAN DIMAS    CA    91773               LOS ANGELES
## 1153           BROOMFIELD    CO    80021                 JEFFERSON
## 1154               YOAKUM    TX    77995                    LAVACA
## 1155              HOUSTON    TX    77090                    HARRIS
## 1156           EAGLE LAKE    TX    77434                  COLORADO
## 1157             GLENDALE    AZ    85306                  MARICOPA
## 1158           GREENVILLE    AL    36037                    BUTLER
## 1159           RICHARDSON    TX    75082                    COLLIN
## 1160         WEST CHESTER    PA    19380                   CHESTER
## 1161            LAS VEGAS    NV    89146                     CLARK
## 1162                OMAHA    NE    68131                   DOUGLAS
## 1163            DALY CITY    CA    94015                 SAN MATEO
## 1164           MORGANTOWN    WV    26506                MONONGALIA
## 1165           MONTPELIER    OH    43543                  WILLIAMS
## 1166          WARRENSBURG    MO    64093                   JOHNSON
## 1167           OAK BLUFFS    MA    02557                     DUKES
## 1168         PHILADELPHIA    PA    19134              PHILADELPHIA
## 1169              ELECTRA    TX    76360                   WICHITA
## 1170         MIDWEST CITY    OK    73110                  OKLAHOMA
## 1171       GUTHRIE CENTER    IA    50115                   GUTHRIE
## 1172            WATERTOWN    SD    57201                 CODINGTON
## 1173        THE WOODLANDS    TX    77384                MONTGOMERY
## 1174     HUNTINGTON BEACH    CA    92647                    ORANGE
## 1175              ABILENE    KS    67410                 DICKINSON
## 1176             O FALLON    MO    63368               ST. CHARLES
## 1177           PITTSBURGH    PA    15219                 ALLEGHENY
## 1178               BAXTER    MN    56425                 CROW WING
## 1179                BYRON    GA    31008                     PEACH
## 1180             LONGMONT    CO    80504                   BOULDER
## 1181               SIBLEY    IA    51249                   OSCEOLA
## 1182               ORANGE    CA    92868                    ORANGE
## 1183              ALAMOSA    CO    81101                   ALAMOSA
## 1184                  ADA    OK    74820                  PONTOTOC
## 1185              BEMIDJI    MN    56601                  BELTRAMI
## 1186              NEWPORT    RI    02840                   NEWPORT
## 1187     STAFFORD SPRINGS    CT    06076                   TOLLAND
## 1188              FORDYCE    AR    71742                    DALLAS
## 1189                HOUMA    LA    70363                TERREBONNE
## 1190             MANASSAS    VA    20110             MANASSAS CITY
## 1191          CHATTANOOGA    TN    37404                  HAMILTON
## 1192           SAINT PAUL    MN    55101                    RAMSEY
## 1193             KINGWOOD    WV    26537                   PRESTON
## 1194                SALEM    IL    62881                    MARION
## 1195                TULSA    OK    74132                     TULSA
## 1196             ABINGTON    PA    19001                MONTGOMERY
## 1197               HAVANA    IL    62644                     MASON
## 1198           SOMERVILLE    NJ    08876                  SOMERSET
## 1199               BOWDLE    SD    57428                   EDMUNDS
## 1200            ARLINGTON    TX    76011                   TARRANT
## 1201           HUNTSVILLE    AL    35806                   MADISON
## 1202               DAPHNE    AL    36526                   BALDWIN
## 1203             FALMOUTH    MA    02540                BARNSTABLE
## 1204            AINSWORTH    NE    69210                     BROWN
## 1205         WILKES BARRE    PA    18711                   LUZERNE
## 1206           LOUISVILLE    MS    39339                   WINSTON
## 1207                KIOWA    KS    67070                    BARBER
## 1208               ALBANY    NY    12208                    ALBANY
## 1209              CONCORD    NH    03301                 MERRIMACK
## 1210               SUMTER    SC    29150                    SUMTER
## 1211            MANHATTAN    KS    66502                     RILEY
## 1212             GOODYEAR    AZ    85338                  MARICOPA
## 1213                 NOME    AK    99762                      NOME
## 1214               IRVING    TX    75061                    DALLAS
## 1215               DEKALB    IL    60115                   DE KALB
## 1216           COUPEVILLE    WA    98239                    ISLAND
## 1217         CONNERSVILLE    IN    47331                   FAYETTE
## 1218            MILWAUKEE    WI    53215                 MILWAUKEE
## 1219             ST PETER    MN    56082                  NICOLLET
## 1220             SAVANNAH    GA    31404                   CHATHAM
## 1221               ELWOOD    IN    46036                   MADISON
## 1222              REDMOND    OR    97756                 DESCHUTES
## 1223               NOCONA    TX    76255                  MONTAGUE
## 1224        MOUNT CLEMENS    MI    48043                    MACOMB
## 1225          CENTREVILLE    MS    39631                 WILKINSON
## 1226         PHILADELPHIA    PA    19118              PHILADELPHIA
## 1227            WOODSTOCK    VA    22664                SHENANDOAH
## 1228           WATERVILLE    ME    04901                  KENNEBEC
## 1229       PRAIRIE DU SAC    WI    53578                      SAUK
## 1230                 COOK    MN    55723                 ST. LOUIS
## 1231          SAN ANTONIO    TX    78240                     BEXAR
## 1232               KAPLAN    LA    70548                 VERMILION
## 1233               SHELBY    MI    49455                    OCEANA
## 1234            PIPESTONE    MN    56164                 PIPESTONE
## 1235        WEST HARTFORD    CT    06117                  HARTFORD
## 1236        SAN FRANCISCO    CA    94110             SAN FRANCISCO
## 1237             SECAUCUS    NJ    07094                    HUDSON
## 1238        THE WOODLANDS    TX    77385                MONTGOMERY
## 1239             COLVILLE    WA    99114                   STEVENS
## 1240            MANHASSET    NY    11030                    NASSAU
## 1241               COLUSA    CA    95932                    COLUSA
## 1242              LUTCHER    LA    70071                 ST. JAMES
## 1243           CINCINNATI    OH    45236                  HAMILTON
## 1244          NEW ORLEANS    LA    70115                   ORLEANS
## 1245           HUNTINGDON    PA    16652                HUNTINGDON
## 1246             ROCKFORD    IL    61104                 WINNEBAGO
## 1247            NEW ROADS    LA    70760             POINTE COUPEE
## 1248             SECAUCUS    NJ    07094                    HUDSON
## 1249         GRAND RAPIDS    MI    49503                      KENT
## 1250       PORT CHARLOTTE    FL    33952                 CHARLOTTE
## 1251            DAHLONEGA    GA    30533                   LUMPKIN
## 1252              PHOENIX    AZ    85016                  MARICOPA
## 1253        OKLAHOMA CITY    OK    73139                  OKLAHOMA
## 1254             SHATTUCK    OK    73858                     ELLIS
## 1255        MARGARETVILLE    NY    12455                  DELAWARE
## 1256           BURLINGTON    VT    05401                CHITTENDEN
## 1257               CORONA    CA    92882                 RIVERSIDE
## 1258             CLERMONT    FL    34711                      LAKE
## 1259        ARKANSAS CITY    KS    67005                    COWLEY
## 1260              SEBRING    FL    33870                 HIGHLANDS
## 1261               DESOTO    TX    75115                    DALLAS
## 1262           FARMINGTON    MO    63640              ST. FRANCOIS
## 1263               OXFORD    NC    27565                 GRANVILLE
## 1264              TERRELL    TX    75160                   KAUFMAN
## 1265             VICTORIA    TX    77902                  VICTORIA
## 1266              TOMBALL    TX    77375                    HARRIS
## 1267              KATONAH    NY    10536               WESTCHESTER
## 1268            LEXINGTON    KY    40504                   FAYETTE
## 1269              ALTURAS    CA    96101                     MODOC
## 1270              SHAWNEE    OK    74804              POTTAWATOMIE
## 1271              AUGUSTA    GA    30912                  RICHMOND
## 1272             SAC CITY    IA    50583                       SAC
## 1273               GENEVA    NY    14456                   ONTARIO
## 1274       ALEXANDER CITY    AL    35010                TALLAPOOSA
## 1275               PUEBLO    CO    81003                    PUEBLO
## 1276            SIGOURNEY    IA    52591                    KEOKUK
## 1277            HONESDALE    PA    18431                     WAYNE
## 1278                MEDIA    PA    19063                  DELAWARE
## 1279              TRENTON    MO    64683                    GRUNDY
## 1280             BROOKLYN    NY    11212                     KINGS
## 1281            PIKEVILLE    KY    41501                      PIKE
## 1282          SPARTANBURG    SC    29307               SPARTANBURG
## 1283            WHEATLAND    WY    82201                    PLATTE
## 1284               WARREN    PA    16365                    WARREN
## 1285              WAUPACA    WI    54981                   WAUPACA
## 1286                TULSA    OK    74136                     TULSA
## 1287            ROCHESTER    MN    55904                   OLMSTED
## 1288           CLEAR LAKE    SD    57226                     DEUEL
## 1289               OTTAWA    IL    61350                  LA SALLE
## 1290              CHESTER    CA    96020                    PLUMAS
## 1291    NORTH LITTLE ROCK    AR    72117                   PULASKI
## 1292              KILLEEN    TX    76542                      BELL
## 1293          MURPHYSBORO    IL    62966                   JACKSON
## 1294          NEW ORLEANS    LA    70131                   ORLEANS
## 1295               TYRONE    PA    16686                     BLAIR
## 1296            BALTIMORE    MD    21237                 BALTIMORE
## 1297              FISHERS    IN    46037                  HAMILTON
## 1298           CEDAR PARK    TX    78613                WILLIAMSON
## 1299         MADISONVILLE    TX    77864                   MADISON
## 1300          LOS ANGELES    CA    90033               LOS ANGELES
## 1301               GOSHEN    IN    46527                   ELKHART
## 1302          STONY BROOK    NY    11794                   SUFFOLK
## 1303          TWO HARBORS    MN    55616                      LAKE
## 1304        MORENO VALLEY    CA    92555                 RIVERSIDE
## 1305              LIBERTY    MO    64069                      CLAY
## 1306              MEMPHIS    TN    38133                    SHELBY
## 1307            HARLINGEN    TX    78550                   CAMERON
## 1308          FEDERAL WAY    WA    98003                      KING
## 1309             ATLANTIC    IA    50022                      CASS
## 1310              HOUSTON    TX    77030                    HARRIS
## 1311               DURHAM    NC    27704                    DURHAM
## 1312        ATLANTIC CITY    NJ    08401                  ATLANTIC
## 1313              NEWPORT    VT    05855                   ORLEANS
## 1314          FOND DU LAC    WI    54935               FOND DU LAC
## 1315         PUNXSUTAWNEY    PA    15767                 JEFFERSON
## 1316              RUMFORD    ME    04276                    OXFORD
## 1317             SAN JOSE    CA    95128               SANTA CLARA
## 1318               TOCCOA    GA    30577                  STEPHENS
## 1319         PHILADELPHIA    PA    19140              PHILADELPHIA
## 1320             COLUMBUS    OH    43228                  FRANKLIN
## 1321             MARSHALL    TX    75670                  HARRISON
## 1322                NAMPA    ID    83687                    CANYON
## 1323                ATHOL    MA    01331                 WORCESTER
## 1324                 VAIL    CO    81657                     EAGLE
## 1325            CHARLOTTE    NC    28203               MECKLENBURG
## 1326             LAWRENCE    MA    01842                     ESSEX
## 1327               LAWTON    OK    73505                  COMANCHE
## 1328            CLEVELAND    OH    44115                  CUYAHOGA
## 1329             BILLINGS    MT    59101               YELLOWSTONE
## 1330         MIDDLE POINT    OH    45863                  VAN WERT
## 1331          ALBUQUERQUE    NM    87114                BERNALILLO
## 1332               DALLAS    TX    75218                    DALLAS
## 1333           METROPOLIS    IL    62960                    MASSAC
## 1334          CLAY CENTER    KS    67432                      CLAY
## 1335             NEW YORK    NY    10003                  NEW YORK
## 1336            HILLSBORO    OH    45133                  HIGHLAND
## 1337          KANSAS CITY    MO    64108                   JACKSON
## 1338               HINTON    WV    25951                   SUMMERS
## 1339          SILVER CITY    NM    88061                     GRANT
## 1340        OVERLAND PARK    KS    66213                   JOHNSON
## 1341     CANAL WINCHESTER    OH    43110                  FRANKLIN
## 1342           SAN RAFAEL    CA    94903                     MARIN
## 1343         PHILADELPHIA    PA    19122              PHILADELPHIA
## 1344          SAINT LOUIS    MO    63110            ST. LOUIS CITY
## 1345             VINELAND    NJ    08360                CUMBERLAND
## 1346           PLANT CITY    FL    33563              HILLSBOROUGH
## 1347               BARROW    AK    99723        NORTH SLOPE BOROUH
## 1348            COLDWATER    OH    45828                    MERCER
## 1349              TRIBUNE    KS    67879                   GREELEY
## 1350          TALLAHASSEE    FL    32308                      LEON
## 1351               ATHENS    OH    45701                    ATHENS
## 1352               NORMAL    IL    61761                   MC LEAN
## 1353             MAHNOMEN    MN    56557                  MAHNOMEN
## 1354               TACOMA    WA    98415                    PIERCE
## 1355              PHOENIX    AZ    85020                  MARICOPA
## 1356        WESLEY CHAPEL    FL    33543                     PASCO
## 1357            WINNEBAGO    WI    54985                 WINNEBAGO
## 1358            PARK CITY    UT    84060                    SUMMIT
## 1359               CENTRE    AL    35960                  CHEROKEE
## 1360            DICKINSON    ND    58601                     STARK
## 1361             COLUMBUS    IN    47201               BARTHOLOMEW
## 1362             NEWBURGH    NY    12550                    ORANGE
## 1363            RIVERSIDE    CA    92505                 RIVERSIDE
## 1364                 ROME    GA    30162                     FLOYD
## 1365            ASPERMONT    TX    79502                 STONEWALL
## 1366           BROWNFIELD    TX    79316                     TERRY
## 1367            DANSVILLE    NY    14437                LIVINGSTON
## 1368               MURRAY    UT    84107                 SALT LAKE
## 1369             COQUILLE    OR    97423                      COOS
## 1370          MONONGAHELA    PA    15063                WASHINGTON
## 1371         LITTLE FALLS    NY    13365                  HERKIMER
## 1372             PICAYUNE    MS    39466               PEARL RIVER
## 1373             MARATHON    FL    33050                    MONROE
## 1374         JOHNSON CITY    TN    37604                WASHINGTON
## 1375          SPRINGFIELD    OR    97477                      LANE
## 1376                UKIAH    CA    95482                 MENDOCINO
## 1377          BAKERSFIELD    CA    93308                      KERN
## 1378              SHELDON    IA    51201                    OBRIEN
## 1379                SEDAN    KS    67361                CHAUTAUQUA
## 1380        OKLAHOMA CITY    OK    73159                  OKLAHOMA
## 1381            CROSBYTON    TX    79322                    CROSBY
## 1382                 NAPA    CA    94558                      NAPA
## 1383             MAYAGUEZ    PR    00682                  MAYAGUEZ
## 1384              CLARION    IA    50525                    WRIGHT
## 1385      FORT WASHINGTON    MD    20744            PRINCE GEORGES
## 1386               TOOELE    UT    84074                    TOOELE
## 1387                 WACO    TX    76712                 MC LENNAN
## 1388            SALISBURY    MD    21801                  WICOMICO
## 1389             BAY CITY    MI    48708                       BAY
## 1390               LAUREL    MS    39440                     JONES
## 1391           BELLEVILLE    KS    66935                  REPUBLIC
## 1392               BOSTON    MA    02114                   SUFFOLK
## 1393          WILLINGBORO    NJ    08046                BURLINGTON
## 1394          WEST PLAINS    MO    65775                    HOWELL
## 1395         FORT MADISON    IA    52627                       LEE
## 1396               ORANGE    CA    92869                    ORANGE
## 1397           SANTA ROSA    CA    95405                    SONOMA
## 1398                TAMPA    FL    33677              HILLSBOROUGH
## 1399                CRAIG    CO    81625                    MOFFAT
## 1400                 ALVA    OK    73717                     WOODS
## 1401            CAMBRIDGE    OH    43725                  GUERNSEY
## 1402               EUGENE    OR    97401                      LANE
## 1403         GRAND SALINE    TX    75140                 VAN ZANDT
## 1404       PORT CHARLOTTE    FL    33952                 CHARLOTTE
## 1405               ALPINE    TX    79830                  BREWSTER
## 1406               FOREST    MS    39074                     SCOTT
## 1407          SAINT MARYS    PA    15857                       ELK
## 1408       SAN BERNARDINO    CA    92404            SAN BERNARDINO
## 1409              DENISON    TX    75020                   GRAYSON
## 1410              ASHLAND    WI    54806                   ASHLAND
## 1411               NEWNAN    GA    30265                    COWETA
## 1412             FLORENCE    KY    41042                     BOONE
## 1413                GROVE    OK    74344                  DELAWARE
## 1414                UNION    SC    29379                     UNION
## 1415             GLENDORA    CA    91740               LOS ANGELES
## 1416               MORTON    WA    98356                     LEWIS
## 1417              PHOENIX    AZ    85015                  MARICOPA
## 1418           BURNSVILLE    MN    55337                    DAKOTA
## 1419            LANCASTER    NH    03584                      COOS
## 1420            ROSICLARE    IL    62982                    HARDIN
## 1421        MOUNTAIN CITY    TN    37683                   JOHNSON
## 1422             COALDALE    PA    18218                SCHUYLKILL
## 1423              BEVERLY    MA    01915                     ESSEX
## 1424              WAUSEON    OH    43567                    FULTON
## 1425            MILWAUKEE    WI    53215                 MILWAUKEE
## 1426                RUGBY    ND    58368                    PIERCE
## 1427             ALLIANCE    NE    69301                 BOX BUTTE
## 1428        PANORAMA CITY    CA    91402               LOS ANGELES
## 1429       GRAND JUNCTION    CO    81502                      MESA
## 1430     DEFUNIAK SPRINGS    FL    32435                    WALTON
## 1431            BOONVILLE    IN    47601                   WARRICK
## 1432             HAMILTON    AL    35570                    MARION
## 1433            HENRYETTA    OK    74437                  OKMULGEE
## 1434             ORRVILLE    OH    44667                     WAYNE
## 1435           SAINT PAUL    MN    55102                    RAMSEY
## 1436             SHAMROCK    TX    79079                   WHEELER
## 1437             FRANKLIN    NC    28734                     MACON
## 1438        MICHIGAN CITY    IN    46360                  LA PORTE
## 1439             BROOKLYN    NY    11213                     KINGS
## 1440              NORWALK    CA    90650               LOS ANGELES
## 1441              RALEIGH    NC    27610                      WAKE
## 1442            LANCASTER    SC    29720                 LANCASTER
## 1443                NYACK    NY    10960                  ROCKLAND
## 1444             BOGALUSA    LA    70427                WASHINGTON
## 1445            RHINEBECK    NY    12572                  DUTCHESS
## 1446     SARATOGA SPRINGS    NY    12866                  SARATOGA
## 1447            KISSIMMEE    FL    34741                   OSCEOLA
## 1448          RIVER FALLS    WI    54022                    PIERCE
## 1449                ONAGA    KS    66521              POTTAWATOMIE
## 1450          WILLIMANTIC    CT    06226                   WINDHAM
## 1451            MANSFIELD    OH    44903                  RICHLAND
## 1452           BIRMINGHAM    AL    35235                 JEFFERSON
## 1453           SAN ANGELO    TX    76904                 TOM GREEN
## 1454                 ZION    IL    60099                      LAKE
## 1455              VISALIA    CA    93291                    TULARE
## 1456               GORDON    NE    69343                  SHERIDAN
## 1457           EVANSVILLE    IN    47747               VANDERBURGH
## 1458               AUSTIN    TX    78705                    TRAVIS
## 1459        SAN AUGUSTINE    TX    75972             SAN AUGUSTINE
## 1460               SONORA    TX    76950                    SUTTON
## 1461            SAN DIEGO    CA    92123                 SAN DIEGO
## 1462                OSSEO    WI    54758               TREMPEALEAU
## 1463               TAHOKA    TX    79373                      LYNN
## 1464             KINGWOOD    TX    77325                    HARRIS
## 1465            KINGSTREE    SC    29556              WILLIAMSBURG
## 1466                EDINA    MN    55435                  HENNEPIN
## 1467         WEST LIBERTY    KY    41472                    MORGAN
## 1468             ATLANTIS    FL    33462                PALM BEACH
## 1469            RIVERDALE    GA    30274                   CLAYTON
## 1470            MARYVILLE    TN    37804                    BLOUNT
## 1471               MOBILE    AL    36617                    MOBILE
## 1472         ELLWOOD CITY    PA    16117                  LAWRENCE
## 1473            HARLOWTON    MT    59036                 WHEATLAND
## 1474       ALEXANDRIA BAY    NY    13607                 JEFFERSON
## 1475             CHANDLER    AZ    85224                  MARICOPA
## 1476              YANKTON    SD    57078                   YANKTON
## 1477                MIAMI    OK    74355                    OTTAWA
## 1478             HATO REY    PR    00919                  SAN JUAN
## 1479           FORT SMITH    AR    72917                 SEBASTIAN
## 1480            HENDRICKS    MN    56136                   LINCOLN
## 1481              AHOSKIE    NC    27910                  HERTFORD
## 1482           MONTICELLO    IL    61856                     PIATT
## 1483           TITUSVILLE    FL    32796                   BREVARD
## 1484           MIAMISBURG    OH    45342                MONTGOMERY
## 1485      EAST PROVIDENCE    RI    02915                PROVIDENCE
## 1486              CONCORD    OH    44077                      LAKE
## 1487               WINDOM    MN    56101                COTTONWOOD
## 1488       MARINA DEL REY    CA    90291               LOS ANGELES
## 1489              MARLTON    NJ    08053                BURLINGTON
## 1490                OLEAN    NY    14760               CATTARAUGUS
## 1491             MARIETTA    OH    45750                WASHINGTON
## 1492               NORMAN    OK    73070                 CLEVELAND
## 1493              POMEROY    WA    99347                  GARFIELD
## 1494                 LODI    OH    44254                    MEDINA
## 1495               AUSTIN    TX    78705                    TRAVIS
## 1496               FRESNO    CA    93720                    FRESNO
## 1497               MCCOMB    MS    39649                      PIKE
## 1498               FULTON    MO    65251                  CALLAWAY
## 1499              CHICAGO    IL    60615                      COOK
## 1500            TULLAHOMA    TN    37388                    COFFEE
## 1501            BLUEFIELD    WV    24701                    MERCER
## 1502         LOS ALAMITOS    CA    90720                    ORANGE
## 1503           PORTSMOUTH    OH    45662                    SCIOTO
## 1504            SAN DIEGO    CA    92103                 SAN DIEGO
## 1505               DELAND    FL    32720                   VOLUSIA
## 1506           GREENVILLE    NC    27834                      PITT
## 1507           BIRMINGHAM    AL    35205                 JEFFERSON
## 1508          LOS ANGELES    CA    90027               LOS ANGELES
## 1509          PAINTSVILLE    KY    41240                   JOHNSON
## 1510           CARROLLTON    AL    35447                   PICKENS
## 1511               BENTON    IL    62812                  FRANKLIN
## 1512        NEBRASKA CITY    NE    68410                      OTOE
## 1513             CARTHAGE    MO    64836                    JASPER
## 1514             LEESBURG    FL    34748                      LAKE
## 1515          ALBUQUERQUE    NM    87106                BERNALILLO
## 1516          NOBLESVILLE    IN    46060                  HAMILTON
## 1517           LINCOLNTON    NC    28092                   LINCOLN
## 1518          BAY MINETTE    AL    36507                   BALDWIN
## 1519             GUNNISON    CO    81230                  GUNNISON
## 1520               BAXLEY    GA    31513                   APPLING
## 1521          NEW HAMPTON    IA    50659                 CHICKASAW
## 1522     SAINT PETERSBURG    FL    33710                  PINELLAS
## 1523              ANAMOSA    IA    52205                     JONES
## 1524              ALTOONA    WI    54720                EAU CLAIRE
## 1525         MOUNT GILEAD    OH    43338                    MORROW
## 1526               MAUMEE    OH    43537                     LUCAS
## 1527           PITTSBURGH    PA    15224                 ALLEGHENY
## 1528             LAGRANGE    GA    30240                     TROUP
## 1529              GLASGOW    KY    42141                    BARREN
## 1530          FORT PIERCE    FL    34950                 ST. LUCIE
## 1531              RUIDOSO    NM    88345                   LINCOLN
## 1532               TUPELO    MS    38801                       LEE
## 1533                OGDEN    UT    84405                     WEBER
## 1534            PENDLETON    OR    97801                  UMATILLA
## 1535              REXBURG    ID    83440                   MADISON
## 1536         VILLE PLATTE    LA    70586                EVANGELINE
## 1537              GILBERT    AZ    85297                  MARICOPA
## 1538               NEWARK    NJ    07101                     ESSEX
## 1539             DEFIANCE    OH    43512                  DEFIANCE
## 1540                LOGAN    WV    25601                     LOGAN
## 1541           BLACKSBURG    VA    24060                MONTGOMERY
## 1542       OLYMPIA FIELDS    IL    60461                      COOK
## 1543              BEL AIR    MD    21014                   HARFORD
## 1544               DUBLIN    GA    31021                   LAURENS
## 1545            SAN RAMON    CA    94583              CONTRA COSTA
## 1546          MCMINNVILLE    OR    97128                   YAMHILL
## 1547           FORT WORTH    TX    76110                   TARRANT
## 1548                TIOGA    ND    58852                  WILLIAMS
## 1549              TURLOCK    CA    95382                STANISLAUS
## 1550                ATOKA    OK    74525                     ATOKA
## 1551               BUTNER    NC    27509                 GRANVILLE
## 1552          MARLBOROUGH    MA    01752                 MIDDLESEX
## 1553         WALNUT CREEK    CA    94598              CONTRA COSTA
## 1554               JORDAN    MT    59337                  GARFIELD
## 1555             COLUMBIA    SC    29203                  RICHLAND
## 1556              PHOENIX    AZ    85016                  MARICOPA
## 1557         RANDALLSTOWN    MD    21133                 BALTIMORE
## 1558            LANCASTER    WI    53813                     GRANT
## 1559           HACKENSACK    NJ    07601                    BERGEN
## 1560             WINFIELD    AL    35594                   FAYETTE
## 1561          BATON ROUGE    LA    70806            E. BATON ROUGE
## 1562              TOMBALL    TX    77375                    HARRIS
## 1563             LOVELAND    CO    80538                   LARIMER
## 1564              MILFORD    MA    01757                 WORCESTER
## 1565          LEITCHFIELD    KY    42754                   GRAYSON
## 1566             WOODRUFF    WI    54568                     VILAS
## 1567              ROXBORO    NC    27573                    PERSON
## 1568                 ZUNI    NM    87327                  MCKINLEY
## 1569            SKOWHEGAN    ME    04976                  SOMERSET
## 1570            OCEANSIDE    NY    11572                    NASSAU
## 1571             KEMMERER    WY    83101                   LINCOLN
## 1572            WILLISTON    ND    58801                  WILLIAMS
## 1573           CHARLESTON    WV    25301                   KANAWHA
## 1574                HOXIE    KS    67740                  SHERIDAN
## 1575        WARNER ROBINS    GA    31093                   HOUSTON
## 1576             CHEYENNE    WY    82001                   LARAMIE
## 1577               CALAIS    ME    04619                WASHINGTON
## 1578               ATHENS    TX    75751                 HENDERSON
## 1579                ELGIN    IL    60123                      KANE
## 1580            LUDINGTON    MI    49431                     MASON
## 1581            PLAINVIEW    TX    79072                      HALE
## 1582               LAWTON    OK    73505                  COMANCHE
## 1583               SENECA    KS    66538                    NEMAHA
## 1584              MANTECA    CA    95337               SAN JOAQUIN
## 1585             CULPEPER    VA    22701                  CULPEPER
## 1586          SPIRIT LAKE    IA    51360                 DICKINSON
## 1587            GALESBURG    IL    61401                      KNOX
## 1588              DENISON    IA    51442                  CRAWFORD
## 1589                 AVON    OH    44011                    LORAIN
## 1590         LAKE CHARLES    LA    70601                 CALCASIEU
## 1591          TERRE HAUTE    IN    47802                      VIGO
## 1592          WEATHERFORD    OK    73096                    CUSTER
## 1593          SPRINGFIELD    IL    62702                  SANGAMON
## 1594            TEXARKANA    TX    75504                     BOWIE
## 1595              FREEMAN    SD    57029                HUTCHINSON
## 1596              GARDNER    MA    01440                 WORCESTER
## 1597              WOOSTER    OH    44691                     WAYNE
## 1598              LANGDON    ND    58249                  CAVALIER
## 1599          LOS ANGELES    CA    90027               LOS ANGELES
## 1600             BROOKLYN    NY    11235                     KINGS
## 1601          PANAMA CITY    FL    32405                       BAY
## 1602               AMBLER    PA    19002                MONTGOMERY
## 1603          BROOKSVILLE    FL    34601                  HERNANDO
## 1604           YOUNGSTOWN    OH    44501                  MAHONING
## 1605          NEW ORLEANS    LA    70118                   ORLEANS
## 1606            KINGSPORT    TN    37660                  SULLIVAN
## 1607            JOHNSTOWN    CO    80534                      WELD
## 1608          HATTIESBURG    MS    39404                   FORREST
## 1609           CARROLLTON    TX    75010                    DENTON
## 1610          WALLINGFORD    CT    06492                 NEW HAVEN
## 1611         RUSSELLVILLE    AR    72801                      POPE
## 1612           MASON CITY    IA    50401               CERRO GORDO
## 1613           LOUISVILLE    CO    80027                   BOULDER
## 1614             EATONTON    GA    31024                    PUTNAM
## 1615              ATLANTA    GA    30312                    FULTON
## 1616        LAKE ISABELLA    CA    93240                      KERN
## 1617             CROCKETT    TX    75835                   HOUSTON
## 1618           BINGHAMTON    NY    13901                    BROOME
## 1619         LAKE CHARLES    LA    70601                 CALCASIEU
## 1620        OKLAHOMA CITY    OK    73120                  OKLAHOMA
## 1621              JACKSON    MS    39216                     HINDS
## 1622         CARTERSVILLE    GA    30120                    BARTOW
## 1623           GREENSBURG    IN    47240                   DECATUR
## 1624              HOUSTON    TX    77090                    HARRIS
## 1625              PONTIAC    IL    61764                LIVINGSTON
## 1626              MULLINS    SC    29574                    MARION
## 1627               WEISER    ID    83672                WASHINGTON
## 1628            GRAPEVINE    TX    76051                   TARRANT
## 1629                BLAIR    NE    68008                WASHINGTON
## 1630               DALLAS    TX    75390                    DALLAS
## 1631   MIDDLEBURG HEIGHTS    OH    44130                  CUYAHOGA
## 1632            ST JOSEPH    MI    49085                   BERRIEN
## 1633              JACKSON    CA    95642                    AMADOR
## 1634               OWASSO    OK    74055                     TULSA
## 1635            FAIRFIELD    OH    45014                    BUTLER
## 1636             CHANDLER    AZ    85225                  MARICOPA
## 1637            ROCHESTER    MN    55902                   OLMSTED
## 1638            INVERNESS    FL    34452                    CITRUS
## 1639             DANVILLE    PA    17821                   MONTOUR
## 1640       SAN BERNARDINO    CA    92411            SAN BERNARDINO
## 1641              MILBANK    SD    57252                     GRANT
## 1642  INTERNATIONAL FALLS    MN    56649               KOOCHICHING
## 1643          SANTA CLARA    CA    95051               SANTA CLARA
## 1644            FAIRFIELD    IL    62837                     WAYNE
## 1645             KALKASKA    MI    49646                  KALKASKA
## 1646               DULUTH    MN    55805                 ST. LOUIS
## 1647              COLEMAN    TX    76834                   COLEMAN
## 1648              CASCADE    ID    83611                    VALLEY
## 1649               ONAMIA    MN    56359                MILLE LACS
## 1650           CHARLESTON    SC    29401                CHARLESTON
## 1651             TECUMSEH    NE    68450                   JOHNSON
## 1652            NASHVILLE    TN    37203                  DAVIDSON
## 1653           NEW ALBANY    MS    38652                     UNION
## 1654              AUDUBON    IA    50025                   AUDUBON
## 1655            FAIRFIELD    IA    52556                 JEFFERSON
## 1656              BREVARD    NC    28712              TRANSYLVANIA
## 1657              MILFORD    UT    84751                    BEAVER
## 1658               GALION    OH    44833                  CRAWFORD
## 1659              PADUCAH    KY    42003                MC CRACKEN
## 1660             PUYALLUP    WA    98372                    PIERCE
## 1661              LA JARA    CO    81140                   CONEJOS
## 1662                HOMER    AK    99603           KENAI PENINSULA
## 1663              WEBSTER    TX    77598                    HARRIS
## 1664          GAINESVILLE    FL    32610                   ALACHUA
## 1665           SUGAR LAND    TX    77478                 FORT BEND
## 1666               ALBANY    NY    12208                    ALBANY
## 1667               ORANGE    CA    92868                    ORANGE
## 1668              PROSSER    WA    99350                    BENTON
## 1669         PHILADELPHIA    PA    19104              PHILADELPHIA
## 1670           WESTAMPTON    NJ    08060                BURLINGTON
## 1671                 TROY    NC    27371                MONTGOMERY
## 1672           SACRAMENTO    CA    95841                SACRAMENTO
## 1673                LORIS    SC    29569                     HORRY
## 1674               LAYTON    UT    84041                     DAVIS
## 1675             BROOKLYN    NY    11203                     KINGS
## 1676              TRINITY    FL    34655                     PASCO
## 1677               DOWNEY    CA    90241               LOS ANGELES
## 1678            BALTIMORE    MD    21287            BALTIMORE CITY
## 1679              PHOENIX    AZ    85006                  MARICOPA
## 1680          OSAGE BEACH    MO    65065                    CAMDEN
## 1681              SAFFORD    AZ    85546                    GRAHAM
## 1682         RUSSELLVILLE    KY    42276                     LOGAN
## 1683     MARYLAND HEIGHTS    MO    63043                 ST. LOUIS
## 1684              TARBORO    NC    27886                 EDGECOMBE
## 1685          NEW ORLEANS    LA    70127                   ORLEANS
## 1686               NEWTON    IA    50208                    JASPER
## 1687              MEMPHIS    TN    38118                    SHELBY
## 1688             LOWVILLE    NY    13367                     LEWIS
## 1689                MIAMI    FL    33136                MIAMI-DADE
## 1690            CLEVELAND    OK    74020                    PAWNEE
## 1691              SEASIDE    OR    97138                   CLATSOP
## 1692               EUPORA    MS    39744                   WEBSTER
## 1693                IRAAN    TX    79744                     PECOS
## 1694              RED BAY    AL    35582                  FRANKLIN
## 1695                TULSA    OK    74120                     TULSA
## 1696             WHITTIER    CA    90602               LOS ANGELES
## 1697               LONDON    OH    43140                   MADISON
## 1698           ENTERPRISE    OR    97828                   WALLOWA
## 1699              HOLYOKE    MA    01040                   HAMPDEN
## 1700              QUITMAN    TX    75783                      WOOD
## 1701          NEW ORLEANS    LA    70112                   ORLEANS
## 1702           DYERSVILLE    IA    52040                   DUBUQUE
## 1703               KOKOMO    IN    46902                    HOWARD
## 1704          TERRE HAUTE    IN    47804                      VIGO
## 1705          BATON ROUGE    LA    70809            E. BATON ROUGE
## 1706        MONTEREY PARK    CA    91754               LOS ANGELES
## 1707              SEYMOUR    IN    47274                   JACKSON
## 1708           GREENVILLE    ME    04441               PISCATAQUIS
## 1709           LITCHFIELD    IL    62056                MONTGOMERY
## 1710             HASTINGS    NE    68901                     ADAMS
## 1711               MARION    IN    46952                     GRANT
## 1712            LAFAYETTE    LA    70508                 LAFAYETTE
## 1713             MERIDIAN    MS    39301                LAUDERDALE
## 1714               GARNER    NC    27529                      WAKE
## 1715             PATERSON    NJ    07503                   PASSAIC
## 1716                DERBY    CT    06418                 NEW HAVEN
## 1717          MILLERSBURG    OH    44654                    HOLMES
## 1718             RADCLIFF    KY    40160                    HARDIN
## 1719                TULSA    OK    74104                     TULSA
## 1720              JACKSON    KY    41339                 BREATHITT
## 1721           CARROLLTON    MO    64633                   CARROLL
## 1722              MENDOTA    IL    61342                  LA SALLE
## 1723              LUBBOCK    TX    79412                   LUBBOCK
## 1724          CHILLICOTHE    MO    64601                LIVINGSTON
## 1725               FRUITA    CO    81521                      MESA
## 1726           CLARKSDALE    MS    38614                   COAHOMA
## 1727            CASS LAKE    MN    56633                      CASS
## 1728             GLENDALE    AZ    85302                  MARICOPA
## 1729           OKEECHOBEE    FL    34972                OKEECHOBEE
## 1730               SIDNEY    MT    59270                  RICHLAND
## 1731              SUNBURY    PA    17801             NORTHUMBERLND
## 1732             LOCKPORT    NY    14094                   NIAGARA
## 1733           BIRMINGHAM    AL    35243                 JEFFERSON
## 1734           MOCKSVILLE    NC    27028                     DAVIE
## 1735            ENGLEWOOD    FL    34223                  SARASOTA
## 1736             DANVILLE    VA    24541             DANVILLE CITY
## 1737               MEEKER    CO    81641                RIO BLANCO
## 1738               UPLAND    PA    19013                  DELAWARE
## 1739             REPUBLIC    WA    99166                     FERRY
## 1740          LOS ANGELES    CA    90033               LOS ANGELES
## 1741              ATLANTA    GA    30322                   DE KALB
## 1742           WALTERBORO    SC    29488                  COLLETON
## 1743          QUEEN CREEK    AZ    85140                     PINAL
## 1744           STILLWATER    MN    55082                WASHINGTON
## 1745            TAVERNIER    FL    33070                    MONROE
## 1746           SHREVEPORT    LA    71101                     CADDO
## 1747                PERRY    OK    73077                     NOBLE
## 1748               ALBANY    KY    42602                   CLINTON
## 1749             EVANSTON    WY    82931                     UINTA
## 1750        FREDERICKTOWN    MO    63645                   MADISON
## 1751         MOUNT VERNON    NY    10550               WESTCHESTER
## 1752           BENNINGTON    VT    05201                BENNINGTON
## 1753           MONTGOMERY    WV    25136                   FAYETTE
## 1754           BIG SPRING    TX    79721                    HOWARD
## 1755     WISCONSIN RAPIDS    WI    54495                      WOOD
## 1756     SAINT PETERSBURG    FL    33705                  PINELLAS
## 1757           FORT SCOTT    KS    66701                   BOURBON
## 1758             EVANSTON    IL    60202                      COOK
## 1759              LINCOLN    ME    04457                 PENOBSCOT
## 1760             PASADENA    TX    77504                    HARRIS
## 1761             FLUSHING    NY    11355                    QUEENS
## 1762               DOTHAN    AL    36301                   HOUSTON
## 1763             MARIPOSA    CA    95338                  MARIPOSA
## 1764             ACKERMAN    MS    39735                   CHOCTAW
## 1765              DETROIT    MI    48201                     WAYNE
## 1766           WASHINGTON    DC    20010              THE DISTRICT
## 1767              HYANNIS    MA    02601                BARNSTABLE
## 1768              OBERLIN    OH    44074                    LORAIN
## 1769           SANTA ROSA    NM    88435                 GUADALUPE
## 1770        CONNELLSVILLE    PA    15425                   FAYETTE
## 1771                KANAB    UT    84741                      KANE
## 1772              HALLOCK    MN    56728                   KITTSON
## 1773                LEOTI    KS    67861                   WICHITA
## 1774            MELBOURNE    FL    32935                   BREVARD
## 1775              EUFAULA    AL    36027                   BARBOUR
## 1776           BURLINGTON    MA    01803                 MIDDLESEX
## 1777            ARLINGTON    TX    76015                   TARRANT
## 1778         PHILADELPHIA    PA    19128              PHILADELPHIA
## 1779            BRADENTON    FL    34208                   MANATEE
## 1780            STAR LAKE    NY    13690              ST. LAWRENCE
## 1781              MEMPHIS    MO    63555                  SCOTLAND
## 1782          BAKERSFIELD    CA    93301                      KERN
## 1783              LANSING    MI    48910                    INGHAM
## 1784               DURHAM    NC    27710                    DURHAM
## 1785           ST FRANCIS    KS    67756                  CHEYENNE
## 1786            JEFFERSON    NC    28640                      ASHE
## 1787                ELGIN    ND    58533                     GRANT
## 1788              GRAFTON    WI    53024                   OZAUKEE
## 1789              WILLCOX    AZ    85643                   COCHISE
## 1790           HUNTINGTON    WV    25702                    CABELL
## 1791               WESTON    WI    54476                  MARATHON
## 1792              QUINTER    KS    67752                      GOVE
## 1793           STATESBORO    GA    30458                   BULLOCH
## 1794           SCOTTSDALE    AZ    85251                  MARICOPA
## 1795               MADILL    OK    73446                  MARSHALL
## 1796             SOMERSET    KY    42503                   PULASKI
## 1797             SIKESTON    MO    63801                     SCOTT
## 1798            LEXINGTON    KY    40536                   FAYETTE
## 1799      CORTLANDT MANOR    NY    10567               WESTCHESTER
## 1800           PLAINSBORO    NJ    08536                 MIDDLESEX
## 1801             GLENDALE    WI    53212                 MILWAUKEE
## 1802        DOWNERS GROVE    IL    60515                   DU PAGE
## 1803                HOMER    LA    71040                 CLAIBORNE
## 1804          CROWN POINT    IN    46307                      LAKE
## 1805        OKLAHOMA CITY    OK    73120                  OKLAHOMA
## 1806              SACATON    AZ    85147                     PINAL
## 1807            BLACKFOOT    ID    83221                   BINGHAM
## 1808               FRIEND    NE    68359                    SALINE
## 1809              PERIDOT    AZ    85542                      GILA
## 1810           LONG BEACH    CA    90804               LOS ANGELES
## 1811            JONESBORO    LA    71251                   JACKSON
## 1812         INDIANAPOLIS    IN    46256                    MARION
## 1813           MOUNDRIDGE    KS    67107                 MCPHERSON
## 1814           GEORGETOWN    TX    78626                WILLIAMSON
## 1815                TAMPA    FL    33614              HILLSBOROUGH
## 1816          KANSAS CITY    MO    64133                   JACKSON
## 1817               COLTON    CA    92324            SAN BERNARDINO
## 1818              ORLANDO    FL    32821                    ORANGE
## 1819            LEESVILLE    LA    71446                    VERNON
## 1820             GILLETTE    WY    82716                  CAMPBELL
## 1821           PROVIDENCE    RI    02903                PROVIDENCE
## 1822          GIBSON CITY    IL    60936                      FORD
## 1823        WICHITA FALLS    TX    76301                   WICHITA
## 1824           ALEXANDRIA    LA    71301                   RAPIDES
## 1825        MIRAMAR BEACH    FL    32550                    WALTON
## 1826                OAKES    ND    58474                    DICKEY
## 1827          CENTERVILLE    IA    52544                 APPANOOSE
## 1828               YAKIMA    WA    98902                    YAKIMA
## 1829              HERMANN    MO    65041                 GASCONADE
## 1830              WARWICK    RI    02886                      KENT
## 1831           SACRAMENTO    CA    95816                SACRAMENTO
## 1832             FAIRMONT    WV    26554                    MARION
## 1833   SAULT SAINTE MARIE    MI    49783                  CHIPPEWA
## 1834              GLENCOE    MN    55336                   MC LEOD
## 1835              GARAPAN    MP    96950                    SAIPAN
## 1836             FRANKLIN    IN    46131                   JOHNSON
## 1837     NORTH PROVIDENCE    RI    02904                PROVIDENCE
## 1838            DADEVILLE    AL    36853                TALLAPOOSA
## 1839               BELOIT    KS    67420                  MITCHELL
## 1840              CLARION    PA    16214                   CLARION
## 1841            IOWA CITY    IA    52242                   JOHNSON
## 1842             DOWAGIAC    MI    49047                      CASS
## 1843              ABILENE    TX    79601                    TAYLOR
## 1844            CEDARTOWN    GA    30125                      POLK
## 1845           MONTEVIDEO    MN    56265                  CHIPPEWA
## 1846              CHANUTE    KS    66720                    NEOSHO
## 1847            CAMBRIDGE    NE    69022                    FURNAS
## 1848             KEY WEST    FL    33040                    MONROE
## 1849          NEW ORLEANS    LA    70128                   ORLEANS
## 1850               DALLAS    TX    75235                    DALLAS
## 1851        BREAUX BRIDGE    LA    70517                ST. MARTIN
## 1852                SALEM    KY    42078                LIVINGSTON
## 1853          HAZEL CREST    IL    60429                      COOK
## 1854                PERRY    GA    31069                   HOUSTON
## 1855              GLASGOW    MT    59230                    VALLEY
## 1856             SAN JUAN    PR    00915                  SAN JUAN
## 1857        HARRISONVILLE    MO    64701                      CASS
## 1858             ASHEBORO    NC    27204                  RANDOLPH
## 1859              AUGUSTA    GA    30906                  RICHMOND
## 1860         SANTA MONICA    CA    90404               LOS ANGELES
## 1861              HAMMOND    LA    70403                TANGIPAHOA
## 1862            HENDERSON    TX    75652                      RUSK
## 1863               LAWTON    OK    73505                  COMANCHE
## 1864                LARGO    FL    33770                  PINELLAS
## 1865            GALESBURG    IL    61401                      KNOX
## 1866            HENDERSON    NE    68371                      YORK
## 1867              DECATUR    AL    35601                    MORGAN
## 1868             WAUCHULA    FL    33873                    HARDEE
## 1869              BERWICK    PA    18603                  COLUMBIA
## 1870              MADISON    WV    25130                     BOONE
## 1871                BRONX    NY    10457                     BRONX
## 1872                 DYER    IN    46311                      LAKE
## 1873      CHARLOTTESVILLE    VA    22908      CHARLOTTESVILLE CITY
## 1874         WARM SPRINGS    GA    31830                MERIWETHER
## 1875                 DUNN    NC    28334                   HARNETT
## 1876              LUVERNE    MN    56156                      ROCK
## 1877             SCHUYLER    NE    68661                    COLFAX
## 1878           NEW LONDON    CT    06320                NEW LONDON
## 1879              LINCOLN    NE    68509                 LANCASTER
## 1880                 ENID    OK    73701                  GARFIELD
## 1881                MACON    GA    31201                      BIBB
## 1882              JETMORE    KS    67854                  HODGEMAN
## 1883            LITTLETON    NH    03561                   GRAFTON
## 1884           MONTGOMERY    AL    36117                MONTGOMERY
## 1885      FORT LAUDERDALE    FL    33308                   BROWARD
## 1886          PARK RAPIDS    MN    56470                   HUBBARD
## 1887               GRANTS    NM    87020                    CIBOLA
## 1888             BREWSTER    WA    98812                  OKANOGAN
## 1889         MOUNT VERNON    OH    43050                      KNOX
## 1890             SUPERIOR    WI    54880                   DOUGLAS
## 1891              VENTURA    CA    93003                   VENTURA
## 1892           SHELL LAKE    WI    54871                  WASHBURN
## 1893         FISHERSVILLE    VA    22939                   AUGUSTA
## 1894          BLAIRSVILLE    GA    30512                     UNION
## 1895            SOUTHAVEN    MS    38671                   DE SOTO
## 1896           OSAWATOMIE    KS    66064                     MIAMI
## 1897            WORCESTER    MA    01605                 WORCESTER
## 1898               BENTON    AR    72015                    SALINE
## 1899            NESS CITY    KS    67560                      NESS
## 1900             BETHESDA    MD    20814                MONTGOMERY
## 1901            TREMONTON    UT    84337                 BOX ELDER
## 1902              WILLITS    CA    95490                 MENDOCINO
## 1903              GENESEO    IL    61254                     HENRY
## 1904             PRESCOTT    AZ    86301                   YAVAPAI
## 1905             NEWBURGH    IN    47630                   WARRICK
## 1906           KINGFISHER    OK    73750                KINGFISHER
## 1907            BRIDGETON    MO    63044                 ST. LOUIS
## 1908     LAKE HAVASU CITY    AZ    86403                    MOHAVE
## 1909          CHESTERTOWN    MD    21620                      KENT
## 1910              BUFFALO    NY    14210                      ERIE
## 1911                 YUMA    CO    80759                      YUMA
## 1912             TAZEWELL    VA    24651                  TAZEWELL
## 1913                DIXON    IL    61021                       LEE
## 1914      COLLEGE STATION    TX    77842                    BRAZOS
## 1915          CENTREVILLE    IL    62207                 ST. CLAIR
## 1916             LAMPASAS    TX    76550                  LAMPASAS
## 1917              BAD AXE    MI    48413                     HURON
## 1918            RIVERHEAD    NY    11901                   SUFFOLK
## 1919            JULESBURG    CO    80737                  SEDGWICK
## 1920               CASPER    WY    82609                   NATRONA
## 1921      HUNTINGTON PARK    CA    90255               LOS ANGELES
## 1922            BALLINGER    TX    76821                   RUNNELS
## 1923            YUBA CITY    CA    95991                    SUTTER
## 1924           BIRMINGHAM    AL    35233                 JEFFERSON
## 1925           LAS CRUCES    NM    88011                  DONA ANA
## 1926          SPRINGFIELD    MA    01104                   HAMPDEN
## 1927         INDIANAPOLIS    IN    46260                    MARION
## 1928               QUINCY    IL    62305                     ADAMS
## 1929                PARMA    OH    44129                  CUYAHOGA
## 1930             CLEBURNE    TX    76033                   JOHNSON
## 1931                FARGO    ND    58122                      CASS
## 1932              WAVERLY    IA    50677                    BREMER
## 1933         MARSHALLTOWN    IA    50158                  MARSHALL
## 1934              AUGUSTA    GA    30904                  RICHMOND
## 1935              HOULTON    ME    04730                 AROOSTOOK
## 1936             LITHONIA    GA    30058                   DE KALB
## 1937             WAUKEGAN    IL    60085                      LAKE
## 1938               LARNED    KS    67550                    PAWNEE
## 1939              CAMERON    MO    64429                   CLINTON
## 1940           CINCINNATI    OH    45229                  HAMILTON
## 1941               MONROE    LA    71203                  OUACHITA
## 1942               HEBRON    NE    68370                    THAYER
## 1943             TONASKET    WA    98855                  OKANOGAN
## 1944            NASHVILLE    TN    37207                  DAVIDSON
## 1945            SYLACAUGA    AL    35150                 TALLADEGA
## 1946          SAINT CLOUD    FL    34769                   OSCEOLA
## 1947               MUNCIE    IN    47303                  DELAWARE
## 1948             SAN JUAN    PR    00936                  SAN JUAN
## 1949           MENLO PARK    CA    94025                 SAN MATEO
## 1950            CLEVELAND    TN    37311                   BRADLEY
## 1951                CAYEY    PR    00737                     CAYEY
## 1952             BURLESON    TX    76028                   JOHNSON
## 1953            SAN DIEGO    CA    92120                 SAN DIEGO
## 1954         MURFREESBORO    TN    37129                RUTHERFORD
## 1955            HILLSDALE    MI    49242                 HILLSDALE
## 1956                  ELY    NV    89301                WHITE PINE
## 1957           YOUNGSTOWN    OH    44505                  MAHONING
## 1958                HOUMA    LA    70360                TERREBONNE
## 1959               BOSTON    MA    02114                   SUFFOLK
## 1960          HOT SPRINGS    AR    71903                   GARLAND
## 1961          VICTORVILLE    CA    92395            SAN BERNARDINO
## 1962             SCRANTON    PA    18501                LACKAWANNA
## 1963       SALT LAKE CITY    UT    84103                 SALT LAKE
## 1964           MIDDLETOWN    CT    06457                 MIDDLESEX
## 1965          SIOUX FALLS    SD    57117                 MINNEHAHA
## 1966              KINSLEY    KS    67547                   EDWARDS
## 1967         HOPKINSVILLE    KY    42240                 CHRISTIAN
## 1968             SAVANNAH    TN    38372                    HARDIN
## 1969         MEDICAL LAKE    WA    99022                   SPOKANE
## 1970              CLINTON    IL    61727                   DE WITT
## 1971               SPARKS    NV    89431                    WASHOE
## 1972              LIVONIA    MI    48154                     WAYNE
## 1973              LAURIUM    MI    49913                  HOUGHTON
## 1974             HONOLULU    HI    96813                  HONOLULU
## 1975          CANANDAIGUA    NY    14424                   ONTARIO
## 1976             STAUNTON    VA    24402             STAUNTON CITY
## 1977           KAUNAKAKAI    HI    96748                      MAUI
## 1978               BOSTON    MA    02115                   SUFFOLK
## 1979            WEST BEND    WI    53095                WASHINGTON
## 1980             GULFPORT    MS    39502                  HARRISON
## 1981               WAIMEA    HI    96796                     KAUAI
## 1982            TUCUMCARI    NM    88401                      QUAY
## 1983              MOBERLY    MO    65270                  RANDOLPH
## 1984                PARIS    KY    40361                   BOURBON
## 1985             SYRACUSE    NY    13203                  ONONDAGA
## 1986          COATESVILLE    PA    19320                   CHESTER
## 1987        OKLAHOMA CITY    OK    73129                  OKLAHOMA
## 1988           GOUVERNEUR    NY    13642              ST. LAWRENCE
## 1989               CANTON    SD    57013                   LINCOLN
## 1990             SHIPROCK    NM    87420                  SAN JUAN
## 1991          IDAHO FALLS    ID    83404                BONNEVILLE
## 1992               SMYRNA    TN    37167                RUTHERFORD
## 1993               WESTON    FL    33331                   BROWARD
## 1994              HAYWARD    WI    54843                    SAWYER
## 1995              READING    PA    19605                     BERKS
## 1996                OMAHA    NE    68198                   DOUGLAS
## 1997                BRITT    IA    50423                   HANCOCK
## 1998          JOHNS CREEK    GA    30097                  GWINNETT
## 1999           MARKSVILLE    LA    71351                 AVOYELLES
## 2000             COLUMBIA    SC    29212                 LEXINGTON
## 2001         CENTRAL CITY    NE    68826                   MERRICK
## 2002            TEXARKANA    TX    75501                     BOWIE
## 2003            EVERGREEN    AL    36401                   CONECUH
## 2004          WEST MONROE    LA    71291                  OUACHITA
## 2005              HEPPNER    OR    97836                    MORROW
## 2006         WEST MEMPHIS    AR    72301                CRITTENDEN
## 2007         SAINT HELENA    CA    94574                      NAPA
## 2008              WABASHA    MN    55981                   WABASHA
## 2009       PORT SAINT JOE    FL    32456                      GULF
## 2010           MIDLOTHIAN    VA    23114              CHESTERFIELD
## 2011       GRAND JUNCTION    CO    81501                      MESA
## 2012                 MORA    MN    55051                   KANABEC
## 2013                 CODY    WY    82414                      PARK
## 2014            JAMESTOWN    ND    58401                  STUTSMAN
## 2015         FAYETTEVILLE    GA    30214                   FAYETTE
## 2016              ASHLAND    KY    41101                      BOYD
## 2017      FORT OGLETHORPE    GA    30742                   CATOOSA
## 2018                SALEM    NJ    08079                     SALEM
## 2019               AUSTIN    TX    78751                    TRAVIS
## 2020           SIOUX CITY    IA    51101                  WOODBURY
## 2021            MANSFIELD    LA    71052                   DE SOTO
## 2022              KENOSHA    WI    53143                   KENOSHA
## 2023              BRANDON    MS    39042                    RANKIN
## 2024         SAINT JOSEPH    MO    64506                  BUCHANAN
## 2025           NORTHFIELD    MN    55057                      RICE
## 2026              BRISTOL    TN    37620                  SULLIVAN
## 2027            KEOSAUQUA    IA    52565                 VAN BUREN
## 2028           EAU CLAIRE    WI    54703                EAU CLAIRE
## 2029                ELKIN    NC    28621                     SURRY
## 2030         BOULDER CITY    NV    89005                     CLARK
## 2031          SAN ANTONIO    TX    78249                     BEXAR
## 2032             BROCKTON    MA    02301                  PLYMOUTH
## 2033         SMITH CENTER    KS    66967                     SMITH
## 2034              WAVERLY    TN    37185                 HUMPHREYS
## 2035        STATEN ISLAND    NY    10304                  RICHMOND
## 2036            LAFAYETTE    LA    70507                 LAFAYETTE
## 2037          KANSAS CITY    MO    64132                   JACKSON
## 2038           WELLSVILLE    NY    14895                  ALLEGANY
## 2039               TIFFIN    OH    44883                    SENECA
## 2040            SILVERTON    OR    97381                    MARION
## 2041              CORINTH    MS    38834                    ALCORN
## 2042          ROCK ISLAND    IL    61201               ROCK ISLAND
## 2043               MINDEN    NE    68959                   KEARNEY
## 2044             AMERICUS    GA    31719                    SUMTER
## 2045           GOLD BEACH    OR    97444                     CURRY
## 2046              LUBBOCK    TX    79416                   LUBBOCK
## 2047              DECATUR    IN    46733                     ADAMS
## 2048            CLEVELAND    OH    44109                  CUYAHOGA
## 2049                 CUBA    NY    14727                  ALLEGANY
## 2050         PHILADELPHIA    MS    39350                   NESHOBA
## 2051               URBANA    OH    43078                 CHAMPAIGN
## 2052        COLUMBIA CITY    IN    46725                   WHITLEY
## 2053           CARROLLTON    IL    62016                    GREENE
## 2054            ALLENTOWN    PA    18102                    LEHIGH
## 2055              ALAMEDA    CA    94501                   ALAMEDA
## 2056      MENOMONEE FALLS    WI    53051                  WAUKESHA
## 2057           RAPID CITY    SD    57703                PENNINGTON
## 2058                 PERU    IN    46970                     MIAMI
## 2059         INDIANAPOLIS    IN    46202                    MARION
## 2060           CARROLLTON    KY    41008                   CARROLL
## 2061                NAMPA    ID    83687                    CANYON
## 2062             REDLANDS    CA    92373            SAN BERNARDINO
## 2063              MELROSE    MN    56352                   STEARNS
## 2064             BROOKLYN    NY    11219                     KINGS
## 2065           FORT PAYNE    AL    35968                   DE KALB
## 2066           GREENVILLE    MS    38704                WASHINGTON
## 2067               GALENA    IL    61036                JO DAVIESS
## 2068              SULPHUR    LA    70663                 CALCASIEU
## 2069              PULASKI    VA    24301                   PULASKI
## 2070              ANTIOCH    CA    94509              CONTRA COSTA
## 2071            WINTERSET    IA    50273                   MADISON
## 2072           BLOOMSBURG    PA    17815                  COLUMBIA
## 2073                BRONX    NY    10467                     BRONX
## 2074                HURON    SD    57350                    BEADLE
## 2075             CAROLINA    PR    00984                  CAROLINA
## 2076               PUEBLO    CO    81003                    PUEBLO
## 2077           CHARLESTON    SC    29406                CHARLESTON
## 2078              LEBANON    IN    46052                     BOONE
## 2079              CHICAGO    IL    60613                      COOK
## 2080               CROSBY    ND    58730                    DIVIDE
## 2081           PARK FALLS    WI    54552                     PRICE
## 2082             BRAINERD    MN    56401                 CROW WING
## 2083             CALIENTE    NV    89008                   LINCOLN
## 2084         PHILADELPHIA    PA    19114              PHILADELPHIA
## 2085               MONROE    GA    30655                    WALTON
## 2086             EVANSTON    WY    82930                     UINTA
## 2087             COLUMBUS    GA    31901                  MUSCOGEE
## 2088                TRACY    MN    56175                      LYON
## 2089             CHEROKEE    IA    51012                  CHEROKEE
## 2090         LAWRENCEBURG    IN    47025                  DEARBORN
## 2091            ALBEMARLE    NC    28001                    STANLY
## 2092            NASHVILLE    AR    71852                    HOWARD
## 2093              SULPHUR    OK    73086                    MURRAY
## 2094               BOSTON    MA    02130                   SUFFOLK
## 2095          SAINT LOUIS    MO    63110            ST. LOUIS CITY
## 2096           FARMINGTON    CT    06032                  HARTFORD
## 2097             HINSDALE    IL    60521                   DU PAGE
## 2098       MEDICINE LODGE    KS    67104                    BARBER
## 2099          GREENEVILLE    TN    37745                    GREENE
## 2100             ABERDEEN    WA    98520              GRAYS HARBOR
## 2101           HUNTSVILLE    AL    35801                   MADISON
## 2102         INDIANAPOLIS    IN    46227                    MARION
## 2103          SPRINGFIELD    GA    31329                 EFFINGHAM
## 2104     GLENWOOD SPRINGS    CO    81601                  GARFIELD
## 2105          BATON ROUGE    LA    70808            E. BATON ROUGE
## 2106                LAKIN    KS    67860                    KEARNY
## 2107          BATON ROUGE    LA    70810            E. BATON ROUGE
## 2108               BUTLER    MO    64730                     BATES
## 2109           TUSCALOOSA    AL    35401                TUSCALOOSA
## 2110          CHILLICOTHE    TX    79225                  HARDEMAN
## 2111         MERRILLVILLE    IN    46410                      LAKE
## 2112               BERLIN    WI    54923                GREEN LAKE
## 2113               SALMON    ID    83467                     LEMHI
## 2114              CHILTON    WI    53014                   CALUMET
## 2115           BATESVILLE    IN    47006                  FRANKLIN
## 2116       SALT LAKE CITY    UT    84113                 SALT LAKE
## 2117             LEWISTON    NY    14092                   NIAGARA
## 2118        NATIONAL CITY    CA    91950                 SAN DIEGO
## 2119            HETTINGER    ND    58639                     ADAMS
## 2120             O' NEILL    NE    68763                      HOLT
## 2121            HAWTHORNE    NV    89415                   MINERAL
## 2122               POMONA    CA    91767               LOS ANGELES
## 2123              MANNING    SC    29102                 CLARENDON
## 2124            GLEN COVE    NY    11542                    NASSAU
## 2125             ABERDEEN    SD    57401                     BROWN
## 2126           FORT WORTH    TX    76132                   TARRANT
## 2127            LAFAYETTE    LA    70503                 LAFAYETTE
## 2128        GROSSE POINTE    MI    48230                     WAYNE
## 2129            NASHVILLE    IL    62263                WASHINGTON
## 2130               CASPER    WY    82601                   NATRONA
## 2131           SCOTTSBURG    IN    47170                     SCOTT
## 2132            LEXINGTON    KY    40511                   FAYETTE
## 2133     ROCKVILLE CENTRE    NY    11570                    NASSAU
## 2134     RICHMOND HEIGHTS    OH    44143                  CUYAHOGA
## 2135            GREEN BAY    WI    54303                     BROWN
## 2136         WILLIAMSPORT    PA    17701                  LYCOMING
## 2137              SEATTLE    WA    98195                      KING
## 2138               NEWARK    DE    19713                NEW CASTLE
## 2139              YANKTON    SD    57078                   YANKTON
## 2140            MILWAUKEE    WI    53226                 MILWAUKEE
## 2141           HUNTINGTON    WV    25709                    CABELL
## 2142               ROSEAU    MN    56751                    ROSEAU
## 2143                 AMES    IA    50010                     STORY
## 2144               TUSTIN    CA    92780                    ORANGE
## 2145              CHICAGO    IL    60644                      COOK
## 2146                ROLLA    MO    65401                    PHELPS
## 2147                 TROY    NY    12180                RENSSELAER
## 2148             COLUMBUS    NE    68601                    PLATTE
## 2149            LEWISBURG    TN    37091                  MARSHALL
## 2150             NEW YORK    NY    10019                  NEW YORK
## 2151         SOMERS POINT    NJ    08244                  ATLANTIC
## 2152         FALLS CHURCH    VA    22042                   FAIRFAX
## 2153               DAYTON    TN    37321                      RHEA
## 2154             COLUMBUS    OH    43215                  FRANKLIN
## 2155            SYLVESTER    GA    31791                     WORTH
## 2156           SUSANVILLE    CA    96130                    LASSEN
## 2157             VALHALLA    NY    10595               WESTCHESTER
## 2158                BRYAN    OH    43506                  WILLIAMS
## 2159               DUNCAN    OK    73533                  STEPHENS
## 2160               NASHUA    NH    03060              HILLSBOROUGH
## 2161             HAMILTON    NJ    08690                    MERCER
## 2162           WILMINGTON    NC    28401               NEW HANOVER
## 2163            COVINGTON    WA    98042                      KING
## 2164               MADERA    CA    93637                    MADERA
## 2165                TULIA    TX    79088                   SWISHER
## 2166           LOUISVILLE    KY    40202                 JEFFERSON
## 2167           UNIONVILLE    MO    63565                    PUTNAM
## 2168            GLEN DALE    WV    26038                  MARSHALL
## 2169           ALEXANDRIA    LA    71301                   RAPIDES
## 2170              CULLMAN    AL    35058                   CULLMAN
## 2171               TACOMA    WA    98405                    PIERCE
## 2172              AUGUSTA    GA    30909                  RICHMOND
## 2173              DUBUQUE    IA    52001                   DUBUQUE
## 2174          SOUTH MIAMI    FL    33143                MIAMI-DADE
## 2175        CORAL SPRINGS    FL    33065                   BROWARD
## 2176            GREEN BAY    WI    54301                     BROWN
## 2177               FRISCO    TX    75034                    DENTON
## 2178           GREENSBORO    NC    27401                  GUILFORD
## 2179             RAYVILLE    LA    71269                  RICHLAND
## 2180              GRIFFIN    GA    30223                  SPALDING
## 2181             GRAYLING    MI    49738                  CRAWFORD
## 2182         PHILLIPSBURG    KS    67661                  PHILLIPS
## 2183               STARKE    FL    32091                  BRADFORD
## 2184          NEW HAMPTON    NY    10958                    ORANGE
## 2185            BROOKLINE    MA    02467                 MIDDLESEX
## 2186               CAMDEN    AL    36726                    WILCOX
## 2187              OELWEIN    IA    50662                   FAYETTE
## 2188              DALHART    TX    79022                    DALLAM
## 2189               JASPER    TX    75951                    JASPER
## 2190           FORT WORTH    TX    76104                   TARRANT
## 2191     NORTH WILKESBORO    NC    28659                    WILKES
## 2192             TAMUNING    GU    96913                      GUAM
## 2193               BARRON    WI    54812                    BARRON
## 2194             BROWNING    MT    59417                   GLACIER
## 2195           CLEARFIELD    PA    16830                CLEARFIELD
## 2196               PURVIS    MS    39475                     LAMAR
## 2197              EL PASO    TX    79902                   EL PASO
## 2198            YPSILANTI    MI    48198                 WASHTENAW
## 2199              CHICAGO    IL    60617                      COOK
## 2200            WAUWATOSA    WI    53213                 MILWAUKEE
## 2201           NEW CASTLE    PA    16105                  LAWRENCE
## 2202          GARBERVILLE    CA    95542                  HUMBOLDT
## 2203              FLOWOOD    MS    39232                    RANKIN
## 2204                 LODI    CA    95240               SAN JOAQUIN
## 2205         GLOVERSVILLE    NY    12078                    FULTON
## 2206         BOSSIER CITY    LA    71111                   BOSSIER
## 2207          TUNKHANNOCK    PA    18657                   WYOMING
## 2208       FREDERICKSBURG    VA    22408              SPOTSYLVANIA
## 2209          BLUE ISLAND    IL    60406                      COOK
## 2210               RUSTON    LA    71270                   LINCOLN
## 2211          SANTA MARIA    CA    93454             SANTA BARBARA
## 2212              MODESTO    CA    95355                STANISLAUS
## 2213               T OR C    NM    87901                    SIERRA
## 2214           SACRAMENTO    CA    95823                SACRAMENTO
## 2215             MERIDIAN    MS    39301                LAUDERDALE
## 2216            BROOKINGS    SD    57006                 BROOKINGS
## 2217              WILLMAR    MN    56201                 KANDIYOHI
## 2218           NEW IBERIA    LA    70562                    IBERIA
## 2219          SAN LEANDRO    CA    94577                   ALAMEDA
## 2220               BERWYN    IL    60402                      COOK
## 2221           ORANGEBURG    SC    29115                ORANGEBURG
## 2222            ANDALUSIA    AL    36420                 COVINGTON
## 2223                AFTON    WY    83110                   LINCOLN
## 2224               PUTNAM    CT    06260                   WINDHAM
## 2225            RIVERSIDE    CA    92506                 RIVERSIDE
## 2226               HOBART    OK    73651                     KIOWA
## 2227                CADIZ    OH    43907                  HARRISON
## 2228               SPARTA    NC    28675                 ALLEGHANY
## 2229            CORVALLIS    OR    97330                    BENTON
## 2230             CONNEAUT    OH    44030                 ASHTABULA
## 2231           WOLF POINT    MT    59201                 ROOSEVELT
## 2232             OWATONNA    MN    55060                    STEELE
## 2233             SULLIVAN    MO    63080                  FRANKLIN
## 2234              EKALAKA    MT    59324                    CARTER
## 2235                 EADS    CO    81036                     KIOWA
## 2236        HOLLY SPRINGS    MS    38635                  MARSHALL
## 2237               SPARTA    WI    54656                    MONROE
## 2238              EPHRATA    WA    98823                     GRANT
## 2239         DAMARISCOTTA    ME    04543                   LINCOLN
## 2240           GREENFIELD    OH    45123                  HIGHLAND
## 2241              SEATTLE    WA    98126                      KING
## 2242          PUNTA GORDA    FL    33950                 CHARLOTTE
## 2243              CLAXTON    GA    30417                     EVANS
## 2244               CAMDEN    NJ    08103                    CAMDEN
## 2245           GREENVILLE    SC    29601                GREENVILLE
## 2246             CUT BANK    MT    59427                   GLACIER
## 2247              DETROIT    MI    48235                     WAYNE
## 2248               DALLAS    TX    75231                    DALLAS
## 2249               DENVER    CO    80218                    DENVER
## 2250            PEMBERTON    NJ    08068                BURLINGTON
## 2251           PITTSFIELD    ME    04967                  SOMERSET
## 2252             PLYMOUTH    MA    02360                  PLYMOUTH
## 2253           WAYNESBURG    PA    15370                    GREENE
## 2254                SAYRE    PA    18840                  BRADFORD
## 2255             LONGVIEW    TX    75605                     GREGG
## 2256             BELLAIRE    OH    43906                   BELMONT
## 2257          BRYSON CITY    NC    28713                     SWAIN
## 2258              SEYMOUR    TX    76380                    BAYLOR
## 2259           HARRISBURG    PA    17110                   DAUPHIN
## 2260            BROWNWOOD    TX    76801                     BROWN
## 2261         BATTLE CREEK    MI    49017                   CALHOUN
## 2262            MC KINNEY    TX    75071                    COLLIN
## 2263             PORTLAND    OR    97225                WASHINGTON
## 2264              MIRAMAR    FL    33029                   BROWARD
## 2265           NEW ALBANY    IN    47150                     FLOYD
## 2266               DALLAS    TX    75219                    DALLAS
## 2267      WEST PALM BEACH    FL    33407                PALM BEACH
## 2268             THORNTON    CO    80229                     ADAMS
## 2269               PLAINS    MT    59859                   SANDERS
## 2270           EAGLEVILLE    PA    19408                MONTGOMERY
## 2271            LEXINGTON    MS    39095                    HOLMES
## 2272            BARDSTOWN    KY    40004                    NELSON
## 2273            DYERSBURG    TN    38024                      DYER
## 2274            LEXINGTON    MO    64067                 LAFAYETTE
## 2275               LELAND    NC    28451                 BRUNSWICK
## 2276               ENCINO    CA    91436               LOS ANGELES
## 2277           CEDAR CITY    UT    84721                      IRON
## 2278       CRAWFORDSVILLE    IN    47933                MONTGOMERY
## 2279              CLAYTON    GA    30525                     RABUN
## 2280            BRUNSWICK    GA    31520                     GLYNN
## 2281                 WRAY    CO    80758                      YUMA
## 2282              ROANOKE    VA    24014              ROANOKE CITY
## 2283            PARAGOULD    AR    72450                    GREENE
## 2284            PLAINVIEW    NE    68769                    PIERCE
## 2285           ALEXANDRIA    MN    56308                   DOUGLAS
## 2286            SAN DIEGO    CA    92103                 SAN DIEGO
## 2287                FARGO    ND    58103                      CASS
## 2288          RIO PIEDRAS    PR    00936                  SAN JUAN
## 2289            OAK RIDGE    TN    37830                  ANDERSON
## 2290            SAN DIEGO    CA    92123                 SAN DIEGO
## 2291            BALTIMORE    MD    21223            BALTIMORE CITY
## 2292               PENDER    NE    68047                  THURSTON
## 2293              THOMSON    GA    30824                 MC DUFFIE
## 2294              DEL RIO    TX    78840                 VAL VERDE
## 2295               QUINCY    WA    98848                     GRANT
## 2296           SNOQUALMIE    WA    98065                      KING
## 2297             PASADENA    TX    77504                    HARRIS
## 2298              BAYAMON    PR    00960                   BAYAMON
## 2299              SEDALIA    MO    65302                    PETTIS
## 2300              CORDELL    OK    73632                   WASHITA
## 2301            LAFAYETTE    TN    37083                     MACON
## 2302             CARTHAGE    IL    62321                   HANCOCK
## 2303           TORRINGTON    WY    82240                    GOSHEN
## 2304                LLANO    TX    78643                     LLANO
## 2305              DE SOTO    TX    75115                    DALLAS
## 2306          SIOUX FALLS    SD    57105                 MINNEHAHA
## 2307               TIFFIN    OH    44883                    SENECA
## 2308             STILWELL    OK    74960                     ADAIR
## 2309               PEORIA    IL    61637                    PEORIA
## 2310          PLACERVILLE    CA    95667                 EL DORADO
## 2311                MARKS    MS    38646                   QUITMAN
## 2312           EAGLE PASS    TX    78852                  MAVERICK
## 2313           HEBER CITY    UT    84032                   WASATCH
## 2314           ROUND ROCK    TX    78664                WILLIAMSON
## 2315       SOUTH EL MONTE    CA    91733               LOS ANGELES
## 2316               EUREKA    SD    57437                MC PHERSON
## 2317         CHESTERFIELD    MO    63017                 ST. LOUIS
## 2318          BATON ROUGE    LA    70806            E. BATON ROUGE
## 2319             CUTHBERT    GA    39840                  RANDOLPH
## 2320               PARKER    AZ    85344                     LAPAZ
## 2321           DEER LODGE    MT    59722                    POWELL
## 2322              CHICAGO    IL    60612                      COOK
## 2323            DEMOPOLIS    AL    36732                   MARENGO
## 2324        MAMMOTH LAKES    CA    93546                      MONO
## 2325            ROCHESTER    NY    14626                    MONROE
## 2326               BURNET    TX    78611                    BURNET
## 2327           LONG BEACH    CA    90806               LOS ANGELES
## 2328             EVANSTON    IL    60201                      COOK
## 2329        WINSTON-SALEM    NC    27103                   FORSYTH
## 2330         INDEPENDENCE    LA    70443                TANGIPAHOA
## 2331             FRANKLIN    NE    68939                  FRANKLIN
## 2332           OGDENSBURG    NY    13669              ST. LAWRENCE
## 2333              CHICAGO    IL    60611                      COOK
## 2334           TITUSVILLE    PA    16354                  CRAWFORD
## 2335         JACKSONVILLE    TX    75766                  CHEROKEE
## 2336                 PAGE    AZ    86040                  COCONINO
## 2337             COLUMBUS    OH    43223                  FRANKLIN
## 2338          ROCKY MOUNT    VA    24151                  FRANKLIN
## 2339              REDLAKE    MN    56671                  BELTRAMI
## 2340          ESTHERVILLE    IA    51334                     EMMET
## 2341         NORTH VERNON    IN    47265                  JENNINGS
## 2342           POCAHONTAS    IA    50574                POCAHONTAS
## 2343              TYNDALL    SD    57066                 BON HOMME
## 2344               DULUTH    MN    55805                 ST. LOUIS
## 2345            ANNANDALE    MN    55302                    WRIGHT
## 2346           TISHOMINGO    OK    73460                  JOHNSTON
## 2347             DEARBORN    MI    48124                     WAYNE
## 2348              SLIDELL    LA    70458               ST. TAMMANY
## 2349              ONTARIO    OH    44906                  RICHLAND
## 2350        MOUNTAIN HOME    AR    72653                    BAXTER
## 2351            LYNCHBURG    VA    24501            LYNCHBURG CITY
## 2352             AIBONITO    PR    00705                  AIBONITO
## 2353               GENEVA    NE    68361                  FILLMORE
## 2354              HAYWARD    CA    94545                   ALAMEDA
## 2355            ROCKVILLE    MD    20850                MONTGOMERY
## 2356          STROUDSBURG    PA    18360                    MONROE
## 2357          PHENIX CITY    AL    36867                   RUSSELL
## 2358            RED BLUFF    CA    96080                    TEHAMA
## 2359            JONESBORO    AR    72401                 CRAIGHEAD
## 2360            ROCHESTER    MN    55904                   OLMSTED
## 2361          SPRINGFIELD    OH    45504                     CLARK
## 2362             ROCKFORD    IL    61103                 WINNEBAGO
## 2363        PORT TOWNSEND    WA    98368                 JEFFERSON
## 2364               LENOIR    NC    28645                  CALDWELL
## 2365             HIAWATHA    KS    66434                     BROWN
## 2366            CHAMPAIGN    IL    61820                 CHAMPAIGN
## 2367             MARIETTA    OH    45750                WASHINGTON
## 2368               NEWTON    KS    67114                    HARVEY
## 2369               SALINE    MI    48176                 WASHTENAW
## 2370                PARIS    AR    72855                     LOGAN
## 2371               TOLEDO    OH    43606                     LUCAS
## 2372                TRACY    CA    95376               SAN JOAQUIN
## 2373                ONAWA    IA    51040                    MONONA
## 2374           TOMS RIVER    NJ    08755                     OCEAN
## 2375           CUMBERLAND    MD    21502                  ALLEGANY
## 2376              HAMPTON    IA    50441                  FRANKLIN
## 2377            CHARLOTTE    MI    48813                     EATON
## 2378                TYLER    MN    56178                   LINCOLN
## 2379                 EDEN    TX    76837                    CONCHO
## 2380           PARK RIDGE    IL    60068                      COOK
## 2381               PIGEON    MI    48755                     HURON
## 2382              CLOQUET    MN    55720                   CARLTON
## 2383               MOBILE    AL    36693                    MOBILE
## 2384            MILWAUKEE    WI    53226                 MILWAUKEE
## 2385              HIBBING    MN    55746                 ST. LOUIS
## 2386               VERNON    TX    76384                 WILBARGER
## 2387              WICHITA    KS    67214                  SEDGWICK
## 2388           NEW LONDON    WI    54961                   WAUPACA
## 2389        SAN FRANCISCO    CA    94110             SAN FRANCISCO
## 2390        LAWRENCEVILLE    GA    30046                  GWINNETT
## 2391            ANCHORAGE    AK    99508                 ANCHORAGE
## 2392             FAIRBURY    NE    68352                 JEFFERSON
## 2393               BENSON    AZ    85602                   COCHISE
## 2394            NAGS HEAD    NC    27959                      DARE
## 2395             HONOLULU    HI    96826                  HONOLULU
## 2396           GREENVILLE    SC    29605                GREENVILLE
## 2397              ROSEBUD    SD    57570                      TODD
## 2398            LAS VEGAS    NV    89113                     CLARK
## 2399        STATEN ISLAND    NY    10305                  RICHMOND
## 2400             FRANKLIN    WI    53132                 MILWAUKEE
## 2401            ROCHESTER    NY    14642                    MONROE
## 2402           HUNTINGTON    WV    25701                    CABELL
## 2403              KILGORE    TX    75662                     GREGG
## 2404          HARBOR CITY    CA    90710               LOS ANGELES
## 2405              KELLOGG    ID    83837                  SHOSHONE
## 2406         RUSSELLVILLE    AL    35653                  FRANKLIN
## 2407              CHICAGO    IL    60625                      COOK
## 2408            WYANDOTTE    MI    48192                     WAYNE
## 2409               LULING    LA    70070               ST. CHARLES
## 2410              HOUSTON    TX    77030                    HARRIS
## 2411               PAYSON    UT    84651                      UTAH
## 2412            WENATCHEE    WA    98801                    CHELAN
## 2413               NEWTON    NJ    07860                    SUSSEX
## 2414            HILL CITY    KS    67642                    GRAHAM
## 2415              BUCYRUS    OH    44820                  CRAWFORD
## 2416               MORTON    MS    39117                     SCOTT
## 2417         BRECKENRIDGE    MN    56520                    WILKIN
## 2418             DEADWOOD    SD    57732                  LAWRENCE
## 2419             NEW YORK    NY    10021                  NEW YORK
## 2420           WOODBRIDGE    VA    22191            PRINCE WILLIAM
## 2421             MUSKEGON    MI    49442                  MUSKEGON
## 2422              CORNING    NY    14830                   STEUBEN
## 2423              LEBANON    TN    37087                    WILSON
## 2424           ELBOW LAKE    MN    56531                     GRANT
## 2425              MINEOLA    NY    11501                    NASSAU
## 2426               MUNCIE    IN    47303                  DELAWARE
## 2427                 ENID    OK    73701                  GARFIELD
## 2428             COLUMBUS    GA    31917                  MUSCOGEE
## 2429         CANNON FALLS    MN    55009                   GOODHUE
## 2430                AKRON    OH    44310                    SUMMIT
## 2431     FERNANDEZ JUNCOS    PR    00909                  SAN JUAN
## 2432         INDIANAPOLIS    IN    46254                    MARION
## 2433              WHEELER    TX    79096                   WHEELER
## 2434              MOULTON    AL    35650                  LAWRENCE
## 2435       HENDERSONVILLE    NC    28791                 HENDERSON
## 2436               DALLAS    TX    75246                    DALLAS
## 2437             BURGDORF    ID    83638                    VALLEY
## 2438            PINEVILLE    LA    71361                   RAPIDES
## 2439            CHARLOTTE    NC    28262               MECKLENBURG
## 2440              PHOENIX    AZ    85008                  MARICOPA
## 2441               DURHAM    NC    27704                    DURHAM
## 2442          RIO PIEDRAS    PR    00927                  SAN JUAN
## 2443           BEAVER DAM    WI    53916                     DODGE
## 2444           NEW CANAAN    CT    06840                 FAIRFIELD
## 2445           SMITHVILLE    TX    78957                   BASTROP
## 2446          GARDEN CITY    MI    48135                     WAYNE
## 2447             HAMILTON    TX    76531                  HAMILTON
## 2448              MIDLAND    TX    79701                   MIDLAND
## 2449            MELBOURNE    FL    32901                   BREVARD
## 2450        LAWRENCEVILLE    GA    30045                  GWINNETT
## 2451            GEORGIANA    AL    36033                    BUTLER
## 2452              CHICAGO    IL    60637                      COOK
## 2453          BARNESVILLE    OH    43713                   BELMONT
## 2454               MARION    KY    42064                CRITTENDEN
## 2455             ELMHURST    IL    60126                   DU PAGE
## 2456            WINNSBORO    TX    75494                      WOOD
## 2457        OKLAHOMA CITY    OK    73135                  OKLAHOMA
## 2458         INDEPENDENCE    IA    50644                  BUCHANAN
## 2459       CORPUS CHRISTI    TX    78404                    NUECES
## 2460               BEAVER    PA    15009                    BEAVER
## 2461           BRIDGEPORT    CT    06610                 FAIRFIELD
## 2462            PALESTINE    TX    75801                  ANDERSON
## 2463                UNION    MS    39365                   NESHOBA
## 2464           MOUNT AIRY    NC    27030                     SURRY
## 2465               CONRAD    MT    59425                   PONDERA
## 2466           ORTONVILLE    MN    56278                 BIG STONE
## 2467           DES MOINES    IA    50314                      POLK
## 2468         GRAND RAPIDS    MI    49546                      KENT
## 2469                BOISE    ID    83712                       ADA
## 2470               CAMDEN    AR    71701                  OUACHITA
## 2471          SIOUX FALLS    SD    57117                 MINNEHAHA
## 2472               DAYTON    OH    45417                MONTGOMERY
## 2473            CLAREMORE    OK    74017                    ROGERS
## 2474               LAVEEN    AZ    85339                  MARICOPA
## 2475        SILVER SPRING    MD    20910                MONTGOMERY
## 2476               URBANA    IL    61801                 CHAMPAIGN
## 2477           FORT WAYNE    IN    46845                     ALLEN
## 2478              HANFORD    CA    93230                     KINGS
## 2479               BUTLER    AL    36904                   CHOCTAW
## 2480             ANDERSON    SC    29621                  ANDERSON
## 2481             OAK PARK    IL    60304                      COOK
## 2482               IRVINE    KY    40336                    ESTILL
## 2483              ADDISON    TX    75001                    DALLAS
## 2484             FLORENCE    SC    29505                  FLORENCE
## 2485                 KULA    HI    96790                      MAUI
## 2486             STAMFORD    CT    06904                 FAIRFIELD
## 2487         JACKSONVILLE    NC    28540                    ONSLOW
## 2488               BLYTHE    CA    92225                 RIVERSIDE
## 2489            LEXINGTON    KY    40509                   FAYETTE
## 2490            CENTRALIA    WA    98531                     LEWIS
## 2491              MEDFORD    OR    97504                   JACKSON
## 2492         WALNUT RIDGE    AR    72476                  LAWRENCE
## 2493           BELLE MEAD    NJ    08502                  SOMERSET
## 2494             TORRANCE    PA    15779              WESTMORELAND
## 2495        MISSION HILLS    CA    91346               LOS ANGELES
## 2496              KIMBALL    NE    69145                   KIMBALL
## 2497           COSTA MESA    CA    92626                    ORANGE
## 2498           BATESVILLE    AR    72503              INDEPENDENCE
## 2499        WINSTON SALEM    NC    27104                   FORSYTH
## 2500            LA GRANGE    IL    60525                      COOK
## 2501               SALIDA    CO    81201                   CHAFFEE
## 2502               WAUPUN    WI    53963               FOND DU LAC
## 2503         BROWNS MILLS    NJ    08015                BURLINGTON
## 2504               CAMDEN    NJ    08103                    CAMDEN
## 2505              MADISON    WI    53792                      DANE
## 2506               WINNIE    TX    77665                  CHAMBERS
## 2507              BUFFALO    NY    14220                      ERIE
## 2508              SUFFOLK    VA    23439              SUFFOLK CITY
## 2509          WILLIAMSTON    NC    27892                    MARTIN
## 2510             GLENDORA    CA    91740               LOS ANGELES
## 2511            SUNNYVALE    TX    75182                    DALLAS
## 2512               BELOIT    WI    53511                      ROCK
## 2513                OMAHA    NE    68114                   DOUGLAS
## 2514              BRENHAM    TX    77833                WASHINGTON
## 2515        SAN FRANCISCO    CA    94109             SAN FRANCISCO
## 2516               DALLAS    TX    75390                    DALLAS
## 2517          BATON ROUGE    LA    70806            E. BATON ROUGE
## 2518           GRACEVILLE    MN    56240                 BIG STONE
## 2519               EASTON    PA    18042               NORTHAMPTON
## 2520                CHINO    CA    91710            SAN BERNARDINO
## 2521             PASADENA    TX    77505                    HARRIS
## 2522              SEAFORD    DE    19973                    SUSSEX
## 2523            ROCKVILLE    MD    20850                MONTGOMERY
## 2524              HARAHAN    LA    70123                 JEFFERSON
## 2525             BEEVILLE    TX    78102                       BEE
## 2526               BERLIN    MD    21811                 WORCESTER
## 2527          SHELBYVILLE    IN    46176                    SHELBY
## 2528          WALLA WALLA    WA    99362               WALLA WALLA
## 2529             MAYAGUEZ    PR    00681                  MAYAGUEZ
## 2530             HONOLULU    HI    96813                  HONOLULU
## 2531                LAMAR    MO    64759                    BARTON
## 2532               EDMOND    OK    73013                  OKLAHOMA
## 2533             GLENDIVE    MT    59330                    DAWSON
## 2534           HUTCHINSON    MN    55350                   MC LEOD
## 2535          SPRINGFIELD    OR    97477                      LANE
## 2536              SOLVANG    CA    93463             SANTA BARBARA
## 2537              HANCOCK    MI    49930                  HOUGHTON
## 2538          SAINT CLOUD    FL    34769                   OSCEOLA
## 2539                BRONX    NY    10461                     BRONX
## 2540              BUFFALO    NY    14209                      ERIE
## 2541                MAMOU    LA    70554                EVANGELINE
## 2542               POLSON    MT    59860                      LAKE
## 2543        OVERLAND PARK    KS    66211                   JOHNSON
## 2544             BOSCOBEL    WI    53805                     GRANT
## 2545       PORT JEFFERSON    NY    11777                   SUFFOLK
## 2546            AGUADILLA    PR    00603                 AGUADILLA
## 2547             PORTLAND    OR    97239                 MULTNOMAH
## 2548        THOUSAND OAKS    CA    91360                   VENTURA
## 2549       MURRELLS INLET    SC    29576                     HORRY
## 2550            JAMESTOWN    ND    58401                  STUTSMAN
## 2551                GLOBE    AZ    85501                      GILA
## 2552                OMAHA    NE    68105                   DOUGLAS
## 2553                DELTA    CO    81416                     DELTA
## 2554            ONTONAGON    MI    49953                 ONTONAGON
## 2555             KANKAKEE    IL    60901                  KANKAKEE
## 2556            DRUMRIGHT    OK    74030                     CREEK
## 2557               CONWAY    SC    29526                     HORRY
## 2558                BOISE    ID    83704                       ADA
## 2559               IRVINE    CA    92618                    ORANGE
## 2560          SPRINGFIELD    MO    65804                    GREENE
## 2561              CHESTER    MT    59522                   LIBERTY
## 2562          SAINT CLOUD    MN    56303                   STEARNS
## 2563            WILD ROSE    WI    54984                  WAUSHARA
## 2564          CARSON CITY    NV    89703               CARSON CITY
## 2565             ISSAQUAH    WA    98029                      KING
## 2566               OSMOND    NE    68765                    PIERCE
## 2567           OCONOMOWOC    WI    53066                  WAUKESHA
## 2568              MILFORD    CT    06460                 NEW HAVEN
## 2569             HAWARDEN    IA    51023                     SIOUX
## 2570             HANNIBAL    MO    63401                    MARION
## 2571               DALLAS    TX    75226                    DALLAS
## 2572              SHAWANO    WI    54166                   SHAWANO
## 2573              MEMPHIS    TN    38103                    SHELBY
## 2574         JACKSONVILLE    FL    32209                     DUVAL
## 2575              BAYONNE    NJ    07002                    HUDSON
## 2576              BATAVIA    OH    45103                  CLERMONT
## 2577   HILTON HEAD ISLAND    SC    29925                  BEAUFORT
## 2578               CONWAY    AR    72032                  FAULKNER
## 2579          KANSAS CITY    MO    64154                    PLATTE
## 2580         FORT COLLINS    CO    80528                   LARIMER
## 2581        SAFETY HARBOR    FL    34695                  PINELLAS
## 2582              CORDOVA    AK    99574            VALDEZ-CORDOVA
## 2583         PHILADELPHIA    PA    19104              PHILADELPHIA
## 2584            MANITOWOC    WI    54221                 MANITOWOC
## 2585       SALT LAKE CITY    UT    84115                 SALT LAKE
## 2586            CYNTHIANA    KY    41031                  HARRISON
## 2587             CAROLINA    PR    00979                  SAN JUAN
## 2588           SOUTHFIELD    MI    48033                   OAKLAND
## 2589          MONROEVILLE    AL    36460                    MONROE
## 2590        BOWLING GREEN    KY    42104                    WARREN
## 2591          SAINT LOUIS    MO    63118            ST. LOUIS CITY
## 2592         LAWRENCEBURG    TN    38464                  LAWRENCE
## 2593           CINCINNATI    OH    45220                  HAMILTON
## 2594                LAMAR    CO    81052                   PROWERS
## 2595              CLANTON    AL    35045                   CHILTON
## 2596                 AVON    IN    46123                 HENDRICKS
## 2597             COLUMBIA    LA    71418                  CALDWELL
## 2598           GLOUCESTER    VA    23061                GLOUCESTER
## 2599              PHOENIX    AZ    85008                  MARICOPA
## 2600              WHEATON    MN    56296                  TRAVERSE
## 2601               MOBILE    AL    36608                    MOBILE
## 2602         PHILADELPHIA    PA    19107              PHILADELPHIA
## 2603            JEFFERSON    IA    50129                    GREENE
## 2604              WAVERLY    OH    45690                      PIKE
## 2605           KINGSVILLE    TX    78363                   KLEBERG
## 2606               DOTHAN    AL    36301                   HOUSTON
## 2607               EUREKA    CA    95501                  HUMBOLDT
## 2608            TALLADEGA    AL    35161                 TALLADEGA
## 2609           CINCINNATI    OH    45242                  HAMILTON
## 2610               TUCSON    AZ    85741                      PIMA
## 2611                 ALMA    GA    31510                     BACON
## 2612               WILSON    NC    27893                    WILSON
## 2613              DOUGLAS    WY    82633                  CONVERSE
## 2614            BRUNSWICK    ME    04011                CUMBERLAND
## 2615               ALBANY    OR    97321                      LINN
## 2616          COTO LAUREL    PR    00780                     PONCE
## 2617           CHARLESTON    WV    25301                   KANAWHA
## 2618             BILLINGS    MT    59101               YELLOWSTONE
## 2619          BLOOMINGTON    IL    61701                   MC LEAN
## 2620         FERGUS FALLS    MN    56537                OTTER TAIL
## 2621            ARLINGTON    TX    76012                   TARRANT
## 2622              MCHENRY    IL    60050                  MC HENRY
## 2623          COCOA BEACH    FL    32932                   BREVARD
## 2624                KAPAA    HI    96746                     KAUAI
## 2625              MADISON    WI    53704                      DANE
## 2626                 AZLE    TX    76020                   TARRANT
## 2627                SALEM    IN    47167                WASHINGTON
## 2628             MERIDIAN    MS    39301                LAUDERDALE
## 2629          PLATTEVILLE    WI    53818                     GRANT
## 2630            NASHVILLE    TN    37236                  DAVIDSON
## 2631                ALLEN    TX    75002                    COLLIN
## 2632               GENEVA    OH    44041                 ASHTABULA
## 2633              ONEONTA    NY    13820                    OTSEGO
## 2634         MC MINNVILLE    TN    37110                    WARREN
## 2635                PROVO    UT    84604                      UTAH
## 2636              ANTHONY    KS    67003                    HARPER
## 2637              HIALEAH    FL    33013                MIAMI-DADE
## 2638       FREDERICKSBURG    VA    22401       FREDERICKSBURG CITY
## 2639              KENMORE    NY    14217                      ERIE
## 2640            MONTCLAIR    CA    91763            SAN BERNARDINO
## 2641           LIVINGSTON    TN    38570                   OVERTON
## 2642             SALLISAW    OK    74955                  SEQUOYAH
## 2643          GLENS FALLS    NY    12801                    WARREN
## 2644    BLACK RIVER FALLS    WI    54615                   JACKSON
## 2645               DENVER    CO    80204                    DENVER
## 2646                LIHUE    HI    96766                     KAUAI
## 2647            WATERBURY    CT    06721                 NEW HAVEN
## 2648         THROCKMORTON    TX    76483              THROCKMORTON
## 2649         PHILADELPHIA    PA    19128              PHILADELPHIA
## 2650         PHILLIPSBURG    NJ    08865                    WARREN
## 2651            SANDPOINT    ID    83864                    BONNER
## 2652            KINGSPORT    TN    37662                  SULLIVAN
## 2653          CALICO ROCK    AR    72519                    BAXTER
## 2654            LEESVILLE    LA    71446                    VERNON
## 2655              BASTROP    LA    71220                 MOREHOUSE
## 2656         REDWOOD CITY    CA    94062                 SAN MATEO
## 2657      RIO GRANDE CITY    TX    78582                     STARR
## 2658                 CARY    NC    27518                      WAKE
## 2659      WEST BLOOMFIELD    MI    48322                   OAKLAND
## 2660              DURANGO    CO    81301                  LA PLATA
## 2661                UTICA    NY    13502                    ONEIDA
## 2662           REIDSVILLE    GA    30453                  TATTNALL
## 2663        RANCHO MIRAGE    CA    92270                 RIVERSIDE
## 2664         FAYETTEVILLE    TN    37334                   LINCOLN
## 2665               SONOMA    CA    95476                    SONOMA
## 2666             RANDOLPH    VT    05060                    ORANGE
## 2667            MAQUOKETA    IA    52060                   JACKSON
## 2668             ATKINSON    NE    68713                      HOLT
## 2669           VALPARAISO    IN    46383                    PORTER
## 2670           WATERVLIET    MI    49098                   BERRIEN
## 2671             SAVANNAH    GA    31412                   CHATHAM
## 2672            CAMBRIDGE    MN    55008                    ISANTI
## 2673           PITTSBURGH    PA    15224                 ALLEGHENY
## 2674              SLIDELL    LA    70461               ST. TAMMANY
## 2675               BOSTON    MA    02115                   SUFFOLK
## 2676         OCONTO FALLS    WI    54154                    OCONTO
## 2677               MORRIS    IL    60450                    GRUNDY
## 2678         PHILADELPHIA    PA    19139              PHILADELPHIA
## 2679           MANCHESTER    IA    52057                  DELAWARE
## 2680           SCOTTSDALE    AZ    85255                  MARICOPA
## 2681              TAUNTON    MA    02780                   BRISTOL
## 2682            ALLENTOWN    PA    18105                    LEHIGH
## 2683               WAUSAU    WI    54403                  MARATHON
## 2684          PAYNESVILLE    MN    56362                   STEARNS
## 2685           MIDDLETOWN    NY    10940                    ORANGE
## 2686            RICHFIELD    UT    84701                    SEVIER
## 2687              BUFFALO    NY    14214                      ERIE
## 2688            CRESTVIEW    FL    32539                  OKALOOSA
## 2689              MIDLAND    TX    79706                   MIDLAND
## 2690             RICHMOND    IN    47374                     WAYNE
## 2691             VAN NUYS    CA    91406               LOS ANGELES
## 2692          NACOGDOCHES    TX    75961               NACOGDOCHES
## 2693        REDWOOD FALLS    MN    56283                   REDWOOD
## 2694         DELRAY BEACH    FL    33484                PALM BEACH
## 2695             COLUMBUS    WI    53925                  COLUMBIA
## 2696           FORT WAYNE    IN    46802                     ALLEN
## 2697              JACKSON    MS    39202                     HINDS
## 2698            MCALESTER    OK    74501                 PITTSBURG
## 2699           SCOTT CITY    KS    67871                     SCOTT
## 2700                PLANO    TX    75075                    COLLIN
## 2701       SALT LAKE CITY    UT    84102                 SALT LAKE
## 2702                ALBIA    IA    52531                    MONROE
## 2703               COVINA    CA    91724               LOS ANGELES
## 2704           JANESVILLE    WI    53548                      ROCK
## 2705                ALTON    IL    62002                   MADISON
## 2706                 OJAI    CA    93023                   VENTURA
## 2707               NEWARK    DE    19718                NEW CASTLE
## 2708         INDIANAPOLIS    IN    46214                    MARION
## 2709             SAVANNAH    GA    31419                   CHATHAM
## 2710           FORT WORTH    TX    76244                   TARRANT
## 2711              HAMBURG    IA    51640                   FREMONT
## 2712        NAPOLEONVILLE    LA    70390                ASSUMPTION
## 2713            HIAWASSEE    GA    30546                     TOWNS
## 2714             CHEWELAH    WA    99109                   STEVENS
## 2715                CHINO    CA    91710            SAN BERNARDINO
## 2716             WOODBURY    MN    55125                WASHINGTON
## 2717              PIGGOTT    AR    72454                      CLAY
## 2718       NO LITTLE ROCK    AR    72118                   PULASKI
## 2719         GRASS VALLEY    CA    95945                    NEVADA
## 2720             MONMOUTH    IL    61462                    WARREN
## 2721               CANTON    OH    44708                     STARK
## 2722            KNOXVILLE    TN    37920                      KNOX
## 2723            ROCHESTER    NY    14621                    MONROE
## 2724              CHICAGO    IL    60629                      COOK
## 2725             KENTWOOD    LA    70444                TANGIPAHOA
## 2726               VERNAL    UT    84078                    UINTAH
## 2727             NEODESHA    KS    66757                    WILSON
## 2728             COLUMBUS    MS    39701                   LOWNDES
## 2729                ANSON    TX    79501                     JONES
## 2730               SHELBY    MT    59474                     TOOLE
## 2731              BLAKELY    GA    39823                     EARLY
## 2732               HOLLIS    OK    73550                    HARMON
## 2733    ARLINGTON HEIGHTS    IL    60005                      COOK
## 2734         CHURCH POINT    LA    70525                    ACADIA
## 2735           FALL RIVER    MA    02720                   BRISTOL
## 2736             DANVILLE    KY    40422                     BOYLE
## 2737          VICTORVILLE    CA    92392            SAN BERNARDINO
## 2738  SOUTH SAN FRANCISCO    CA    94080                 SAN MATEO
## 2739           BROKEN BOW    NE    68822                    CUSTER
## 2740            LONE PINE    CA    93545                      INYO
## 2741           PITTSFIELD    IL    62363                      PIKE
## 2742            LEXINGTON    VA    24450            LEXINGTON CITY
## 2743             WRANGELL    AK    99929 WRANGELL CITY AND BOROUGH
## 2744             ROCHELLE    IL    61068                      OGLE
## 2745              TOWANDA    PA    18848                  BRADFORD
## 2746        POMPANO BEACH    FL    33064                   BROWARD
## 2747        SAN FRANCISCO    CA    94116             SAN FRANCISCO
## 2748           SPRINGDALE    AR    72762                WASHINGTON
## 2749            FLAGSTAFF    AZ    86001                  COCONINO
## 2750              NORWALK    CA    90650               LOS ANGELES
## 2751              CONYERS    GA    30012                  ROCKDALE
## 2752               JUNEAU    AK    99801                    JUNEAU
## 2753        SAINT CHARLES    MO    63304               ST. CHARLES
## 2754              L' ANSE    MI    49946                    BARAGA
## 2755               SEGUIN    TX    78155                 GUADALUPE
## 2756             FRANKLIN    KY    42135                   SIMPSON
## 2757              OTTUMWA    IA    52501                   WAPELLO
## 2758           SWEETWATER    TN    37874                    MONROE
## 2759           CEDAR PARK    TX    78613                WILLIAMSON
## 2760           PROVIDENCE    RI    02908                PROVIDENCE
## 2761             WAUKEGAN    IL    60085                      LAKE
## 2762              ANAHEIM    CA    92804                    ORANGE
## 2763                TAMPA    FL    33612              HILLSBOROUGH
## 2764            OSKALOOSA    IA    52577                   MAHASKA
## 2765        TOMPKINSVILLE    KY    42167                    MONROE
## 2766             CADILLAC    MI    49601                   WEXFORD
## 2767             TOMAHAWK    WI    54487                   LINCOLN
## 2768             BROOKLYN    NY    11206                     KINGS
## 2769             ATCHISON    KS    66002                  ATCHISON
## 2770          LOS ANGELES    CA    90026               LOS ANGELES
## 2771           GREENSBURG    LA    70441                ST. HELENA
## 2772             LA JUNTA    CO    81050                     OTERO
## 2773           MEYERSDALE    PA    15552                  SOMERSET
## 2774        NEW BRUNSWICK    NJ    08901                 MIDDLESEX
## 2775              LACOMBE    LA    70445               ST. TAMMANY
## 2776            FAIRFIELD    TX    75840                 FREESTONE
## 2777       POINT PLEASANT    WV    25550                     MASON
## 2778              FAYETTE    AL    35555                   FAYETTE
## 2779           MANAHAWKIN    NJ    08050                     OCEAN
## 2780             SHOW LOW    AZ    85901                    NAVAJO
## 2781               DENVER    CO    80218                    DENVER
## 2782              VIROQUA    WI    54665                    VERNON
## 2783          BAKERSFIELD    CA    93301                      KERN
## 2784          BATON ROUGE    LA    70817            E. BATON ROUGE
## 2785               MARION    NC    28752                 MC DOWELL
## 2786           PISCATAWAY    NJ    08854                 MIDDLESEX
## 2787             DANVILLE    IL    61832                 VERMILION
## 2788             LIVE OAK    FL    32060                  SUWANNEE
## 2789           WYOMISSING    PA    19610                     BERKS
## 2790            BRADENTON    FL    34202                   MANATEE
## 2791          HOLDENVILLE    OK    74848                    HUGHES
## 2792           SPRINGDALE    AR    72764                WASHINGTON
## 2793           BOCA RATON    FL    33428                PALM BEACH
## 2794               SALINA    KS    67401                    SALINE
## 2795               OKEENE    OK    73763                    BLAINE
## 2796              HIALEAH    FL    33012                MIAMI-DADE
## 2797          EAST ORANGE    NJ    07018                     ESSEX
## 2798          GREENEVILLE    TN    37745                    GREENE
## 2799            NEW HAVEN    CT    06504                 NEW HAVEN
## 2800            LEXINGTON    KY    40509                   FAYETTE
## 2801               LUFKIN    TX    75904                  ANGELINA
## 2802            LAFAYETTE    IN    47905                TIPPECANOE
## 2803        DAYTONA BEACH    FL    32114                   VOLUSIA
## 2804     NEW SMYRNA BEACH    FL    32170                   VOLUSIA
## 2805              ST PAUL    NE    68873                    HOWARD
## 2806            CHARLOTTE    NC    28215               MECKLENBURG
## 2807         WHITE PLAINS    NY    10601               WESTCHESTER
## 2808                 BEND    OR    97701                 DESCHUTES
## 2809                 MENA    AR    71953                      POLK
## 2810               SIDNEY    OH    45365                    SHELBY
## 2811               EXETER    NH    03833                ROCKINGHAM
## 2812              STAPLES    MN    56479                      TODD
## 2813               TEMPLE    TX    76508                      BELL
## 2814              LE MARS    IA    51031                  PLYMOUTH
## 2815               HAXTUN    CO    80731                  PHILLIPS
## 2816            LA GRANDE    OR    97850                     UNION
## 2817         COLLEGE PARK    GA    30349                    FULTON
## 2818                HIRAM    GA    30141                  PAULDING
## 2819            ANN ARBOR    MI    48106                 WASHTENAW
## 2820        CHATTAHOOCHEE    FL    32324                   GADSDEN
## 2821            CLEVELAND    OH    44104                  CUYAHOGA
## 2822               GENEVA    AL    36340                    GENEVA
## 2823             CORTLAND    NY    13045                  CORTLAND
## 2824           NEW PRAGUE    MN    56071                     SCOTT
## 2825              NEPTUNE    NJ    07754                  MONMOUTH
## 2826            EDGEFIELD    SC    29824                 EDGEFIELD
## 2827           NORTHFIELD    OH    44067                    SUMMIT
## 2828             RICHMOND    VA    23220             RICHMOND CITY
## 2829              LEAWOOD    KS    66211                   JOHNSON
## 2830             CHARITON    IA    50049                     LUCAS
## 2831              MALVERN    AR    72104                HOT SPRING
## 2832                MIAMI    FL    33155                MIAMI-DADE
## 2833                BARRE    VT    05641                WASHINGTON
## 2834            ROCHESTER    NY    14620                    MONROE
## 2835             VAN HORN    TX    79855                 CULBERSON
## 2836              WACONIA    MN    55387                    CARVER
## 2837           BROOKFIELD    MO    64628                      LINN
## 2838             STOCKTON    CA    95203               SAN JOAQUIN
## 2839              CHICAGO    IL    60612                      COOK
## 2840              EASTMAN    GA    31023                     DODGE
## 2841                BUTTE    MT    59701                SILVER BOW
## 2842             TRINIDAD    CO    81082                LAS ANIMAS
## 2843            CLEVELAND    TX    77327                   LIBERTY
## 2844              CHICAGO    IL    60640                      COOK
## 2845    NORTH LITTLE ROCK    AR    72113                   PULASKI
## 2846              ATLANTA    GA    30342                    FULTON
## 2847           MIDDLEBORO    MA    02346                  PLYMOUTH
## 2848                PAOLI    PA    19301                   CHESTER
## 2849               MANATI    PR    00674                    MANATI
## 2850                ERWIN    TN    37650                    UNICOI
## 2851             LAKELAND    GA    31635                    LANIER
## 2852           CHATSWORTH    GA    30705                    MURRAY
## 2853              WINSLOW    AZ    86047                    NAVAJO
## 2854               DOWNEY    CA    90242               LOS ANGELES
## 2855                PELLA    IA    50219                    MARION
## 2856      LAKE PROVIDENCE    LA    71254              EAST CARROLL
## 2857           SANTA ROSA    CA    95403                    SONOMA
## 2858                MACON    GA    31217                      BIBB
## 2859          LEONARDTOWN    MD    20650                 ST. MARYS
## 2860           BROOKVILLE    PA    15825                 JEFFERSON
## 2861              NORFOLK    VA    23507              NORFOLK CITY
## 2862            KNOX CITY    TX    79529                      KNOX
## 2863           WELLINGTON    FL    33414                PALM BEACH
## 2864                FARGO    ND    58104                      CASS
## 2865              NORFOLK    VA    23505              NORFOLK CITY
## 2866         INDIANAPOLIS    IN    46290                  HAMILTON
## 2867              BETHANY    MO    64424                  HARRISON
## 2868         NORTH BERGEN    NJ    07047                    HUDSON
## 2869            LAKE CITY    FL    32055                  COLUMBIA
## 2870        HARTFORD CITY    IN    47348                 BLACKFORD
## 2871             GLENDALE    CA    91209               LOS ANGELES
## 2872              LUBBOCK    TX    79410                   LUBBOCK
## 2873            RIDGEWOOD    NJ    07450                    BERGEN
## 2874          CHAMBERLAIN    SD    57325                     BRULE
## 2875           BLUE RIDGE    GA    30513                    FANNIN
## 2876               ATMORE    AL    36502                  ESCAMBIA
## 2877                 TROY    MO    63379                   LINCOLN
## 2878              BRISTOL    CT    06010                  HARTFORD
## 2879               MORTON    TX    79346                   COCHRAN
## 2880            GOLDSBORO    NC    27530                     WAYNE
## 2881          BAKERSFIELD    CA    93306                      KERN
## 2882            BDA NUEVA    PR    00641                    UTUADO
## 2883         LAWRENCEBURG    IN    47025                  DEARBORN
## 2884           SACRAMENTO    CA    95823                SACRAMENTO
## 2885          NACOGDOCHES    TX    75961               NACOGDOCHES
## 2886            LAS VEGAS    NV    89119                     CLARK
## 2887               NEVADA    MO    64772                    VERNON
## 2888              RICHTON    MS    39476                    GREENE
## 2889             MERIDIAN    MS    39301                LAUDERDALE
## 2890           LIVINGSTON    NJ    07039                     ESSEX
## 2891               DURAND    WI    54736                     PEPIN
## 2892               ITHACA    NY    14850                  TOMPKINS
## 2893             ESPANOLA    NM    87532                RIO ARRIBA
## 2894               AUSTIN    TX    78746                    TRAVIS
## 2895                 MESA    AZ    85206                  MARICOPA
## 2896         SARANAC LAKE    NY    12983                  FRANKLIN
## 2897          ROCKY MOUNT    NC    27804                      NASH
## 2898             WHEELING    WV    26003                      OHIO
## 2899          JOSHUA TREE    CA    92252            SAN BERNARDINO
## 2900               SWEENY    TX    77480                  BRAZORIA
## 2901        ELIZABETHTOWN    KY    42701                    HARDIN
## 2902             AMARILLO    TX    79124                    POTTER
## 2903            HOOPESTON    IL    60942                 VERMILION
## 2904              SLAYTON    MN    56172                    MURRAY
## 2905          LOS ANGELES    CA    90017               LOS ANGELES
## 2906               DOWNEY    CA    90242               LOS ANGELES
## 2907            CAMARILLO    CA    93010                   VENTURA
## 2908          TALLAHASSEE    FL    32308                      LEON
## 2909              LINCOLN    NE    68510                 LANCASTER
## 2910          KANSAS CITY    MO    64108                   JACKSON
## 2911             FRANKLIN    VA    23851             FRANKLIN CITY
## 2912         PRESQUE ISLE    ME    04769                 AROOSTOOK
## 2913              LARAMIE    WY    82072                    ALBANY
## 2914            TILLAMOOK    OR    97141                 TILLAMOOK
## 2915               OXNARD    CA    93030                   VENTURA
## 2916         STEUBENVILLE    OH    43952                 JEFFERSON
## 2917              CHICAGO    IL    60612                      COOK
## 2918          DEVILS LAKE    ND    58301                    RAMSEY
## 2919          CHULA VISTA    CA    91911                 SAN DIEGO
## 2920           THE DALLES    OR    97058                     WASCO
## 2921                 TAOS    NM    87571                      TAOS
## 2922         PORT CLINTON    OH    43452                    OTTAWA
## 2923              LA MESA    CA    91942                 SAN DIEGO
## 2924               JASPER    IN    47546                    DUBOIS
## 2925         WILLIAMSBURG    VA    23185                JAMES CITY
## 2926               TACOMA    WA    98498                    PIERCE
## 2927     FALL RIVER MILLS    CA    96028                    SHASTA
## 2928         GRAND RAPIDS    MN    55744                    ITASCA
## 2929          KANSAS CITY    MO    64111                   JACKSON
## 2930              SALINAS    CA    93901                  MONTEREY
## 2931            WILLISTON    FL    32696                      LEVY
## 2932              MADISON    WI    53715                      DANE
## 2933         CHARLES CITY    IA    50616                     FLOYD
## 2934          SAN LEANDRO    CA    94578                   ALAMEDA
## 2935               DILLON    MT    59725                BEAVERHEAD
## 2936            LANGHORNE    PA    19047                     BUCKS
## 2937           MONTICELLO    AR    71655                      DREW
## 2938                RIPON    WI    54971               FOND DU LAC
## 2939      FOUNTAIN VALLEY    CA    92708                    ORANGE
## 2940           BATESVILLE    MS    38606                    PANOLA
## 2941           ALBERT LEA    MN    56007                  FREEBORN
## 2942            HILLSBORO    KS    67063                    MARION
## 2943                BRICK    NJ    08724                     OCEAN
## 2944            COVINGTON    LA    70433               ST. TAMMANY
## 2945             GULFPORT    MS    39503                  HARRISON
## 2946              ANDREWS    TX    79714                   ANDREWS
## 2947        NEW BRAUNFELS    TX    78130                     COMAL
## 2948               SIDNEY    NE    69162                  CHEYENNE
## 2949             CALDWELL    TX    77836                  BURLESON
## 2950                  GPT    MS    39503                  HARRISON
## 2951           BURLINGTON    WI    53105                    RACINE
## 2952               RANSOM    KS    67572                      NESS
## 2953             CHEVERLY    MD    20785            PRINCE GEORGES
## 2954           PROVIDENCE    RI    02906                PROVIDENCE
## 2955              DANBURY    CT    06810                 FAIRFIELD
## 2956             KOTZEBUE    AK    99752   NORTHWEST ARTIC BOROUGH
## 2957          CLARKSVILLE    TN    37040                MONTGOMERY
## 2958           HARRISBURG    PA    17105                   DAUPHIN
## 2959     COLORADO SPRINGS    CO    80918                   EL PASO
## 2960                SALEM    VA    24153                SALEM CITY
## 2961          LOS ANGELES    CA    90023               LOS ANGELES
## 2962           RENSSELAER    IN    47978                    JASPER
## 2963             CARNEGIE    OK    73015                     CADDO
## 2964        SUN CITY WEST    AZ    85375                  MARICOPA
## 2965              ATLANTA    GA    30303                    FULTON
## 2966          BROOKSVILLE    FL    34609                  HERNANDO
## 2967               ROSLYN    NY    11576                    NASSAU
## 2968        MONTEREY PARK    CA    91754               LOS ANGELES
## 2969                BRONX    NY    10451                     BRONX
## 2970             RACELAND    LA    70394                 LAFOURCHE
## 2971               CANTON    GA    30115                  CHEROKEE
## 2972                TAMPA    FL    33615              HILLSBOROUGH
## 2973             MUSKOGEE    OK    74401                  MUSKOGEE
## 2974                TULSA    OK    74127                     TULSA
## 2975                ROLLA    ND    58367                   ROLETTE
## 2976               VIVIAN    LA    71082                     CADDO
## 2977                 AVON    IN    46123                 HENDRICKS
## 2978            ST MARIES    ID    83861                   BENEWAH
## 2979             ROCKPORT    ME    04856                      KNOX
## 2980               HELENA    AR    72342                  PHILLIPS
## 2981                HAVRE    MT    59501                      HILL
## 2982       JEFFERSONVILLE    IN    47130                     CLARK
## 2983            RICHLANDS    VA    24641                  TAZEWELL
## 2984        PINCKNEYVILLE    IL    62274                     PERRY
## 2985            BREMERTON    WA    98310                    KITSAP
## 2986               TIFTON    GA    31793                      TIFT
## 2987        STATE COLLEGE    PA    16803                    CENTRE
## 2988                HOUMA    LA    70360                TERREBONNE
## 2989                MIAMI    FL    33175                MIAMI-DADE
## 2990              OAKLAND    MD    21550                   GARRETT
## 2991       VIRGINIA BEACH    VA    23454       VIRGINIA BEACH CITY
## 2992     LAKE SAINT LOUIS    MO    63367               ST. CHARLES
## 2993              EL PASO    TX    79936                   EL PASO
## 2994               LAMESA    TX    79331                    DAWSON
## 2995            KALISPELL    MT    59901                  FLATHEAD
## 2996               VIBORG    SD    57070                    TURNER
## 2997              HOUSTON    TX    77082                    HARRIS
## 2998               MARTIN    KY    41649                     FLOYD
## 2999            CLEVELAND    OH    44106                  CUYAHOGA
## 3000               MOBILE    AL    36608                    MOBILE
## 3001            PALO ALTO    CA    94304               SANTA CLARA
## 3002            ELLSWORTH    ME    04605                   HANCOCK
## 3003               BREESE    IL    62230                   CLINTON
## 3004         WHITE SALMON    WA    98672                 KLICKITAT
## 3005          SOUTH HAVEN    MI    49090                 VAN BUREN
## 3006              WINAMAC    IN    46996                   PULASKI
## 3007               HUDSON    OH    44236                    SUMMIT
## 3008       UPPER SANDUSKY    OH    43351                   WYANDOT
## 3009              FLOWOOD    MS    39232                    RANKIN
## 3010         JACKSONVILLE    TX    75766                  CHEROKEE
## 3011               BONHAM    TX    75418                    FANNIN
## 3012         MOUNT VERNON    WA    98274                    SKAGIT
## 3013             FAIRVIEW    OK    73737                     MAJOR
## 3014               NOVATO    CA    94945                     MARIN
## 3015        SAN FRANCISCO    CA    94112             SAN FRANCISCO
## 3016              CHADRON    NE    69337                     DAWES
## 3017              WICHITA    KS    67226                  SEDGWICK
## 3018       HENDERSONVILLE    NC    28792                 HENDERSON
## 3019              LATROBE    PA    15650              WESTMORELAND
## 3020          SCOTTSVILLE    KY    42164                     ALLEN
## 3021               RAHWAY    NJ    07065                     UNION
## 3022               HARLEM    MT    59526                    BLAINE
## 3023        GRANITE FALLS    MN    56241            YELLOW MEDCINE
## 3024               HARLAN    KY    40831                    HARLAN
## 3025          COFFEYVILLE    KS    67337                MONTGOMERY
## 3026                YUKON    OK    73099                  CANADIAN
## 3027             SAN JUAN    PR    00912                  SAN JUAN
## 3028            MILWAUKIE    OR    97222                 CLACKAMAS
## 3029       CHRISTIANSBURG    VA    24073                MONTGOMERY
## 3030          IDAHO FALLS    ID    83404                BONNEVILLE
## 3031          CASTLE ROCK    CO    80109                   DOUGLAS
## 3032         FAYETTEVILLE    NC    28302                CUMBERLAND
## 3033               MERCED    CA    95340                    MERCED
## 3034              GILBERT    AZ    85234                  MARICOPA
## 3035            REEDSBURG    WI    53959                      SAUK
## 3036          GAINESVILLE    FL    32605                   ALACHUA
## 3037            OAK RIDGE    TN    37830                  ANDERSON
## 3038          SHELBYVILLE    TN    37160                   BEDFORD
## 3039          SANTA CLARA    CA    95051               SANTA CLARA
## 3040              POTSDAM    NY    13676              ST. LAWRENCE
## 3041          SAN ANTONIO    TX    78258                     BEXAR
## 3042            JOHNSTOWN    PA    15905                   CAMBRIA
## 3043               MANGUM    OK    73554                     GREER
## 3044              PORTAGE    WI    53901                  COLUMBIA
## 3045                PROVO    UT    84605                      UTAH
## 3046             COALGATE    OK    74538                      COAL
## 3047               CANTON    IL    61520                    FULTON
## 3048            HOLLISTER    CA    95023                SAN BENITO
## 3049               TOPEKA    KS    66604                   SHAWNEE
## 3050         PHILADELPHIA    PA    19111              PHILADELPHIA
## 3051              HOUSTON    TX    77065                    HARRIS
## 3052               AURORA    IL    60504                      KANE
## 3053            KETCHIKAN    AK    99901         KETCHIKAN GATEWAY
## 3054           PORTSMOUTH    VA    23707           PORTSMOUTH CITY
## 3055              PADUCAH    KY    42003                MC CRACKEN
## 3056                PEKIN    IL    61554                  TAZEWELL
## 3057              HOUSTON    TX    77059                    HARRIS
## 3058           VILLA RICA    GA    30180                   CARROLL
## 3059            MARQUETTE    MI    49855                 MARQUETTE
## 3060            NEW HAVEN    CT    06508                 NEW HAVEN
## 3061         FAYETTEVILLE    AR    72703                WASHINGTON
## 3062               SUMNER    IA    50674                    BREMER
## 3063           EAU CLAIRE    WI    54701                EAU CLAIRE
## 3064           CINCINNATI    OH    45255                  HAMILTON
## 3065              METHUEN    MA    01844                     ESSEX
## 3066           FARMINGTON    ME    04938                  FRANKLIN
## 3067                 ERIE    PA    16544                      ERIE
## 3068           AMITYVILLE    NY    11701                   SUFFOLK
## 3069           HUNTINGTON    IN    46750                HUNTINGTON
## 3070               LONDON    KY    40741                    LAUREL
## 3071              SHELTON    WA    98584                     MASON
## 3072               OLIVIA    MN    56277                  RENVILLE
## 3073          PORT LAVACA    TX    77979                   CALHOUN
## 3074            HOLLYWOOD    CA    90028               LOS ANGELES
## 3075       MECHANICSVILLE    VA    23116                   HANOVER
## 3076           WASHINGTON    IA    52353                WASHINGTON
## 3077             FREDONIA    KS    66736                    WILSON
## 3078         LAKE JACKSON    TX    77566                  BRAZORIA
## 3079         CORAL GABLES    FL    33146                MIAMI-DADE
## 3080           LOCK HAVEN    PA    17745                   CLINTON
## 3081        FORT ATKINSON    WI    53538                 JEFFERSON
## 3082            ST THOMAS    VI    00801       SAINT THOMAS ISLAND
## 3083               AUBURN    NE    68305                    NEMAHA
## 3084           BELLE MEAD    NJ    08502                  SOMERSET
## 3085            STUTTGART    AR    72160                  ARKANSAS
## 3086              PALATKA    FL    32177                    PUTNAM
## 3087              MANKATO    MN    56001                BLUE EARTH
## 3088        CHATTAHOOCHEE    FL    32324                   GADSDEN
## 3089           BERRYVILLE    AR    72616                   CARROLL
## 3090          MEADOWBROOK    PA    19046                MONTGOMERY
## 3091             MANISTEE    MI    49660                  MANISTEE
## 3092               AURORA    IL    60506                      KANE
## 3093             LEWISTON    ME    04243              ANDROSCOGGIN
## 3094            WA KEENEY    KS    67672                     TREGO
## 3095               URBANA    IL    61801                 CHAMPAIGN
## 3096               OWOSSO    MI    48867                SHIAWASSEE
## 3097             LA JOLLA    CA    92037                 SAN DIEGO
## 3098          MCLEANSBORO    IL    62859                  HAMILTON
## 3099              LEBANON    KY    40033                    MARION
## 3100              PHOENIX    AZ    85037                  MARICOPA
## 3101              OSHKOSH    WI    54904                 WINNEBAGO
## 3102               ELMIRA    NY    14905                   CHEMUNG
## 3103                PECOS    TX    79772                    REEVES
## 3104          GAINESVILLE    GA    30501                      HALL
## 3105               DALLAS    TX    75231                    DALLAS
## 3106                 YUMA    AZ    85364                      YUMA
## 3107            KREMMLING    CO    80459                     GRAND
## 3108              OPELIKA    AL    36801                       LEE
## 3109     SAINT PETERSBURG    FL    33707                  PINELLAS
## 3110               MARTIN    SD    57551                   BENNETT
## 3111              LEAWOOD    KS    66211                   JOHNSON
## 3112                RATON    NM    87740                    COLFAX
## 3113           MONTEBELLO    CA    90640               LOS ANGELES
## 3114                PARIS    TN    38242                     HENRY
## 3115              WALDRON    AR    72958                     SCOTT
## 3116      SOUTH ATTLEBORO    MA    02703                   BRISTOL
## 3117             SAVANNAH    GA    31416                   CHATHAM
## 3118          LITTLE ROCK    AR    72205                   PULASKI
## 3119              GRIDLEY    CA    95948                     BUTTE
## 3120     SOUTH LAKE TAHOE    CA    96150                 EL DORADO
## 3121              GREELEY    CO    80631                      WELD
## 3122                 KYLE    TX    78640                      HAYS
## 3123           BRIDGEPORT    CT    06610                 FAIRFIELD
## 3124             JENNINGS    LA    70546            JEFFRSON DAVIS
## 3125           FITZGERALD    GA    31750                  BEN HILL
## 3126         WEST READING    PA    19611                     BERKS
## 3127             DANVILLE    AR    72833                      YELL
## 3128              CHICAGO    IL    60617                      COOK
## 3129           RAPID CITY    SD    57702                PENNINGTON
## 3130               QUANAH    TX    79252                  HARDEMAN
## 3131             FRANKLIN    TN    37067                WILLIAMSON
## 3132             TEMECULA    CA    92592                 RIVERSIDE
## 3133        DAYTONA BEACH    FL    32117                   VOLUSIA
## 3134              HUMACAO    PR    00791                   HUMACAO
## 3135                PLANO    TX    75093                    COLLIN
## 3136         FLEMINGSBURG    KY    41041                   FLEMING
## 3137         FERGUS FALLS    MN    56537                OTTER TAIL
## 3138              MADISON    IN    47250                 JEFFERSON
## 3139            NASHVILLE    TN    37214                  DAVIDSON
## 3140             VAN WERT    OH    45891                  VAN WERT
## 3141               OWASSO    OK    74055                     TULSA
## 3142     SOUTH WILLIAMSON    KY    41503                      PIKE
## 3143            KETTERING    OH    45429                MONTGOMERY
## 3144              DE SMET    SD    57231                 KINGSBURY
## 3145           BARRINGTON    IL    60010                      LAKE
## 3146           GREENVILLE    KY    42345                MUHLENBERG
## 3147      COLLEGE STATION    TX    77845                    BRAZOS
## 3148           TWIN FALLS    ID    83301                TWIN FALLS
## 3149           FALLS CITY    NE    68355                RICHARDSON
## 3150       COUNCIL BLUFFS    IA    51503             POTTAWATTAMIE
## 3151          PORT JERVIS    NY    12771                    ORANGE
## 3152          MINNEAPOLIS    MN    55454                  HENNEPIN
## 3153                TAMPA    FL    33613              HILLSBOROUGH
## 3154                BRONX    NY    10467                     BRONX
## 3155            NEWCASTLE    WY    82701                    WESTON
## 3156               STUART    FL    34995                    MARTIN
## 3157            INGLEWOOD    CA    90301               LOS ANGELES
## 3158          LA FOLLETTE    TN    37766                  CAMPBELL
## 3159             EDINBURG    TX    78539                   HIDALGO
## 3160          DREXEL HILL    PA    19026                  DELAWARE
## 3161            BALTIMORE    MD    21224            BALTIMORE CITY
## 3162        OKLAHOMA CITY    OK    73101                  OKLAHOMA
## 3163               WAUSAU    WI    54401                  MARATHON
## 3164              HONOKAA    HI    96727                    HAWAII
## 3165           WAYNESBORO    TN    38485                     WAYNE
## 3166            LEVELLAND    TX    79336                   HOCKLEY
## 3167                OMAHA    NE    68130                   DOUGLAS
## 3168         NEW ROCHELLE    NY    10802               WESTCHESTER
## 3169               PEORIA    IL    61614                    PEORIA
## 3170          KANSAS CITY    MO    64139                   JACKSON
## 3171          NEW ORLEANS    LA    70112                   ORLEANS
## 3172              DETROIT    MI    48201                     WAYNE
## 3173               KENNER    LA    70065                 JEFFERSON
## 3174            MILWAUKEE    WI    53210                 MILWAUKEE
## 3175            SOUTHLAKE    TX    76092                   TARRANT
## 3176            LANCASTER    SC    29720                 LANCASTER
## 3177               LANHAM    MD    20706            PRINCE GEORGES
## 3178        IRON MOUNTAIN    MI    49801                 DICKINSON
## 3179           ELLENVILLE    NY    12428                    ULSTER
## 3180           MANCHESTER    TN    37355                    COFFEE
## 3181               RESTON    VA    20190                   FAIRFAX
## 3182              BATAVIA    NY    14020                   GENESEE
## 3183           BO BALLAJA    PR    00623                 CABO ROJO
## 3184              ANAHEIM    CA    92805                    ORANGE
## 3185            WATERTOWN    NY    13601                 JEFFERSON
## 3186              TRENTON    MI    48183                     WAYNE
## 3187           BURLINGTON    NC    27216                  ALAMANCE
## 3188              ALLEGAN    MI    49010                   ALLEGAN
## 3189             HEALDTON    OK    73438                    CARTER
## 3190             HIGHLAND    IL    62249                   MADISON
## 3191           MONTICELLO    GA    31064                    JASPER
## 3192            NEW LENOX    IL    60451                      WILL
## 3193               NEWARK    NJ    07112                     ESSEX
## 3194           FORT BRAGG    CA    95437                 MENDOCINO
## 3195              DE WITT    AR    72042                  ARKANSAS
## 3196              RAEFORD    NC    28376                      HOKE
## 3197          SAN ANTONIO    TX    78240                     BEXAR
## 3198               LOMPOC    CA    93436             SANTA BARBARA
## 3199              DUNEDIN    FL    34698                  PINELLAS
## 3200        WICHITA FALLS    TX    76301                   WICHITA
## 3201             SAN JOSE    CA    95138               SANTA CLARA
## 3202           CANONSBURG    PA    15317                WASHINGTON
## 3203         ELIZABETHTON    TN    37643                    CARTER
## 3204             HONOLULU    HI    96819                  HONOLULU
## 3205          BROOKSVILLE    FL    34613                  HERNANDO
## 3206            STOUGHTON    WI    53589                      DANE
## 3207        BROOKLYN PARK    MN    55443                  HENNEPIN
## 3208           CARROLLTON    TX    75006                    DALLAS
## 3209                 HUGO    OK    74743                   CHOCTAW
## 3210              DECATUR    TX    76234                      WISE
## 3211             MISSOULA    MT    59804                  MISSOULA
## 3212               TOWSON    MD    21204                 BALTIMORE
## 3213              MEMPHIS    TN    38125                    SHELBY
## 3214     SAINT PETERSBURG    FL    33701                  PINELLAS
## 3215                 BOAZ    AL    35957                  MARSHALL
## 3216              NORFOLK    VA    23507              NORFOLK CITY
## 3217              BANNING    CA    92220                 RIVERSIDE
## 3218              GRESHAM    OR    97030                 MULTNOMAH
## 3219            HENDERSON    NV    89015                     CLARK
## 3220              DOUGLAS    GA    31533                    COFFEE
## 3221          DECKERVILLE    MI    48427                   SANILAC
## 3222          ORANGE PARK    FL    32073                      CLAY
## 3223     RICHMOND HEIGHTS    MO    63117                 ST. LOUIS
## 3224     TOWN AND COUNTRY    MO    63131                 ST. LOUIS
## 3225              LINDSAY    OK    73052                    GARVIN
## 3226               LUFKIN    TX    75901                  ANGELINA
## 3227            BOUNTIFUL    UT    84010                     DAVIS
## 3228       JEFFERSON CITY    TN    37760                 JEFFERSON
## 3229               JOPLIN    MO    64804                    JASPER
## 3230               ELYRIA    OH    44035                    LORAIN
## 3231            LITTLETON    CO    80122                  ARAPAHOE
## 3232         PFLUGERVILLE    TX    78660                    TRAVIS
## 3233              WATONGA    OK    73772                    BLAINE
## 3234          SAN ANTONIO    TX    78232                     BEXAR
## 3235           WASHINGTON    PA    15301                WASHINGTON
## 3236               DENTON    TX    76208                    DENTON
## 3237             ELBERTON    GA    30635                    ELBERT
## 3238               MARION    VA    24354                     SMYTH
## 3239         WILLIAMSTOWN    KY    41097                     GRANT
## 3240            LEXINGTON    TN    38351                 HENDERSON
## 3241          MONROEVILLE    PA    15146                 ALLEGHENY
## 3242          TAYLORVILLE    IL    62568                 CHRISTIAN
## 3243               MARION    OH    43302                    MARION
## 3244          MOUNT KISCO    NY    10549               WESTCHESTER
## 3245               MARION    VA    24354                     SMYTH
## 3246           FORT MYERS    FL    33901                       LEE
## 3247           UNION CITY    TN    38261                     OBION
## 3248                TULSA    OK    74136                     TULSA
## 3249         MOUNT VERNON    IL    62864                 JEFFERSON
## 3250              DANBURY    NC    27016                    STOKES
## 3251              DIMMITT    TX    79027                    CASTRO
## 3252                CLYDE    NC    28721                   HAYWOOD
## 3253            ISHPEMING    MI    49849                 MARQUETTE
## 3254               BISHOP    CA    93514                      INYO
## 3255               BENTON    KY    42025                  MARSHALL
## 3256              NEW ULM    MN    56073                     BROWN
## 3257           CINCINNATI    OH    45237                  HAMILTON
## 3258             WESTWOOD    NJ    07675                    BERGEN
## 3259                AMITE    LA    70422                TANGIPAHOA
## 3260               AUSTIN    TX    78704                    TRAVIS
## 3261               BOSTON    MA    02130                   SUFFOLK
## 3262        PANORAMA CITY    CA    91402               LOS ANGELES
## 3263            WADESBORO    NC    28170                     ANSON
## 3264               GANADO    AZ    86505                    APACHE
## 3265       WEST LAFAYETTE    IN    47906                TIPPECANOE
## 3266            LONE TREE    CO    80124                   DOUGLAS
## 3267             CHANDLER    AZ    85224                  MARICOPA
## 3268             SAN JUAN    PR    00935                  SAN JUAN
## 3269             NEW YORK    NY    10037                  NEW YORK
## 3270                 KATY    TX    77450                    HARRIS
## 3271               HUMBLE    TX    77338                    HARRIS
## 3272         INDIANAPOLIS    IN    46256                    MARION
## 3273             LONGVIEW    TX    75605                     GREGG
## 3274              BAYAMON    PR    00959                   BAYAMON
## 3275                BURNS    OR    97720                    HARNEY
## 3276             EDGERTON    WI    53534                      ROCK
## 3277            ANACORTES    WA    98221                    SKAGIT
## 3278             CASTANER    PR    00631                     LARES
## 3279         GRAND RAPIDS    MI    49548                      KENT
## 3280              CRESTON    IA    50801                     UNION
## 3281          MOUNT HOLLY    NJ    08060                BURLINGTON
## 3282      CHARLOTTESVILLE    VA    22911                 ALBEMARLE
## 3283              ELKHART    IN    46514                   ELKHART
## 3284         FORT COLLINS    CO    80524                   LARIMER
## 3285                 HOPE    AR    71801                 HEMPSTEAD
## 3286            LEADVILLE    CO    80461                      LAKE
## 3287             PORTLAND    OR    97225                WASHINGTON
## 3288              EPHRATA    PA    17522                 LANCASTER
## 3289          BLOOMINGTON    IN    47403                    MONROE
## 3290    SAINT CROIX FALLS    WI    54024                      POLK
## 3291               MEDINA    OH    44256                    MEDINA
## 3292               FULTON    MO    65251                  CALLAWAY
## 3293           CROSSVILLE    TN    38555                CUMBERLAND
## 3294         BLUE SPRINGS    MO    64014                   JACKSON
## 3295              LEBANON    NH    03756                   GRAFTON
## 3296              GARLAND    TX    75042                    DALLAS
## 3297           ROCK CREEK    OH    44084                 ASHTABULA
## 3298             COLUMBUS    GA    31995                  MUSCOGEE
## 3299               RACINE    WI    53405                    RACINE
## 3300              TRENTON    NJ    08629                    MERCER
## 3301           TOMS RIVER    NJ    08755                     OCEAN
## 3302              BEDFORD    TX    76022                   TARRANT
## 3303            CLEVELAND    OH    44106                  CUYAHOGA
## 3304            BEACHWOOD    OH    44122                  CUYAHOGA
## 3305             AMARILLO    TX    79106                    POTTER
## 3306              LUTCHER    LA    70071                 ST. JAMES
## 3307               WARSAW    IN    46580                 KOSCIUSKO
## 3308                JESUP    GA    31545                     WAYNE
## 3309            BALTIMORE    MD    21209            BALTIMORE CITY
## 3310            RIVERDALE    GA    30274                   CLAYTON
## 3311               LAPEER    MI    48446                    LAPEER
## 3312        BELLEFONTAINE    OH    43311                     LOGAN
## 3313                OMAHA    NE    68124                   DOUGLAS
## 3314               BERLIN    NH    03570                      COOS
## 3315              CHARDON    OH    44024                    GEAUGA
## 3316        SAN FRANCISCO    CA    94143             SAN FRANCISCO
## 3317            WESTFIELD    NY    14787                CHAUTAUQUA
## 3318              STIGLER    OK    74462                   HASKELL
## 3319                OMAHA    NE    68122                   DOUGLAS
## 3320              BARABOO    WI    53913                      SAUK
## 3321                TULSA    OK    74133                     TULSA
## 3322              HANOVER    PA    17331                      YORK
## 3323               FRESNO    CA    93710                    FRESNO
## 3324               HERRIN    IL    62948                WILLIAMSON
## 3325            LAS VEGAS    NV    89146                     CLARK
## 3326                TULSA    OK    74133                     TULSA
## 3327            DAVENPORT    IA    52803                     SCOTT
## 3328              BOZEMAN    MT    59715                  GALLATIN
## 3329               NORWAY    ME    04268                    OXFORD
## 3330         HACKETTSTOWN    NJ    07840                    WARREN
## 3331              BEDFORD    IN    47421                  LAWRENCE
## 3332           WINCHESTER    IN    47394                  RANDOLPH
## 3333           YOUNGSTOWN    OH    44501                  MAHONING
## 3334       SALT LAKE CITY    UT    84132                 SALT LAKE
## 3335              VALLEJO    CA    94589                    SOLANO
## 3336            HENDERSON    KY    42420                 HENDERSON
## 3337             FREEHOLD    NJ    07728                  MONMOUTH
## 3338           MARYSVILLE    KS    66508                  MARSHALL
## 3339           HOMERVILLE    GA    31634                    CLINCH
## 3340               LORAIN    OH    44053                    LORAIN
## 3341         APPLE VALLEY    CA    92307            SAN BERNARDINO
## 3342              HOUSTON    TX    77002                    HARRIS
## 3343          PORT ARTHUR    TX    77640                 JEFFERSON
## 3344         JACKSONVILLE    IL    62650                    MORGAN
## 3345              EL RENO    OK    73036                  CANADIAN
## 3346        PALOS HEIGHTS    IL    60463                      COOK
## 3347            NICEVILLE    FL    32578                  OKALOOSA
## 3348          TERRE HAUTE    IN    47802                      VIGO
## 3349              JACKSON    MI    49201                   JACKSON
## 3350              TEANECK    NJ    07666                    BERGEN
## 3351              TARZANA    CA    91356               LOS ANGELES
## 3352           HARRISBURG    IL    62946                    SALINE
## 3353               MURRAY    UT    84107                 SALT LAKE
## 3354             SUPERIOR    MT    59872                   MINERAL
## 3355             STOCKTON    CA    95204               SAN JOAQUIN
## 3356                DELHI    NY    13753                  DELAWARE
## 3357             HAZLETON    PA    18201                   LUZERNE
## 3358               MARTIN    TN    38237                   WEAKLEY
## 3359          SPRUCE PINE    NC    28777                  MITCHELL
## 3360           PETERSBURG    VA    23803           PETERSBURG CITY
## 3361                  OPP    AL    36467                 COVINGTON
## 3362            TELL CITY    IN    47586                     PERRY
## 3363            COVINGTON    TN    38019                    TIPTON
## 3364       SALT LAKE CITY    UT    84124                 SALT LAKE
## 3365           MANCHESTER    NH    03103              HILLSBOROUGH
## 3366            LA CROSSE    KS    67548                      RUSH
## 3367              EVERETT    PA    15537                   BEDFORD
## 3368                CORRY    PA    16407                      ERIE
## 3369           WASHINGTON    NC    27889                  BEAUFORT
## 3370             SHERIDAN    MT    59749                   MADISON
## 3371          SHELBYVILLE    KY    40065                    SHELBY
## 3372            WESTBROOK    MN    56183                COTTONWOOD
## 3373           DES MOINES    IA    50316                      POLK
## 3374            MOUNT AYR    IA    50854                  RINGGOLD
## 3375                OZARK    AL    36360                      DALE
## 3376         INDIANAPOLIS    IN    46218                    MARION
## 3377         INDIANAPOLIS    IN    46278                    MARION
## 3378          PORT GIBSON    MS    39150                 CLAIBORNE
## 3379               EASTON    PA    18045               NORTHAMPTON
## 3380           LONG BEACH    CA    90806               LOS ANGELES
## 3381           GOLDENDALE    WA    98620                 KLICKITAT
## 3382              JOHNSON    KS    67855                   STANTON
## 3383            FLAGSTAFF    AZ    86004                  COCONINO
## 3384               MARION    KS    66861                    MARION
## 3385        WINSTON-SALEM    NC    27157                   FORSYTH
## 3386              LIBERTY    KY    42539                     CASEY
## 3387              WINTERS    TX    79567                   RUNNELS
## 3388              HOLLAND    MI    49423                    OTTAWA
## 3389         FALLS CHURCH    VA    22042                   FAIRFAX
## 3390        ELIZABETHTOWN    NY    12932                     ESSEX
## 3391            ARLINGTON    TX    76012                   TARRANT
## 3392           BLUE EARTH    MN    56013                 FARIBAULT
## 3393             REDFIELD    SD    57469                     SPINK
## 3394   PALM BEACH GARDENS    FL    33410                PALM BEACH
## 3395              COCHRAN    GA    31014                  BLECKLEY
## 3396             APPLETON    MN    56208                     SWIFT
## 3397           STORM LAKE    IA    50588               BUENA VISTA
## 3398           MARSHFIELD    WI    54449                      WOOD
## 3399             NEW YORK    NY    10016                  NEW YORK
## 3400          GREAT FALLS    MT    59405                   CASCADE
## 3401              BUCKEYE    WV    24924                POCAHONTAS
## 3402                GENOA    NE    68640                    PLATTE
## 3403              ORLANDO    FL    32827                    ORANGE
## 3404               EDMOND    OK    73034                  OKLAHOMA
## 3405             SYLVANIA    OH    43560                     LUCAS
## 3406          LEES SUMMIT    MO    64086                   JACKSON
## 3407            LEXINGTON    NC    27293                  DAVIDSON
## 3408           STILLWATER    OK    74076                     PAYNE
## 3409            MORRILTON    AR    72110                    CONWAY
## 3410          LOS ANGELES    CA    90059               LOS ANGELES
## 3411            RITZVILLE    WA    99169                     ADAMS
## 3412            WOODVILLE    TX    75979                     TYLER
## 3413               DENVER    CO    80210                    DENVER
## 3414             PRENTISS    MS    39474           JEFFERSON DAVIS
## 3415              CHICAGO    IL    60622                      COOK
## 3416       AMERICAN FALLS    ID    83211                     POWER
## 3417           COOKEVILLE    TN    38501                    PUTNAM
## 3418              QUITMAN    GA    31643                    BROOKS
## 3419                ALTON    IL    62002                   MADISON
## 3420              TARZANA    CA    91356               LOS ANGELES
## 3421           TWO RIVERS    WI    54241                 MANITOWOC
## 3422              ABILENE    TX    79606                    TAYLOR
## 3423                SITKA    AK    99835             SITKA BOROUGH
## 3424            MONTCLAIR    NJ    07042                     ESSEX
## 3425               LISBON    ND    58054                    RANSOM
## 3426              BIGFORK    MN    56628                    ITASCA
## 3427          GULF BREEZE    FL    32561                SANTA ROSA
## 3428              ANAHUAC    TX    77514                  CHAMBERS
## 3429          SAN ANTONIO    TX    78224                     BEXAR
## 3430              ASHLAND    KY    41101                      BOYD
## 3431                 MESA    AZ    85202                  MARICOPA
## 3432            LA CROSSE    WI    54601                 LA CROSSE
## 3433              ASHLAND    AL    36251                      CLAY
## 3434        SLEEPY HOLLOW    NY    10591               WESTCHESTER
## 3435            SENATOBIA    MS    38668                      TATE
## 3436             WAUKESHA    WI    53188                  WAUKESHA
## 3437           WASHINGTON    DC    20060              THE DISTRICT
## 3438            PLACENTIA    CA    92870                    ORANGE
## 3439          RHINELANDER    WI    54501                    ONEIDA
## 3440            BLACKFOOT    ID    83221                   BINGHAM
## 3441           HOISINGTON    KS    67544                    BARTON
## 3442       CHIPPEWA FALLS    WI    54729                  CHIPPEWA
## 3443            BLACKFOOT    ID    83221                   BINGHAM
## 3444            DAVENPORT    FL    33837                      POLK
## 3445       SALT LAKE CITY    UT    84143                 SALT LAKE
## 3446               ELMIRA    NY    14901                   CHEMUNG
## 3447                 YORK    AL    36925                    SUMTER
## 3448             METAIRIE    LA    70002                 JEFFERSON
##        Phone_Number             Hospital_Type
## 1    (787) 653-3434      Acute Care Hospitals
## 2    (609) 561-1700               Psychiatric
## 3    (337) 839-9008               Psychiatric
## 4    (305) 445-8461      Acute Care Hospitals
## 5    (940) 692-1220               Psychiatric
## 6    (601) 849-5070      Acute Care Hospitals
## 7    (281) 586-7600               Psychiatric
## 8    (605) 448-2253 Critical Access Hospitals
## 9    (212) 243-5565               Psychiatric
## 10   (937) 641-3450                 Childrens
## 11   (239) 332-0125               Psychiatric
## 12   (203) 863-3000      Acute Care Hospitals
## 13   (281) 358-1495               Psychiatric
## 14   (989) 673-3191               Psychiatric
## 15   (563) 568-3411 Critical Access Hospitals
## 16   (773) 363-6700                 Childrens
## 17   (402) 269-2011 Critical Access Hospitals
## 18   (787) 852-0505      Acute Care Hospitals
## 19   (801) 852-2273               Psychiatric
## 20   (212) 369-0500               Psychiatric
## 21   (307) 232-6600      Acute Care Hospitals
## 22   (760) 326-4531 Critical Access Hospitals
## 23   (580) 286-7623 Critical Access Hospitals
## 24   (417) 865-5581               Psychiatric
## 25   (704) 497-9163      Acute Care Hospitals
## 26   (520) 362-7003      Acute Care Hospitals
## 27   (329) 691-0030               Psychiatric
## 28   (605) 428-5431 Critical Access Hospitals
## 29   (802) 257-7785               Psychiatric
## 30   (205) 372-3388      Acute Care Hospitals
## 31   (620) 582-2144 Critical Access Hospitals
## 32   (817) 583-8080               Psychiatric
## 33   (803) 231-2600               Psychiatric
## 34   (773) 265-3700               Psychiatric
## 35   (684) 633-4590      Acute Care Hospitals
## 36   (787) 739-5555               Psychiatric
## 37   (713) 795-5025               Psychiatric
## 38   (907) 842-5201 Critical Access Hospitals
## 39   (605) 232-3332      Acute Care Hospitals
## 40   (787) 801-0081      Acute Care Hospitals
## 41   (516) 789-7000               Psychiatric
## 42   (432) 693-2443 Critical Access Hospitals
## 43   (406) 442-2480      Acute Care Hospitals
## 44   (713) 528-6800      Acute Care Hospitals
## 45   (318) 550-0520               Psychiatric
## 46   (802) 888-6770               Psychiatric
## 47   (787) 650-1031      Acute Care Hospitals
## 48   (601) 351-8000               Psychiatric
## 49   (601) 351-8023      Acute Care Hospitals
## 50   (574) 546-0330               Psychiatric
## 51   (901) 328-1220               Psychiatric
## 52   (229) 671-6601               Psychiatric
## 53   (787) 761-8383      Acute Care Hospitals
## 54   (787) 765-2900               Psychiatric
## 55   (410) 402-7455               Psychiatric
## 56   (715) 644-5571 Critical Access Hospitals
## 57   (817) 639-1100      Acute Care Hospitals
## 58   (229) 985-4815      Acute Care Hospitals
## 59   (610) 871-9110      Acute Care Hospitals
## 60   (859) 623-3131      Acute Care Hospitals
## 61   (409) 770-6600                 Childrens
## 62   (605) 673-9400 Critical Access Hospitals
## 63   (910) 230-4011               Psychiatric
## 64   (618) 282-3831 Critical Access Hospitals
## 65   (662) 459-7561      Acute Care Hospitals
## 66   (802) 674-6711 Critical Access Hospitals
## 67   (718) 670-2000      Acute Care Hospitals
## 68   (410) 601-2400      Acute Care Hospitals
## 69   (229) 985-3420      Acute Care Hospitals
## 70   (909) 558-4000      Acute Care Hospitals
## 71   (443) 481-1307      Acute Care Hospitals
## 72   (316) 268-5000      Acute Care Hospitals
## 73   (508) 765-9771      Acute Care Hospitals
## 74   (303) 388-4461      Acute Care Hospitals
## 75   (406) 635-5511 Critical Access Hospitals
## 76   (254) 953-8342      Acute Care Hospitals
## 77   (601) 782-9997      Acute Care Hospitals
## 78   (316) 321-3300      Acute Care Hospitals
## 79   (714) 279-4000      Acute Care Hospitals
## 80   (626) 289-5454      Acute Care Hospitals
## 81   (508) 752-4681               Psychiatric
## 82   (361) 782-7800 Critical Access Hospitals
## 83   (828) 669-3402               Psychiatric
## 84   (910) 343-7000      Acute Care Hospitals
## 85   (704) 944-0650               Psychiatric
## 86   (806) 652-3373 Critical Access Hospitals
## 87   (304) 526-2192      Acute Care Hospitals
## 88   (573) 302-0319               Psychiatric
## 89   (402) 376-2525 Critical Access Hospitals
## 90   (703) 636-0300      Acute Care Hospitals
## 91   (304) 388-5432      Acute Care Hospitals
## 92   (603) 421-2100      Acute Care Hospitals
## 93   (713) 790-2221      Acute Care Hospitals
## 94   (208) 459-4641      Acute Care Hospitals
## 95   (850) 675-4532      Acute Care Hospitals
## 96   (605) 598-6262 Critical Access Hospitals
## 97   (352) 253-3300      Acute Care Hospitals
## 98   (803) 943-2771      Acute Care Hospitals
## 99   (715) 294-2111 Critical Access Hospitals
## 100  (337) 521-1000      Acute Care Hospitals
## 101  (218) 435-1133 Critical Access Hospitals
## 102  (734) 240-8400      Acute Care Hospitals
## 103  (413) 582-2000      Acute Care Hospitals
## 104  (562) 602-6751      Acute Care Hospitals
## 105  (610) 983-1000      Acute Care Hospitals
## 106  (480) 358-6100      Acute Care Hospitals
## 107  (937) 723-3200      Acute Care Hospitals
## 108  (314) 653-5000      Acute Care Hospitals
## 109  (360) 487-1000      Acute Care Hospitals
## 110  (316) 634-0090      Acute Care Hospitals
## 111  (308) 995-2211 Critical Access Hospitals
## 112  (570) 398-3101 Critical Access Hospitals
## 113  (410) 368-2101      Acute Care Hospitals
## 114  (727) 819-2929      Acute Care Hospitals
## 115  (270) 825-5100      Acute Care Hospitals
## 116  (207) 761-2200               Psychiatric
## 117  (518) 271-3655      Acute Care Hospitals
## 118  (719) 687-9999 Critical Access Hospitals
## 119  (682) 885-4000                 Childrens
## 120  (360) 374-6271 Critical Access Hospitals
## 121  (574) 583-7111 Critical Access Hospitals
## 122  (626) 286-1191               Psychiatric
## 123  (352) 323-5762      Acute Care Hospitals
## 124  (414) 585-1374      Acute Care Hospitals
## 125  (435) 438-7100 Critical Access Hospitals
## 126  (615) 867-1111      Acute Care Hospitals
## 127  (979) 731-3100      Acute Care Hospitals
## 128  (219) 932-2300      Acute Care Hospitals
## 129  (520) 469-8700               Psychiatric
## 130  (715) 623-2331 Critical Access Hospitals
## 131  (404) 501-1000      Acute Care Hospitals
## 132  (318) 368-9751 Critical Access Hospitals
## 133  (518) 841-7101      Acute Care Hospitals
## 134  (435) 623-3000 Critical Access Hospitals
## 135  (318) 878-5171 Critical Access Hospitals
## 136  (402) 395-2191 Critical Access Hospitals
## 137  (620) 429-2545 Critical Access Hospitals
## 138  (320) 335-6201               Psychiatric
## 139  (620) 231-6100      Acute Care Hospitals
## 140  (831) 462-7700      Acute Care Hospitals
## 141  (402) 826-2101 Critical Access Hospitals
## 142  (315) 473-4980               Psychiatric
## 143  (406) 444-7500               Psychiatric
## 144  (619) 528-5000      Acute Care Hospitals
## 145  (623) 882-1515      Acute Care Hospitals
## 146  (918) 273-3102 Critical Access Hospitals
## 147  (478) 289-1304      Acute Care Hospitals
## 148  (630) 312-5000      Acute Care Hospitals
## 149  (787) 840-8460      Acute Care Hospitals
## 150  (928) 674-7001      Acute Care Hospitals
## 151  (618) 234-2120      Acute Care Hospitals
## 152  (620) 795-2921 Critical Access Hospitals
## 153  (574) 647-1000      Acute Care Hospitals
## 154  (218) 281-9200 Critical Access Hospitals
## 155  (301) 868-8000      Acute Care Hospitals
## 156  (318) 254-2100      Acute Care Hospitals
## 157  (530) 832-4277 Critical Access Hospitals
## 158  (785) 776-5100      Acute Care Hospitals
## 159  (435) 713-9580      Acute Care Hospitals
## 160  (608) 930-8000 Critical Access Hospitals
## 161  (865) 541-8000                 Childrens
## 162  (541) 994-3661 Critical Access Hospitals
## 163  (435) 637-4800      Acute Care Hospitals
## 164  (704) 783-3000      Acute Care Hospitals
## 165  (207) 498-3111      Acute Care Hospitals
## 166  (602) 957-4000               Psychiatric
## 167  (770) 949-1500      Acute Care Hospitals
## 168  (704) 384-4000      Acute Care Hospitals
## 169  (620) 723-3341 Critical Access Hospitals
## 170  (904) 308-7300      Acute Care Hospitals
## 171  (432) 758-4854 Critical Access Hospitals
## 172  (903) 654-6800      Acute Care Hospitals
## 173  (775) 781-3761 Critical Access Hospitals
## 174  (810) 257-9000      Acute Care Hospitals
## 175  (830) 583-3401 Critical Access Hospitals
## 176  (701) 857-5000      Acute Care Hospitals
## 177  (415) 833-2646      Acute Care Hospitals
## 178  (318) 449-6400      Acute Care Hospitals
## 179  (320) 634-4521 Critical Access Hospitals
## 180  (808) 932-3000      Acute Care Hospitals
## 181  (701) 477-6111      Acute Care Hospitals
## 182  (707) 822-3621      Acute Care Hospitals
## 183  (718) 334-1141      Acute Care Hospitals
## 184  (731) 588-2830               Psychiatric
## 185  (415) 600-6000      Acute Care Hospitals
## 186  (757) 414-8000      Acute Care Hospitals
## 187  (309) 281-4000      Acute Care Hospitals
## 188  (269) 273-9602      Acute Care Hospitals
## 189  (704) 316-4000      Acute Care Hospitals
## 190  (518) 471-3490      Acute Care Hospitals
## 191  (210) 404-0800      Acute Care Hospitals
## 192  (303) 415-7000      Acute Care Hospitals
## 193  (814) 364-2161               Psychiatric
## 194  (501) 321-1000      Acute Care Hospitals
## 195  (559) 353-5116                 Childrens
## 196  (218) 786-4000      Acute Care Hospitals
## 197  (518) 254-3456 Critical Access Hospitals
## 198  (573) 431-6005      Acute Care Hospitals
## 199  (251) 275-3191      Acute Care Hospitals
## 200  (304) 847-5682 Critical Access Hospitals
## 201  (260) 927-0726               Psychiatric
## 202  (989) 772-6700      Acute Care Hospitals
## 203  (505) 243-3387               Psychiatric
## 204  (479) 524-4141      Acute Care Hospitals
## 205  (559) 935-6400      Acute Care Hospitals
## 206  (435) 719-3500 Critical Access Hospitals
## 207  (308) 728-4200 Critical Access Hospitals
## 208  (610) 526-3000      Acute Care Hospitals
## 209  (501) 219-7000      Acute Care Hospitals
## 210  (574) 753-7541      Acute Care Hospitals
## 211  (727) 424-3427               Psychiatric
## 212  (520) 432-6401 Critical Access Hospitals
## 213  (541) 575-1311 Critical Access Hospitals
## 214  (918) 225-2915      Acute Care Hospitals
## 215  (530) 279-6111 Critical Access Hospitals
## 216  (541) 524-7744 Critical Access Hospitals
## 217  (863) 533-8111      Acute Care Hospitals
## 218  (405) 271-5911      Acute Care Hospitals
## 219  (701) 636-3200 Critical Access Hospitals
## 220  (406) 487-2296 Critical Access Hospitals
## 221  (614) 566-5000      Acute Care Hospitals
## 222  (731) 686-1591      Acute Care Hospitals
## 223  (228) 809-5000      Acute Care Hospitals
## 224  (850) 674-3493 Critical Access Hospitals
## 225  (508) 828-7000      Acute Care Hospitals
## 226  (806) 273-1100 Critical Access Hospitals
## 227  (787) 892-5300      Acute Care Hospitals
## 228  (423) 626-4211      Acute Care Hospitals
## 229  (330) 343-3311      Acute Care Hospitals
## 230  (509) 725-7101 Critical Access Hospitals
## 231  (563) 245-7000 Critical Access Hospitals
## 232  (706) 647-8111      Acute Care Hospitals
## 233  (360) 875-5526 Critical Access Hospitals
## 234  (281) 333-5503      Acute Care Hospitals
## 235  (602) 251-8156      Acute Care Hospitals
## 236  (763) 682-1212      Acute Care Hospitals
## 237  (319) 235-3941      Acute Care Hospitals
## 238  (262) 673-2300      Acute Care Hospitals
## 239  (724) 283-6666      Acute Care Hospitals
## 240  (404) 844-8334      Acute Care Hospitals
## 241  (660) 562-2600      Acute Care Hospitals
## 242  (225) 752-2470      Acute Care Hospitals
## 243  (956) 365-1000      Acute Care Hospitals
## 244  (718) 262-6000      Acute Care Hospitals
## 245  (718) 270-1000      Acute Care Hospitals
## 246  (260) 665-2141 Critical Access Hospitals
## 247  (330) 297-2300      Acute Care Hospitals
## 248  (844) 264-1435      Acute Care Hospitals
## 249  (440) 953-3000               Psychiatric
## 250  (310) 510-0700 Critical Access Hospitals
## 251  (586) 263-2300      Acute Care Hospitals
## 252  (860) 456-1311               Psychiatric
## 253  (408) 947-2500      Acute Care Hospitals
## 254  (419) 358-9010 Critical Access Hospitals
## 255  (619) 435-6251      Acute Care Hospitals
## 256  (607) 324-8000      Acute Care Hospitals
## 257  (931) 502-1000      Acute Care Hospitals
## 258  (913) 791-4200      Acute Care Hospitals
## 259  (775) 751-7500 Critical Access Hospitals
## 260  (410) 328-8667      Acute Care Hospitals
## 261  (205) 833-9000               Psychiatric
## 262  (505) 923-8826      Acute Care Hospitals
## 263  (318) 471-2628      Acute Care Hospitals
## 264  (308) 284-4011 Critical Access Hospitals
## 265  (805) 652-6075      Acute Care Hospitals
## 266  (662) 369-2455 Critical Access Hospitals
## 267  (904) 602-1000      Acute Care Hospitals
## 268  (337) 824-1558               Psychiatric
## 269  (650) 299-2000      Acute Care Hospitals
## 270  (601) 947-3161      Acute Care Hospitals
## 271  (507) 454-3650      Acute Care Hospitals
## 272  (570) 853-3135 Critical Access Hospitals
## 273  (907) 966-2411 Critical Access Hospitals
## 274  (402) 569-2451 Critical Access Hospitals
## 275  (325) 844-2561 Critical Access Hospitals
## 276  (205) 934-4011      Acute Care Hospitals
## 277  (712) 722-1271 Critical Access Hospitals
## 278  (515) 332-4200 Critical Access Hospitals
## 279  (407) 321-4500      Acute Care Hospitals
## 280  (870) 364-4111 Critical Access Hospitals
## 281  (337) 474-6370      Acute Care Hospitals
## 282  (763) 581-1000      Acute Care Hospitals
## 283  (912) 287-2500      Acute Care Hospitals
## 284  (915) 407-7878      Acute Care Hospitals
## 285  (770) 775-7861 Critical Access Hospitals
## 286  (620) 724-8291 Critical Access Hospitals
## 287  (801) 561-3377               Psychiatric
## 288  (910) 592-8511      Acute Care Hospitals
## 289  (251) 246-9021      Acute Care Hospitals
## 290  (817) 336-2100      Acute Care Hospitals
## 291  (423) 733-5001 Critical Access Hospitals
## 292  (818) 719-3800      Acute Care Hospitals
## 293  (402) 763-3600      Acute Care Hospitals
## 294  (510) 535-5115               Psychiatric
## 295  (870) 222-5600 Critical Access Hospitals
## 296  (618) 833-5161               Psychiatric
## 297  (248) 964-8800      Acute Care Hospitals
## 298  (330) 385-7200      Acute Care Hospitals
## 299  (580) 766-2311               Psychiatric
## 300  (405) 282-6700 Critical Access Hospitals
## 301  (508) 235-7600               Psychiatric
## 302  (254) 675-8322 Critical Access Hospitals
## 303  (209) 823-3111      Acute Care Hospitals
## 304  (281) 837-7600      Acute Care Hospitals
## 305  (301) 733-0330               Psychiatric
## 306  (703) 536-2000               Psychiatric
## 307  (407) 890-2100      Acute Care Hospitals
## 308  (940) 937-6371      Acute Care Hospitals
## 309  (480) 565-3035               Psychiatric
## 310  (913) 322-7401      Acute Care Hospitals
## 311  (816) 698-7000      Acute Care Hospitals
## 312  (785) 354-6121      Acute Care Hospitals
## 313  (815) 937-2490      Acute Care Hospitals
## 314  (828) 286-5000      Acute Care Hospitals
## 315  (307) 334-4000 Critical Access Hospitals
## 316  (540) 689-1000      Acute Care Hospitals
## 317  (616) 685-5000      Acute Care Hospitals
## 318  (816) 348-1236      Acute Care Hospitals
## 319  (334) 335-3374      Acute Care Hospitals
## 320  (951) 679-8888      Acute Care Hospitals
## 321  (716) 487-0141      Acute Care Hospitals
## 322  (708) 681-3200      Acute Care Hospitals
## 323  (315) 470-7449      Acute Care Hospitals
## 324  (620) 285-4360               Psychiatric
## 325  (228) 436-1104      Acute Care Hospitals
## 326  (712) 655-2072 Critical Access Hospitals
## 327  (215) 456-6090      Acute Care Hospitals
## 328  (713) 691-1111      Acute Care Hospitals
## 329  (585) 786-2233      Acute Care Hospitals
## 330  (520) 222-8268               Psychiatric
## 331  (203) 694-8200      Acute Care Hospitals
## 332  (219) 392-7004      Acute Care Hospitals
## 333  (561) 753-4245      Acute Care Hospitals
## 334  (952) 403-3000      Acute Care Hospitals
## 335  (864) 454-6100      Acute Care Hospitals
## 336  (985) 444-5100               Psychiatric
## 337  (206) 244-9970      Acute Care Hospitals
## 338  (901) 791-0600               Psychiatric
## 339  (218) 847-0888      Acute Care Hospitals
## 340  (321) 637-2603      Acute Care Hospitals
## 341  (859) 301-2000      Acute Care Hospitals
## 342  (573) 729-6626 Critical Access Hospitals
## 343  (920) 433-3500      Acute Care Hospitals
## 344  (701) 772-2500               Psychiatric
## 345  (706) 629-2895      Acute Care Hospitals
## 346  (217) 464-2966      Acute Care Hospitals
## 347  (440) 960-7960               Psychiatric
## 348  (318) 539-1000      Acute Care Hospitals
## 349  (219) 942-0551      Acute Care Hospitals
## 350  (573) 815-8000      Acute Care Hospitals
## 351  (334) 624-3024      Acute Care Hospitals
## 352  (516) 719-3000      Acute Care Hospitals
## 353  (505) 786-5291      Acute Care Hospitals
## 354  (773) 878-8700      Acute Care Hospitals
## 355  (740) 335-1210 Critical Access Hospitals
## 356  (972) 247-1000      Acute Care Hospitals
## 357  (225) 658-4000      Acute Care Hospitals
## 358  (904) 321-3500      Acute Care Hospitals
## 359  (209) 943-2000      Acute Care Hospitals
## 360  (225) 474-2133 Critical Access Hospitals
## 361  (423) 522-6000      Acute Care Hospitals
## 362  (518) 562-7767      Acute Care Hospitals
## 363  (317) 528-5000      Acute Care Hospitals
## 364  (989) 362-9301      Acute Care Hospitals
## 365  (510) 437-4800      Acute Care Hospitals
## 366  (636) 239-8000      Acute Care Hospitals
## 367  (308) 384-4600      Acute Care Hospitals
## 368  (708) 684-8000      Acute Care Hospitals
## 369  (818) 364-1555      Acute Care Hospitals
## 370  (714) 774-1450      Acute Care Hospitals
## 371  (936) 327-4381      Acute Care Hospitals
## 372  (814) 467-3000      Acute Care Hospitals
## 373  (605) 224-3100      Acute Care Hospitals
## 374  (408) 259-5000      Acute Care Hospitals
## 375  (262) 646-4411               Psychiatric
## 376  (618) 943-1000 Critical Access Hospitals
## 377  (605) 964-3005      Acute Care Hospitals
## 378  (417) 967-3311      Acute Care Hospitals
## 379  (505) 988-9821      Acute Care Hospitals
## 380  (503) 681-1111      Acute Care Hospitals
## 381  (276) 236-8181      Acute Care Hospitals
## 382  (614) 722-2000                 Childrens
## 383  (817) 568-5317      Acute Care Hospitals
## 384  (858) 487-3200               Psychiatric
## 385  (904) 330-2001               Psychiatric
## 386  (405) 749-2700      Acute Care Hospitals
## 387  (858) 455-9100      Acute Care Hospitals
## 388  (320) 843-4232 Critical Access Hospitals
## 389  (303) 425-4500      Acute Care Hospitals
## 390  (205) 620-8100      Acute Care Hospitals
## 391  (954) 721-2200      Acute Care Hospitals
## 392  (815) 599-6000      Acute Care Hospitals
## 393  (850) 638-1610 Critical Access Hospitals
## 394  (573) 582-5000      Acute Care Hospitals
## 395  (623) 879-6100      Acute Care Hospitals
## 396  (925) 813-6500      Acute Care Hospitals
## 397  (337) 738-2527      Acute Care Hospitals
## 398  (785) 229-8200      Acute Care Hospitals
## 399  (843) 537-7881      Acute Care Hospitals
## 400  (713) 242-3000      Acute Care Hospitals
## 401  (512) 383-8939               Psychiatric
## 402  (217) 465-4141 Critical Access Hospitals
## 403  (787) 777-3535      Acute Care Hospitals
## 404  (501) 686-5000      Acute Care Hospitals
## 405  (904) 724-9202               Psychiatric
## 406  (334) 361-4267      Acute Care Hospitals
## 407  (937) 256-7801               Psychiatric
## 408  (309) 467-2371 Critical Access Hospitals
## 409  (541) 947-2114 Critical Access Hospitals
## 410  (602) 795-6020      Acute Care Hospitals
## 411  (301) 891-5651      Acute Care Hospitals
## 412  (907) 452-8181      Acute Care Hospitals
## 413  (406) 863-3550 Critical Access Hospitals
## 414  (503) 494-6245      Acute Care Hospitals
## 415  (254) 729-3281 Critical Access Hospitals
## 416  (505) 913-5201      Acute Care Hospitals
## 417  (614) 752-0333               Psychiatric
## 418  (602) 243-4231                 Childrens
## 419  (503) 537-1555      Acute Care Hospitals
## 420  (787) 767-5100      Acute Care Hospitals
## 421  (855) 353-2201      Acute Care Hospitals
## 422  (702) 657-5504      Acute Care Hospitals
## 423  (406) 543-7271      Acute Care Hospitals
## 424  (313) 344-7730               Psychiatric
## 425  (423) 745-1411      Acute Care Hospitals
## 426  (260) 416-3000      Acute Care Hospitals
## 427  (325) 446-3321 Critical Access Hospitals
## 428  (541) 201-4017      Acute Care Hospitals
## 429  (662) 456-3700      Acute Care Hospitals
## 430  (360) 256-2000      Acute Care Hospitals
## 431  (412) 578-5000      Acute Care Hospitals
## 432  (618) 664-1230      Acute Care Hospitals
## 433  (401) 782-8020      Acute Care Hospitals
## 434  (714) 992-3000      Acute Care Hospitals
## 435  (785) 392-2122 Critical Access Hospitals
## 436  (469) 814-3278      Acute Care Hospitals
## 437  (509) 962-9841 Critical Access Hospitals
## 438  (606) 242-1100      Acute Care Hospitals
## 439  (318) 675-5000      Acute Care Hospitals
## 440  (207) 941-4000               Psychiatric
## 441  (406) 293-0100 Critical Access Hospitals
## 442  (970) 854-2241 Critical Access Hospitals
## 443  (260) 563-3131 Critical Access Hospitals
## 444  (770) 736-2498      Acute Care Hospitals
## 445  (717) 485-3155 Critical Access Hospitals
## 446  (919) 736-1110      Acute Care Hospitals
## 447  (804) 285-2011      Acute Care Hospitals
## 448  (513) 536-4673               Psychiatric
## 449  (505) 609-2000      Acute Care Hospitals
## 450  (318) 769-3000      Acute Care Hospitals
## 451  (318) 445-5111               Psychiatric
## 452  (507) 375-8601 Critical Access Hospitals
## 453  (618) 542-2146 Critical Access Hospitals
## 454  (717) 334-2121      Acute Care Hospitals
## 455  (402) 572-2121      Acute Care Hospitals
## 456  (818) 409-8202      Acute Care Hospitals
## 457  (605) 724-2159 Critical Access Hospitals
## 458  (907) 729-3971      Acute Care Hospitals
## 459  (847) 843-2000      Acute Care Hospitals
## 460  (315) 473-4240      Acute Care Hospitals
## 461  (608) 782-7300      Acute Care Hospitals
## 462  (512) 753-3690      Acute Care Hospitals
## 463  (540) 743-4561 Critical Access Hospitals
## 464  (814) 864-4031      Acute Care Hospitals
## 465  (530) 842-4121 Critical Access Hospitals
## 466  (507) 372-3110      Acute Care Hospitals
## 467  (202) 877-7000      Acute Care Hospitals
## 468  (315) 393-3600      Acute Care Hospitals
## 469  (319) 385-3141 Critical Access Hospitals
## 470  (870) 541-7100      Acute Care Hospitals
## 471  (603) 436-5110      Acute Care Hospitals
## 472  (715) 635-2111 Critical Access Hospitals
## 473  (972) 981-8000      Acute Care Hospitals
## 474  (704) 660-4000      Acute Care Hospitals
## 475  (213) 388-3151                 Childrens
## 476  (540) 839-7000 Critical Access Hospitals
## 477  (757) 984-6000      Acute Care Hospitals
## 478  (307) 672-1044      Acute Care Hospitals
## 479  (530) 749-4300      Acute Care Hospitals
## 480  (202) 537-4680      Acute Care Hospitals
## 481  (337) 462-7100      Acute Care Hospitals
## 482  (715) 346-5000      Acute Care Hospitals
## 483  (727) 462-7000      Acute Care Hospitals
## 484  (201) 967-4000      Acute Care Hospitals
## 485  (310) 829-5511      Acute Care Hospitals
## 486  (315) 493-1000 Critical Access Hospitals
## 487  (740) 922-2800 Critical Access Hospitals
## 488  (651) 232-7000      Acute Care Hospitals
## 489  (602) 406-5001      Acute Care Hospitals
## 490  (209) 572-2700      Acute Care Hospitals
## 491  (701) 530-7000      Acute Care Hospitals
## 492  (412) 367-6700      Acute Care Hospitals
## 493  (319) 339-0300      Acute Care Hospitals
## 494  (775) 331-7000      Acute Care Hospitals
## 495  (409) 772-1011      Acute Care Hospitals
## 496  (631) 654-7100      Acute Care Hospitals
## 497  (845) 368-5000      Acute Care Hospitals
## 498  (509) 474-3040      Acute Care Hospitals
## 499  (231) 352-2200 Critical Access Hospitals
## 500  (208) 814-9500 Critical Access Hospitals
## 501  (845) 786-4000      Acute Care Hospitals
## 502  (225) 634-0100               Psychiatric
## 503  (605) 626-4200      Acute Care Hospitals
## 504  (301) 609-4265      Acute Care Hospitals
## 505  (815) 432-5201      Acute Care Hospitals
## 506  (702) 794-0100      Acute Care Hospitals
## 507  (512) 491-9400               Psychiatric
## 508  (940) 564-5521 Critical Access Hospitals
## 509  (707) 648-2200               Psychiatric
## 510  (303) 651-5111      Acute Care Hospitals
## 511  (406) 466-5763 Critical Access Hospitals
## 512  (650) 723-5708      Acute Care Hospitals
## 513  (503) 257-2500      Acute Care Hospitals
## 514  (618) 436-8000      Acute Care Hospitals
## 515  (419) 435-7734 Critical Access Hospitals
## 516  (859) 239-2409 Critical Access Hospitals
## 517  (985) 893-2970               Psychiatric
## 518  (207) 795-0111      Acute Care Hospitals
## 519  (973) 831-5000      Acute Care Hospitals
## 520  (636) 496-2000      Acute Care Hospitals
## 521  (830) 875-7000 Critical Access Hospitals
## 522  (618) 833-4511 Critical Access Hospitals
## 523  (856) 346-7802      Acute Care Hospitals
## 524  (865) 446-7500      Acute Care Hospitals
## 525  (601) 833-6011      Acute Care Hospitals
## 526  (717) 531-8521      Acute Care Hospitals
## 527  (501) 278-3100      Acute Care Hospitals
## 528  (806) 766-0268               Psychiatric
## 529  (903) 813-3728      Acute Care Hospitals
## 530  (425) 688-5000      Acute Care Hospitals
## 531  (620) 649-2761 Critical Access Hospitals
## 532  (620) 356-1266      Acute Care Hospitals
## 533  (262) 741-2000      Acute Care Hospitals
## 534  (919) 934-8171      Acute Care Hospitals
## 535  (217) 322-4321 Critical Access Hospitals
## 536  (973) 365-4300      Acute Care Hospitals
## 537  (615) 338-1000      Acute Care Hospitals
## 538  (260) 672-4050      Acute Care Hospitals
## 539  (310) 325-9110      Acute Care Hospitals
## 540  (765) 675-8500 Critical Access Hospitals
## 541  (951) 688-2211      Acute Care Hospitals
## 542  (605) 853-2421 Critical Access Hospitals
## 543  (610) 826-3141      Acute Care Hospitals
## 544  (530) 934-1818 Critical Access Hospitals
## 545  (520) 872-3000      Acute Care Hospitals
## 546  (949) 364-1400      Acute Care Hospitals
## 547  (505) 994-7402      Acute Care Hospitals
## 548  (787) 787-5151      Acute Care Hospitals
## 549  (765) 502-4334      Acute Care Hospitals
## 550  (760) 351-3333      Acute Care Hospitals
## 551  (609) 303-4000      Acute Care Hospitals
## 552  (936) 291-3411      Acute Care Hospitals
## 553  (949) 365-2408                 Childrens
## 554  (580) 735-2555 Critical Access Hospitals
## 555  (904) 953-2000      Acute Care Hospitals
## 556  (360) 491-9480      Acute Care Hospitals
## 557  (208) 799-5300      Acute Care Hospitals
## 558  (417) 335-7000      Acute Care Hospitals
## 559  (843) 777-2900      Acute Care Hospitals
## 560  (212) 241-7981      Acute Care Hospitals
## 561  (661) 316-6000      Acute Care Hospitals
## 562  (985) 384-2200      Acute Care Hospitals
## 563  (402) 685-5601 Critical Access Hospitals
## 564  (626) 851-1011      Acute Care Hospitals
## 565  (816) 470-5432 Critical Access Hospitals
## 566  (360) 734-5400      Acute Care Hospitals
## 567  (831) 385-6000      Acute Care Hospitals
## 568  (801) 285-4000      Acute Care Hospitals
## 569  (530) 623-5541 Critical Access Hospitals
## 570  (785) 626-3211 Critical Access Hospitals
## 571  (682) 622-2059      Acute Care Hospitals
## 572  (850) 526-2200      Acute Care Hospitals
## 573  (762) 236-8100      Acute Care Hospitals
## 574  (502) 629-8000      Acute Care Hospitals
## 575  (617) 855-3450               Psychiatric
## 576  (512) 324-7000      Acute Care Hospitals
## 577  (530) 225-6102      Acute Care Hospitals
## 578  (760) 724-8411      Acute Care Hospitals
## 579  (843) 747-5830               Psychiatric
## 580  (202) 784-3000      Acute Care Hospitals
## 581  (509) 623-0422                 Childrens
## 582  (240) 313-9500      Acute Care Hospitals
## 583  (410) 740-7890      Acute Care Hospitals
## 584  (702) 880-2100      Acute Care Hospitals
## 585  (509) 332-2541 Critical Access Hospitals
## 586  (318) 495-3131 Critical Access Hospitals
## 587  (615) 735-9815 Critical Access Hospitals
## 588  (607) 337-4111      Acute Care Hospitals
## 589  (731) 668-7073               Psychiatric
## 590  (585) 760-6500      Acute Care Hospitals
## 591  (903) 597-0351      Acute Care Hospitals
## 592  (660) 476-2111 Critical Access Hospitals
## 593  (785) 890-3625 Critical Access Hospitals
## 594  (570) 586-2011               Psychiatric
## 595  (302) 744-7001      Acute Care Hospitals
## 596  (970) 625-1510 Critical Access Hospitals
## 597  (843) 402-1006      Acute Care Hospitals
## 598  (570) 326-8000               Psychiatric
## 599  (701) 352-1620 Critical Access Hospitals
## 600  (510) 655-4000      Acute Care Hospitals
## 601  (270) 932-4211 Critical Access Hospitals
## 602  (901) 226-5000      Acute Care Hospitals
## 603  (209) 578-1211      Acute Care Hospitals
## 604  (574) 335-5000      Acute Care Hospitals
## 605  (805) 653-6434               Psychiatric
## 606  (601) 736-6303      Acute Care Hospitals
## 607  (906) 387-4110 Critical Access Hospitals
## 608  (858) 485-6511      Acute Care Hospitals
## 609  (714) 614-0474               Psychiatric
## 610  (712) 472-2591 Critical Access Hospitals
## 611  (412) 247-2000               Psychiatric
## 612  (989) 673-3141 Critical Access Hospitals
## 613  (606) 886-8511      Acute Care Hospitals
## 614  (812) 738-4251 Critical Access Hospitals
## 615  (702) 853-3000      Acute Care Hospitals
## 616  (432) 582-8340      Acute Care Hospitals
## 617  (281) 893-7200               Psychiatric
## 618  (636) 947-5000      Acute Care Hospitals
## 619  (309) 672-5522      Acute Care Hospitals
## 620  (308) 865-7100      Acute Care Hospitals
## 621  (573) 359-1372      Acute Care Hospitals
## 622  (318) 966-4000      Acute Care Hospitals
## 623  (734) 367-8400               Psychiatric
## 624  (208) 766-2231 Critical Access Hospitals
## 625  (941) 792-6611      Acute Care Hospitals
## 626  (213) 484-7111      Acute Care Hospitals
## 627  (304) 255-3456      Acute Care Hospitals
## 628  (480) 832-4770      Acute Care Hospitals
## 629  (407) 303-1976      Acute Care Hospitals
## 630  (972) 868-4000      Acute Care Hospitals
## 631  (435) 676-8811 Critical Access Hospitals
## 632  (808) 442-5101      Acute Care Hospitals
## 633  (315) 462-9561      Acute Care Hospitals
## 634  (907) 861-6000      Acute Care Hospitals
## 635  (252) 808-6000      Acute Care Hospitals
## 636  (205) 926-4881      Acute Care Hospitals
## 637  (478) 240-2100      Acute Care Hospitals
## 638  (337) 786-1200 Critical Access Hospitals
## 639  (808) 536-2236      Acute Care Hospitals
## 640  (713) 566-6417      Acute Care Hospitals
## 641  (731) 221-2200 Critical Access Hospitals
## 642  (517) 424-3000 Critical Access Hospitals
## 643  (732) 321-7000      Acute Care Hospitals
## 644  (570) 969-8240      Acute Care Hospitals
## 645  (620) 767-6811 Critical Access Hospitals
## 646  (708) 771-7000               Psychiatric
## 647  (541) 347-2426 Critical Access Hospitals
## 648  (715) 235-5531 Critical Access Hospitals
## 649  (432) 756-3345 Critical Access Hospitals
## 650  (319) 272-8000      Acute Care Hospitals
## 651  (513) 841-3011               Psychiatric
## 652  (320) 352-2221 Critical Access Hospitals
## 653  (508) 941-7000      Acute Care Hospitals
## 654  (603) 524-3211      Acute Care Hospitals
## 655  (912) 576-6401      Acute Care Hospitals
## 656  (971) 310-1000      Acute Care Hospitals
## 657  (315) 349-5511      Acute Care Hospitals
## 658  (509) 473-5800      Acute Care Hospitals
## 659  (360) 378-2141 Critical Access Hospitals
## 660  (951) 788-3000      Acute Care Hospitals
## 661  (603) 448-3121 Critical Access Hospitals
## 662  (561) 747-2234      Acute Care Hospitals
## 663  (832) 522-1000      Acute Care Hospitals
## 664  (509) 488-2636 Critical Access Hospitals
## 665  (530) 225-8700      Acute Care Hospitals
## 666  (270) 384-4753      Acute Care Hospitals
## 667  (515) 282-2200      Acute Care Hospitals
## 668  (469) 535-8000               Psychiatric
## 669  (304) 822-4561 Critical Access Hospitals
## 670  (310) 825-6301      Acute Care Hospitals
## 671  (970) 879-1322      Acute Care Hospitals
## 672  (305) 284-7500      Acute Care Hospitals
## 673  (928) 684-5421 Critical Access Hospitals
## 674  (802) 388-4701 Critical Access Hospitals
## 675  (864) 339-2100      Acute Care Hospitals
## 676  (941) 485-7711      Acute Care Hospitals
## 677  (281) 312-4000      Acute Care Hospitals
## 678  (863) 687-1100      Acute Care Hospitals
## 679  (206) 326-3000      Acute Care Hospitals
## 680  (606) 337-3051      Acute Care Hospitals
## 681  (209) 536-5000      Acute Care Hospitals
## 682  (330) 729-2929      Acute Care Hospitals
## 683  (402) 694-3171 Critical Access Hospitals
## 684  (215) 440-3100      Acute Care Hospitals
## 685  (813) 873-6400      Acute Care Hospitals
## 686  (605) 995-2000      Acute Care Hospitals
## 687  (989) 802-5000      Acute Care Hospitals
## 688  (405) 438-3000               Psychiatric
## 689  (440) 466-1141 Critical Access Hospitals
## 690  (540) 921-6000 Critical Access Hospitals
## 691  (503) 325-4321 Critical Access Hospitals
## 692  (630) 527-3000      Acute Care Hospitals
## 693  (501) 985-7000      Acute Care Hospitals
## 694  (702) 835-9700      Acute Care Hospitals
## 695  (412) 359-3131      Acute Care Hospitals
## 696  (512) 327-0000      Acute Care Hospitals
## 697  (918) 647-8161 Critical Access Hospitals
## 698  (989) 635-4000 Critical Access Hospitals
## 699  (508) 222-5200      Acute Care Hospitals
## 700  (307) 754-2267 Critical Access Hospitals
## 701  (815) 786-8484 Critical Access Hospitals
## 702  (304) 926-1600               Psychiatric
## 703  (808) 928-8331 Critical Access Hospitals
## 704  (313) 295-5253      Acute Care Hospitals
## 705  (910) 457-3800 Critical Access Hospitals
## 706  (614) 449-9664               Psychiatric
## 707  (601) 268-8000      Acute Care Hospitals
## 708  (716) 592-2871      Acute Care Hospitals
## 709  (817) 502-7300      Acute Care Hospitals
## 710  (641) 664-2145 Critical Access Hospitals
## 711  (208) 267-4850 Critical Access Hospitals
## 712  (510) 357-6500      Acute Care Hospitals
## 713  (573) 754-5531 Critical Access Hospitals
## 714  (620) 384-7461 Critical Access Hospitals
## 715  (203) 709-6020      Acute Care Hospitals
## 716  (269) 651-7824      Acute Care Hospitals
## 717  (928) 333-4368 Critical Access Hospitals
## 718  (954) 473-6600      Acute Care Hospitals
## 719  (573) 883-2751 Critical Access Hospitals
## 720  (402) 372-2404 Critical Access Hospitals
## 721  (828) 322-6070      Acute Care Hospitals
## 722  (608) 776-4466 Critical Access Hospitals
## 723  (202) 574-6611      Acute Care Hospitals
## 724  (401) 769-4100      Acute Care Hospitals
## 725  (814) 274-9301 Critical Access Hospitals
## 726  (305) 751-8626      Acute Care Hospitals
## 727  (928) 763-2273      Acute Care Hospitals
## 728  (903) 856-4520 Critical Access Hospitals
## 729  (719) 776-5000      Acute Care Hospitals
## 730  (972) 403-2700      Acute Care Hospitals
## 731  (412) 641-4010      Acute Care Hospitals
## 732  (509) 765-5606      Acute Care Hospitals
## 733  (256) 386-1601      Acute Care Hospitals
## 734  (303) 866-7066               Psychiatric
## 735  (912) 375-7781 Critical Access Hospitals
## 736  (334) 283-6541      Acute Care Hospitals
## 737  (620) 629-6291      Acute Care Hospitals
## 738  (989) 426-9286 Critical Access Hospitals
## 739  (931) 381-1111      Acute Care Hospitals
## 740  (845) 359-1000               Psychiatric
## 741  (918) 492-8200               Psychiatric
## 742  (724) 450-7000      Acute Care Hospitals
## 743  (909) 558-8000      Acute Care Hospitals
## 744  (989) 345-6366      Acute Care Hospitals
## 745  (314) 877-0500               Psychiatric
## 746  (916) 973-5000      Acute Care Hospitals
## 747  (603) 668-3545      Acute Care Hospitals
## 748  (717) 851-2345      Acute Care Hospitals
## 749  (708) 531-7202               Psychiatric
## 750  (573) 438-5451 Critical Access Hospitals
## 751  (804) 733-6874               Psychiatric
## 752  (419) 383-4848      Acute Care Hospitals
## 753  (919) 774-2100      Acute Care Hospitals
## 754  (231) 924-3300 Critical Access Hospitals
## 755  (785) 452-7000      Acute Care Hospitals
## 756  (541) 447-6254 Critical Access Hospitals
## 757  (661) 253-8000      Acute Care Hospitals
## 758  (501) 887-3000 Critical Access Hospitals
## 759  (918) 438-4257               Psychiatric
## 760  (765) 646-8373      Acute Care Hospitals
## 761  (806) 659-2535 Critical Access Hospitals
## 762  (207) 288-5081 Critical Access Hospitals
## 763  (401) 455-6270               Psychiatric
## 764  (615) 563-4001      Acute Care Hospitals
## 765  (708) 938-4000      Acute Care Hospitals
## 766  (931) 589-2121      Acute Care Hospitals
## 767  (607) 798-5111      Acute Care Hospitals
## 768  (703) 525-7070      Acute Care Hospitals
## 769  (340) 778-6311      Acute Care Hospitals
## 770  (605) 755-1000      Acute Care Hospitals
## 771  (574) 722-5151               Psychiatric
## 772  (717) 249-1212      Acute Care Hospitals
## 773  (252) 522-7000      Acute Care Hospitals
## 774  (361) 573-9181      Acute Care Hospitals
## 775  (605) 977-7000      Acute Care Hospitals
## 776  (617) 667-7000      Acute Care Hospitals
## 777  (308) 352-7200 Critical Access Hospitals
## 778  (818) 502-1900      Acute Care Hospitals
## 779  (925) 447-7000      Acute Care Hospitals
## 780  (706) 389-3930      Acute Care Hospitals
## 781  (918) 367-2215      Acute Care Hospitals
## 782  (715) 387-7850      Acute Care Hospitals
## 783  (318) 346-6681 Critical Access Hospitals
## 784  (215) 278-2000      Acute Care Hospitals
## 785  (603) 542-7771 Critical Access Hospitals
## 786  (717) 843-8623      Acute Care Hospitals
## 787  (970) 867-3391      Acute Care Hospitals
## 788  (978) 937-6000      Acute Care Hospitals
## 789  (520) 381-6300      Acute Care Hospitals
## 790  (435) 462-4123 Critical Access Hospitals
## 791  (845) 338-2500      Acute Care Hospitals
## 792  (580) 544-2501 Critical Access Hospitals
## 793  (512) 324-2000               Psychiatric
## 794  (620) 272-2222      Acute Care Hospitals
## 795  (949) 837-4500      Acute Care Hospitals
## 796  (513) 298-7700      Acute Care Hospitals
## 797  (918) 477-5095      Acute Care Hospitals
## 798  (956) 245-9665               Psychiatric
## 799  (650) 940-7000      Acute Care Hospitals
## 800  (256) 235-5121      Acute Care Hospitals
## 801  (410) 848-3000      Acute Care Hospitals
## 802  (803) 432-4311      Acute Care Hospitals
## 803  (805) 681-5244               Psychiatric
## 804  (208) 934-4433 Critical Access Hospitals
## 805  (601) 883-5000      Acute Care Hospitals
## 806  (843) 374-2036      Acute Care Hospitals
## 807  (718) 221-7395               Psychiatric
## 808  (513) 867-2000      Acute Care Hospitals
## 809  (918) 458-3100      Acute Care Hospitals
## 810  (605) 845-3692 Critical Access Hospitals
## 811  (262) 434-1000      Acute Care Hospitals
## 812  (570) 829-8111      Acute Care Hospitals
## 813  (815) 772-4003 Critical Access Hospitals
## 814  (706) 356-7800      Acute Care Hospitals
## 815  (401) 274-1100      Acute Care Hospitals
## 816  (760) 446-3551 Critical Access Hospitals
## 817  (717) 532-4217               Psychiatric
## 818  (860) 224-5011      Acute Care Hospitals
## 819  (808) 486-6000      Acute Care Hospitals
## 820  (712) 792-3581      Acute Care Hospitals
## 821  (413) 568-2811      Acute Care Hospitals
## 822  (910) 862-5100 Critical Access Hospitals
## 823  (573) 996-2141      Acute Care Hospitals
## 824  (402) 481-1111      Acute Care Hospitals
## 825  (719) 767-5661 Critical Access Hospitals
## 826  (559) 784-1110      Acute Care Hospitals
## 827  (928) 773-2357      Acute Care Hospitals
## 828  (701) 780-5000      Acute Care Hospitals
## 829  (575) 887-4570      Acute Care Hospitals
## 830  (717) 248-5411      Acute Care Hospitals
## 831  (276) 883-8100      Acute Care Hospitals
## 832  (417) 876-2511 Critical Access Hospitals
## 833  (256) 494-4000      Acute Care Hospitals
## 834  (812) 276-1065 Critical Access Hospitals
## 835  (406) 547-3321 Critical Access Hospitals
## 836  (256) 259-4444      Acute Care Hospitals
## 837  (919) 575-7240               Psychiatric
## 838  (718) 883-3000      Acute Care Hospitals
## 839  (920) 288-8000      Acute Care Hospitals
## 840  (219) 756-2100      Acute Care Hospitals
## 841  (859) 497-5018      Acute Care Hospitals
## 842  (812) 469-6800               Psychiatric
## 843  (406) 322-5316 Critical Access Hospitals
## 844  (305) 674-2121      Acute Care Hospitals
## 845  (318) 335-3700      Acute Care Hospitals
## 846  (989) 584-3131      Acute Care Hospitals
## 847  (541) 386-3911 Critical Access Hospitals
## 848  (217) 532-6111 Critical Access Hospitals
## 849  (940) 320-8100               Psychiatric
## 850  (817) 837-4600      Acute Care Hospitals
## 851  (956) 323-9000      Acute Care Hospitals
## 852  (412) 942-4000      Acute Care Hospitals
## 853  (719) 285-2000 Critical Access Hospitals
## 854  (423) 586-4231      Acute Care Hospitals
## 855  (443) 643-3303      Acute Care Hospitals
## 856  (805) 955-6000      Acute Care Hospitals
## 857  (940) 864-2621 Critical Access Hospitals
## 858  (214) 947-7777      Acute Care Hospitals
## 859  (605) 755-9900      Acute Care Hospitals
## 860  (773) 947-7500      Acute Care Hospitals
## 861  (419) 483-4040      Acute Care Hospitals
## 862  (641) 322-3121 Critical Access Hospitals
## 863  (910) 296-0941      Acute Care Hospitals
## 864  (972) 991-9504               Psychiatric
## 865  (501) 205-0011               Psychiatric
## 866  (843) 692-1000      Acute Care Hospitals
## 867  (732) 745-8600      Acute Care Hospitals
## 868  (518) 243-4000      Acute Care Hospitals
## 869  (260) 925-4600      Acute Care Hospitals
## 870  (618) 233-7750      Acute Care Hospitals
## 871  (830) 201-7308      Acute Care Hospitals
## 872  (317) 745-4451      Acute Care Hospitals
## 873  (830) 896-4200      Acute Care Hospitals
## 874  (505) 727-8000      Acute Care Hospitals
## 875  (301) 774-8882      Acute Care Hospitals
## 876  (415) 925-7900      Acute Care Hospitals
## 877  (281) 516-6186               Psychiatric
## 878  (870) 898-5011 Critical Access Hospitals
## 879  (315) 824-1100 Critical Access Hospitals
## 880  (831) 624-5311      Acute Care Hospitals
## 881  (239) 574-2323      Acute Care Hospitals
## 882  (610) 313-1000               Psychiatric
## 883  (571) 284-1000      Acute Care Hospitals
## 884  (727) 942-5000      Acute Care Hospitals
## 885  (386) 586-2000      Acute Care Hospitals
## 886  (870) 892-6000      Acute Care Hospitals
## 887  (806) 354-1110      Acute Care Hospitals
## 888  (434) 517-3100      Acute Care Hospitals
## 889  (270) 417-2000      Acute Care Hospitals
## 890  (775) 635-2550 Critical Access Hospitals
## 891  (775) 423-3151 Critical Access Hospitals
## 892  (951) 486-4000      Acute Care Hospitals
## 893  (907) 262-4404      Acute Care Hospitals
## 894  (941) 917-9000      Acute Care Hospitals
## 895  (505) 272-2111      Acute Care Hospitals
## 896  (601) 855-4000      Acute Care Hospitals
## 897  (864) 442-7200      Acute Care Hospitals
## 898  (936) 632-2276               Psychiatric
## 899  (304) 372-2731 Critical Access Hospitals
## 900  (907) 264-3526               Psychiatric
## 901  (850) 769-1511      Acute Care Hospitals
## 902  (515) 832-9400 Critical Access Hospitals
## 903  (254) 879-4900 Critical Access Hospitals
## 904  (618) 262-8621 Critical Access Hospitals
## 905  (718) 245-3901      Acute Care Hospitals
## 906  (605) 334-6730      Acute Care Hospitals
## 907  (985) 345-2700      Acute Care Hospitals
## 908  (719) 738-5100 Critical Access Hospitals
## 909  (713) 741-5000               Psychiatric
## 910  (334) 738-2140      Acute Care Hospitals
## 911  (805) 543-5353      Acute Care Hospitals
## 912  (787) 650-7272      Acute Care Hospitals
## 913  (718) 692-5302      Acute Care Hospitals
## 914  (803) 534-2328               Psychiatric
## 915  (907) 224-5205 Critical Access Hospitals
## 916  (909) 336-3651 Critical Access Hospitals
## 917  (973) 571-2801               Psychiatric
## 918  (281) 392-1111      Acute Care Hospitals
## 919  (870) 261-0000      Acute Care Hospitals
## 920  (214) 456-1792                 Childrens
## 921  (940) 567-6633      Acute Care Hospitals
## 922  (620) 221-2300 Critical Access Hospitals
## 923  (843) 784-8182      Acute Care Hospitals
## 924  (248) 338-5000      Acute Care Hospitals
## 925  (813) 788-0411      Acute Care Hospitals
## 926  (573) 785-7721      Acute Care Hospitals
## 927  (804) 320-3911      Acute Care Hospitals
## 928  (303) 673-1280      Acute Care Hospitals
## 929  (406) 446-2345 Critical Access Hospitals
## 930  (916) 423-6010      Acute Care Hospitals
## 931  (785) 284-2121 Critical Access Hospitals
## 932  (480) 345-5400               Psychiatric
## 933  (832) 824-1000                 Childrens
## 934  (620) 225-8400      Acute Care Hospitals
## 935  (708) 383-6200      Acute Care Hospitals
## 936  (310) 530-1151               Psychiatric
## 937  (216) 531-9000      Acute Care Hospitals
## 938  (954) 463-4321               Psychiatric
## 939  (775) 982-7063      Acute Care Hospitals
## 940  (425) 228-3450      Acute Care Hospitals
## 941  (337) 521-9100      Acute Care Hospitals
## 942  (303) 498-1601      Acute Care Hospitals
## 943  (757) 941-6400               Psychiatric
## 944  (319) 398-6011      Acute Care Hospitals
## 945  (415) 600-6000      Acute Care Hospitals
## 946  (804) 435-8000 Critical Access Hospitals
## 947  (806) 364-2141      Acute Care Hospitals
## 948  (787) 834-0101      Acute Care Hospitals
## 949  (808) 941-4466                 Childrens
## 950  (216) 445-8400      Acute Care Hospitals
## 951  (781) 769-4000      Acute Care Hospitals
## 952  (870) 226-3731 Critical Access Hospitals
## 953  (507) 835-1210 Critical Access Hospitals
## 954  (517) 846-4521 Critical Access Hospitals
## 955  (601) 376-1000      Acute Care Hospitals
## 956  (985) 447-5500      Acute Care Hospitals
## 957  (304) 472-2000 Critical Access Hospitals
## 958  (785) 337-2214 Critical Access Hospitals
## 959  (850) 494-4000      Acute Care Hospitals
## 960  (270) 745-1000      Acute Care Hospitals
## 961  (408) 848-2000      Acute Care Hospitals
## 962  (307) 362-3711      Acute Care Hospitals
## 963  (785) 877-3351 Critical Access Hospitals
## 964  (361) 526-2321 Critical Access Hospitals
## 965  (202) 716-4605      Acute Care Hospitals
## 966  (702) 383-2000      Acute Care Hospitals
## 967  (276) 258-1000      Acute Care Hospitals
## 968  (216) 696-4300      Acute Care Hospitals
## 969  (205) 877-1000      Acute Care Hospitals
## 970  (610) 327-7000      Acute Care Hospitals
## 971  (304) 728-1600 Critical Access Hospitals
## 972  (229) 377-0251      Acute Care Hospitals
## 973  (225) 647-7524               Psychiatric
## 974  (903) 877-7777      Acute Care Hospitals
## 975  (870) 269-4361 Critical Access Hospitals
## 976  (410) 448-6701      Acute Care Hospitals
## 977  (304) 269-8080      Acute Care Hospitals
## 978  (530) 877-9361      Acute Care Hospitals
## 979  (580) 922-7361 Critical Access Hospitals
## 980  (985) 626-6300               Psychiatric
## 981  (206) 386-6000      Acute Care Hospitals
## 982  (610) 691-4300      Acute Care Hospitals
## 983  (717) 765-4000      Acute Care Hospitals
## 984  (772) 567-4311      Acute Care Hospitals
## 985  (440) 312-4500      Acute Care Hospitals
## 986  (513) 872-6000                 Childrens
## 987  (205) 481-7000      Acute Care Hospitals
## 988  (419) 342-5015 Critical Access Hospitals
## 989  (918) 756-4233      Acute Care Hospitals
## 990  (254) 803-3561      Acute Care Hospitals
## 991  (360) 417-7000      Acute Care Hospitals
## 992  (402) 367-1200 Critical Access Hospitals
## 993  (713) 799-8600      Acute Care Hospitals
## 994  (615) 222-2111      Acute Care Hospitals
## 995  (706) 272-6105      Acute Care Hospitals
## 996  (916) 537-5000      Acute Care Hospitals
## 997  (787) 714-2462               Psychiatric
## 998  (412) 647-8788      Acute Care Hospitals
## 999  (214) 345-6789      Acute Care Hospitals
## 1000 (678) 635-8730               Psychiatric
## 1001 (505) 254-4500               Psychiatric
## 1002 (308) 423-2204 Critical Access Hospitals
## 1003 (708) 422-6200      Acute Care Hospitals
## 1004 (701) 284-7500 Critical Access Hospitals
## 1005 (507) 665-3375 Critical Access Hospitals
## 1006 (334) 288-2100      Acute Care Hospitals
## 1007 (812) 353-9555      Acute Care Hospitals
## 1008 (615) 322-3454      Acute Care Hospitals
## 1009 (301) 777-2240               Psychiatric
## 1010 (205) 783-3800      Acute Care Hospitals
## 1011 (816) 691-5101               Psychiatric
## 1012 (773) 794-4000               Psychiatric
## 1013 (630) 208-3000      Acute Care Hospitals
## 1014 (661) 395-3000      Acute Care Hospitals
## 1015 (701) 324-4651 Critical Access Hospitals
## 1016 (620) 583-7451 Critical Access Hospitals
## 1017 (914) 378-7000      Acute Care Hospitals
## 1018 (562) 933-8001                 Childrens
## 1019 (318) 410-0002      Acute Care Hospitals
## 1020 (479) 571-7002      Acute Care Hospitals
## 1021 (215) 244-7400      Acute Care Hospitals
## 1022 (931) 363-7531      Acute Care Hospitals
## 1023 (417) 269-6000      Acute Care Hospitals
## 1024 (602) 239-2000      Acute Care Hospitals
## 1025 (985) 876-1715               Psychiatric
## 1026 (662) 473-1411      Acute Care Hospitals
## 1027 (318) 574-2374 Critical Access Hospitals
## 1028 (812) 206-7660      Acute Care Hospitals
## 1029 (361) 758-8585      Acute Care Hospitals
## 1030 (260) 824-3210      Acute Care Hospitals
## 1031 (661) 823-3000 Critical Access Hospitals
## 1032 (864) 487-4271      Acute Care Hospitals
## 1033 (714) 985-2811      Acute Care Hospitals
## 1034 (731) 541-5000      Acute Care Hospitals
## 1035 (580) 625-4551 Critical Access Hospitals
## 1036 (225) 763-9900      Acute Care Hospitals
## 1037 (304) 455-8000      Acute Care Hospitals
## 1038 (208) 365-3561 Critical Access Hospitals
## 1039 (787) 864-4300      Acute Care Hospitals
## 1040 (765) 983-3000      Acute Care Hospitals
## 1041 (806) 385-6411      Acute Care Hospitals
## 1042 (320) 632-5441 Critical Access Hospitals
## 1043 (662) 256-7111      Acute Care Hospitals
## 1044 (662) 756-2711 Critical Access Hospitals
## 1045 (828) 580-5000      Acute Care Hospitals
## 1046 (678) 843-5720      Acute Care Hospitals
## 1047 (252) 633-8640      Acute Care Hospitals
## 1048 (602) 455-5700               Psychiatric
## 1049 (918) 623-1424 Critical Access Hospitals
## 1050 (920) 391-4700               Psychiatric
## 1051 (912) 638-1999               Psychiatric
## 1052 (601) 786-3401      Acute Care Hospitals
## 1053 (631) 376-3000      Acute Care Hospitals
## 1054 (785) 238-4131      Acute Care Hospitals
## 1055 (702) 731-8000      Acute Care Hospitals
## 1056 (802) 775-7111      Acute Care Hospitals
## 1057 (718) 918-5000      Acute Care Hospitals
## 1058 (312) 567-2000      Acute Care Hospitals
## 1059 (714) 537-5160      Acute Care Hospitals
## 1060 (806) 323-6622      Acute Care Hospitals
## 1061 (307) 684-5521 Critical Access Hospitals
## 1062 (606) 598-5104      Acute Care Hospitals
## 1063 (512) 341-1000      Acute Care Hospitals
## 1064 (310) 540-7676      Acute Care Hospitals
## 1065 (508) 334-1000      Acute Care Hospitals
## 1066 (727) 842-8468      Acute Care Hospitals
## 1067 (510) 752-1000      Acute Care Hospitals
## 1068 (605) 765-2480 Critical Access Hospitals
## 1069 (607) 547-3456      Acute Care Hospitals
## 1070 (913) 557-4385      Acute Care Hospitals
## 1071 (732) 442-3700      Acute Care Hospitals
## 1072 (915) 949-5722               Psychiatric
## 1073 (731) 986-4461      Acute Care Hospitals
## 1074 (858) 278-4110               Psychiatric
## 1075 (254) 629-2601      Acute Care Hospitals
## 1076 (803) 635-0233 Critical Access Hospitals
## 1077 (951) 290-4000      Acute Care Hospitals
## 1078 (304) 647-4411      Acute Care Hospitals
## 1079 (775) 982-4100      Acute Care Hospitals
## 1080 (641) 342-2184 Critical Access Hospitals
## 1081 (863) 293-1121      Acute Care Hospitals
## 1082 (325) 653-6741      Acute Care Hospitals
## 1083 (217) 258-2572      Acute Care Hospitals
## 1084 (765) 832-1234 Critical Access Hospitals
## 1085 (517) 279-5400      Acute Care Hospitals
## 1086 (806) 665-3721      Acute Care Hospitals
## 1087 (308) 928-2151 Critical Access Hospitals
## 1088 (906) 786-3311 Critical Access Hospitals
## 1089 (845) 986-2276      Acute Care Hospitals
## 1090 (801) 264-6000               Psychiatric
## 1091 (215) 762-7000      Acute Care Hospitals
## 1092 (563) 742-5000      Acute Care Hospitals
## 1093 (978) 369-1400      Acute Care Hospitals
## 1094 (989) 224-6881 Critical Access Hospitals
## 1095 (740) 432-4906               Psychiatric
## 1096 (731) 584-0109 Critical Access Hospitals
## 1097 (603) 569-7500 Critical Access Hospitals
## 1098 (478) 783-0200      Acute Care Hospitals
## 1099 (252) 335-0531      Acute Care Hospitals
## 1100 (804) 225-1700      Acute Care Hospitals
## 1101 (914) 964-4444      Acute Care Hospitals
## 1102 (505) 426-3930      Acute Care Hospitals
## 1103 (660) 647-2182               Psychiatric
## 1104 (413) 794-0000      Acute Care Hospitals
## 1105 (707) 464-8880      Acute Care Hospitals
## 1106 (662) 746-2261 Critical Access Hospitals
## 1107 (787) 708-6560      Acute Care Hospitals
## 1108 (276) 439-1000      Acute Care Hospitals
## 1109 (214) 443-3000      Acute Care Hospitals
## 1110 (516) 572-0123      Acute Care Hospitals
## 1111 (701) 845-6400 Critical Access Hospitals
## 1112 (832) 834-7710               Psychiatric
## 1113 (571) 349-4000      Acute Care Hospitals
## 1114 (208) 262-2466      Acute Care Hospitals
## 1115 (402) 593-3000      Acute Care Hospitals
## 1116 (317) 582-7000      Acute Care Hospitals
## 1117 (806) 725-7975                 Childrens
## 1118 (267) 572-3100      Acute Care Hospitals
## 1119 (870) 238-3300 Critical Access Hospitals
## 1120 (928) 737-6000 Critical Access Hospitals
## 1121 (276) 228-0200      Acute Care Hospitals
## 1122 (419) 668-8101      Acute Care Hospitals
## 1123 (812) 882-5220      Acute Care Hospitals
## 1124 (352) 671-3130               Psychiatric
## 1125 (904) 702-6111      Acute Care Hospitals
## 1126 (843) 522-5200      Acute Care Hospitals
## 1127 (765) 452-5611      Acute Care Hospitals
## 1128 (530) 888-4500      Acute Care Hospitals
## 1129 (304) 598-1200      Acute Care Hospitals
## 1130 (229) 543-7100      Acute Care Hospitals
## 1131 (843) 724-2954      Acute Care Hospitals
## 1132 (201) 795-8200      Acute Care Hospitals
## 1133 (775) 273-2621 Critical Access Hospitals
## 1134 (414) 805-3000      Acute Care Hospitals
## 1135 (469) 814-2000      Acute Care Hospitals
## 1136 (520) 263-3001      Acute Care Hospitals
## 1137 (570) 552-3900               Psychiatric
## 1138 (786) 596-1960      Acute Care Hospitals
## 1139 (618) 474-3800               Psychiatric
## 1140 (937) 440-7853      Acute Care Hospitals
## 1141 (507) 223-7277 Critical Access Hospitals
## 1142 (302) 422-3311      Acute Care Hospitals
## 1143 (916) 784-4000      Acute Care Hospitals
## 1144 (907) 543-6300      Acute Care Hospitals
## 1145 (641) 743-2123 Critical Access Hospitals
## 1146 (512) 346-1994      Acute Care Hospitals
## 1147 (218) 694-6501 Critical Access Hospitals
## 1148 (907) 835-2249 Critical Access Hospitals
## 1149 (504) 690-8200      Acute Care Hospitals
## 1150 (614) 706-2876               Psychiatric
## 1151 (915) 521-7602      Acute Care Hospitals
## 1152 (909) 599-6811      Acute Care Hospitals
## 1153 (303) 460-6000      Acute Care Hospitals
## 1154 (361) 293-2321 Critical Access Hospitals
## 1155 (281) 440-1000      Acute Care Hospitals
## 1156 (979) 234-5571 Critical Access Hospitals
## 1157 (602) 865-4470      Acute Care Hospitals
## 1158 (334) 382-2200      Acute Care Hospitals
## 1159 (469) 204-1000      Acute Care Hospitals
## 1160 (610) 431-5000      Acute Care Hospitals
## 1161 (702) 486-6000               Psychiatric
## 1162 (531) 355-6510                 Childrens
## 1163 (650) 992-4000      Acute Care Hospitals
## 1164 (304) 598-4000      Acute Care Hospitals
## 1165 (419) 485-3154 Critical Access Hospitals
## 1166 (660) 747-2500      Acute Care Hospitals
## 1167 (508) 693-0410 Critical Access Hospitals
## 1168 (215) 427-5000                 Childrens
## 1169 (940) 495-3981 Critical Access Hospitals
## 1170 (405) 610-8585      Acute Care Hospitals
## 1171 (641) 332-2201 Critical Access Hospitals
## 1172 (605) 882-7000      Acute Care Hospitals
## 1173 (936) 266-4055      Acute Care Hospitals
## 1174 (714) 843-5000      Acute Care Hospitals
## 1175 (785) 263-6610 Critical Access Hospitals
## 1176 (636) 344-1000      Acute Care Hospitals
## 1177 (412) 232-8111      Acute Care Hospitals
## 1178 (218) 316-3101               Psychiatric
## 1179 (478) 654-2000 Critical Access Hospitals
## 1180 (720) 718-3005      Acute Care Hospitals
## 1181 (712) 754-2574 Critical Access Hospitals
## 1182 (714) 633-9111      Acute Care Hospitals
## 1183 (719) 589-2511      Acute Care Hospitals
## 1184 (580) 436-3600               Psychiatric
## 1185 (218) 308-2401               Psychiatric
## 1186 (401) 846-6400      Acute Care Hospitals
## 1187 (860) 684-4251      Acute Care Hospitals
## 1188 (870) 352-6300 Critical Access Hospitals
## 1189 (985) 873-2200      Acute Care Hospitals
## 1190 (703) 369-8000      Acute Care Hospitals
## 1191 (423) 495-2525      Acute Care Hospitals
## 1192 (651) 254-1616      Acute Care Hospitals
## 1193 (304) 329-1400 Critical Access Hospitals
## 1194 (618) 548-3194 Critical Access Hospitals
## 1195 (918) 388-5701      Acute Care Hospitals
## 1196 (215) 481-2000      Acute Care Hospitals
## 1197 (309) 543-4431 Critical Access Hospitals
## 1198 (908) 685-2200      Acute Care Hospitals
## 1199 (605) 285-6146 Critical Access Hospitals
## 1200 (817) 261-3121               Psychiatric
## 1201 (256) 964-6700               Psychiatric
## 1202 (251) 378-6500               Psychiatric
## 1203 (508) 548-5300      Acute Care Hospitals
## 1204 (402) 387-2800 Critical Access Hospitals
## 1205 (570) 826-7300      Acute Care Hospitals
## 1206 (662) 779-5124      Acute Care Hospitals
## 1207 (620) 825-4131 Critical Access Hospitals
## 1208 (845) 398-5566               Psychiatric
## 1209 (603) 225-2711      Acute Care Hospitals
## 1210 (803) 774-9000      Acute Care Hospitals
## 1211 (785) 776-2831      Acute Care Hospitals
## 1212 (623) 207-3518      Acute Care Hospitals
## 1213 (907) 443-3311 Critical Access Hospitals
## 1214 (972) 579-8100      Acute Care Hospitals
## 1215 (815) 756-1521      Acute Care Hospitals
## 1216 (360) 678-5151 Critical Access Hospitals
## 1217 (765) 825-5131      Acute Care Hospitals
## 1218 (414) 647-5000      Acute Care Hospitals
## 1219 (507) 934-7602 Critical Access Hospitals
## 1220 (912) 350-3691      Acute Care Hospitals
## 1221 (765) 552-4743 Critical Access Hospitals
## 1222 (541) 548-8131      Acute Care Hospitals
## 1223 (940) 825-3235      Acute Care Hospitals
## 1224 (586) 493-8000      Acute Care Hospitals
## 1225 (601) 890-0500 Critical Access Hospitals
## 1226 (215) 248-8200      Acute Care Hospitals
## 1227 (540) 459-1100 Critical Access Hospitals
## 1228 (207) 861-3000      Acute Care Hospitals
## 1229 (608) 643-3311      Acute Care Hospitals
## 1230 (218) 666-5945 Critical Access Hospitals
## 1231 (210) 478-5400      Acute Care Hospitals
## 1232 (337) 643-8300 Critical Access Hospitals
## 1233 (231) 861-2156 Critical Access Hospitals
## 1234 (507) 825-5811 Critical Access Hospitals
## 1235 (860) 523-3800      Acute Care Hospitals
## 1236 (415) 641-6562      Acute Care Hospitals
## 1237 (201) 392-3200      Acute Care Hospitals
## 1238 (936) 270-2000      Acute Care Hospitals
## 1239 (509) 684-2561 Critical Access Hospitals
## 1240 (516) 562-0100      Acute Care Hospitals
## 1241 (530) 619-0800      Acute Care Hospitals
## 1242 (225) 258-6103               Psychiatric
## 1243 (513) 686-3000      Acute Care Hospitals
## 1244 (504) 897-8247      Acute Care Hospitals
## 1245 (814) 643-2290      Acute Care Hospitals
## 1246 (815) 968-4400      Acute Care Hospitals
## 1247 (225) 368-6386 Critical Access Hospitals
## 1248 (201) 369-5252               Psychiatric
## 1249 (616) 391-1774      Acute Care Hospitals
## 1250 (941) 629-1181      Acute Care Hospitals
## 1251 (706) 864-6136      Acute Care Hospitals
## 1252 (602) 933-1000                 Childrens
## 1253 (405) 602-6500      Acute Care Hospitals
## 1254 (580) 938-2551 Critical Access Hospitals
## 1255 (845) 586-2631 Critical Access Hospitals
## 1256 (802) 847-0000      Acute Care Hospitals
## 1257 (951) 737-4343      Acute Care Hospitals
## 1258 (352) 394-4071      Acute Care Hospitals
## 1259 (620) 442-2500      Acute Care Hospitals
## 1260 (863) 385-6101      Acute Care Hospitals
## 1261 (972) 298-7323               Psychiatric
## 1262 (573) 218-6792               Psychiatric
## 1263 (919) 690-3000      Acute Care Hospitals
## 1264 (972) 524-6452               Psychiatric
## 1265 (361) 575-7441      Acute Care Hospitals
## 1266 (281) 351-1623      Acute Care Hospitals
## 1267 (914) 763-8151               Psychiatric
## 1268 (859) 313-1000      Acute Care Hospitals
## 1269 (530) 233-5131 Critical Access Hospitals
## 1270 (405) 878-8110      Acute Care Hospitals
## 1271 (706) 721-6569      Acute Care Hospitals
## 1272 (712) 662-7105 Critical Access Hospitals
## 1273 (315) 787-4175      Acute Care Hospitals
## 1274 (256) 329-7100      Acute Care Hospitals
## 1275 (719) 584-4000      Acute Care Hospitals
## 1276 (641) 622-2720 Critical Access Hospitals
## 1277 (570) 253-8100      Acute Care Hospitals
## 1278 (610) 566-9400      Acute Care Hospitals
## 1279 (660) 359-5621 Critical Access Hospitals
## 1280 (718) 240-5966      Acute Care Hospitals
## 1281 (606) 218-3500      Acute Care Hospitals
## 1282 (864) 573-3000      Acute Care Hospitals
## 1283 (307) 322-3636 Critical Access Hospitals
## 1284 (814) 723-3300      Acute Care Hospitals
## 1285 (715) 258-1000 Critical Access Hospitals
## 1286 (918) 494-2200      Acute Care Hospitals
## 1287 (507) 287-2761      Acute Care Hospitals
## 1288 (605) 874-2141 Critical Access Hospitals
## 1289 (815) 433-3100      Acute Care Hospitals
## 1290 (530) 258-2121 Critical Access Hospitals
## 1291 (501) 202-3000      Acute Care Hospitals
## 1292 (254) 526-7523      Acute Care Hospitals
## 1293 (618) 684-3156 Critical Access Hospitals
## 1294 (504) 393-4223               Psychiatric
## 1295 (814) 684-1255 Critical Access Hospitals
## 1296 (443) 777-7850      Acute Care Hospitals
## 1297 (317) 415-9000      Acute Care Hospitals
## 1298 (512) 528-7000      Acute Care Hospitals
## 1299 (936) 348-2631 Critical Access Hospitals
## 1300 (323) 442-8656      Acute Care Hospitals
## 1301 (574) 533-1234               Psychiatric
## 1302 (631) 444-4000      Acute Care Hospitals
## 1303 (218) 834-7300 Critical Access Hospitals
## 1304 (951) 251-6000      Acute Care Hospitals
## 1305 (816) 781-7200      Acute Care Hospitals
## 1306 (901) 377-4700               Psychiatric
## 1307 (956) 389-1100      Acute Care Hospitals
## 1308 (253) 944-8100      Acute Care Hospitals
## 1309 (712) 243-3250 Critical Access Hospitals
## 1310 (832) 355-1000      Acute Care Hospitals
## 1311 (919) 956-9300      Acute Care Hospitals
## 1312 (609) 441-8020      Acute Care Hospitals
## 1313 (802) 334-7331 Critical Access Hospitals
## 1314 (920) 929-2300      Acute Care Hospitals
## 1315 (814) 938-1800      Acute Care Hospitals
## 1316 (207) 369-1000 Critical Access Hospitals
## 1317 (408) 885-5000      Acute Care Hospitals
## 1318 (706) 282-4250      Acute Care Hospitals
## 1319 (215) 707-2000      Acute Care Hospitals
## 1320 (614) 544-1000      Acute Care Hospitals
## 1321 (903) 927-6712      Acute Care Hospitals
## 1322 (208) 205-0050      Acute Care Hospitals
## 1323 (978) 249-3511 Critical Access Hospitals
## 1324 (970) 476-2451      Acute Care Hospitals
## 1325 (704) 355-2000      Acute Care Hospitals
## 1326 (978) 683-4000      Acute Care Hospitals
## 1327 (580) 248-5780               Psychiatric
## 1328 (216) 861-6200      Acute Care Hospitals
## 1329 (406) 657-7000      Acute Care Hospitals
## 1330 (419) 968-2950               Psychiatric
## 1331 (505) 727-2001      Acute Care Hospitals
## 1332 (214) 324-6100      Acute Care Hospitals
## 1333 (618) 524-2176 Critical Access Hospitals
## 1334 (785) 632-2144 Critical Access Hospitals
## 1335 (212) 420-2000      Acute Care Hospitals
## 1336 (937) 393-6100 Critical Access Hospitals
## 1337 (816) 404-1000      Acute Care Hospitals
## 1338 (304) 466-1000 Critical Access Hospitals
## 1339 (575) 538-4100      Acute Care Hospitals
## 1340 (913) 220-2866      Acute Care Hospitals
## 1341 (614) 838-7910      Acute Care Hospitals
## 1342 (415) 444-2000      Acute Care Hospitals
## 1343 (215) 426-8100      Acute Care Hospitals
## 1344 (314) 432-3600                 Childrens
## 1345 (856) 641-8000      Acute Care Hospitals
## 1346 (813) 757-1200      Acute Care Hospitals
## 1347 (907) 852-4611 Critical Access Hospitals
## 1348 (419) 678-4843      Acute Care Hospitals
## 1349 (620) 376-4221 Critical Access Hospitals
## 1350 (850) 431-5380      Acute Care Hospitals
## 1351 (740) 593-5551      Acute Care Hospitals
## 1352 (309) 454-1400      Acute Care Hospitals
## 1353 (218) 935-2511 Critical Access Hospitals
## 1354 (253) 403-1400                 Childrens
## 1355 (602) 331-5862      Acute Care Hospitals
## 1356 (813) 333-0000               Psychiatric
## 1357 (920) 235-4910               Psychiatric
## 1358 (435) 658-6700      Acute Care Hospitals
## 1359 (256) 927-5531      Acute Care Hospitals
## 1360 (701) 456-4000 Critical Access Hospitals
## 1361 (812) 379-4441      Acute Care Hospitals
## 1362 (845) 561-4400      Acute Care Hospitals
## 1363 (951) 353-2000      Acute Care Hospitals
## 1364 (706) 509-6900      Acute Care Hospitals
## 1365 (940) 989-3551 Critical Access Hospitals
## 1366 (806) 637-3551      Acute Care Hospitals
## 1367 (585) 335-6001      Acute Care Hospitals
## 1368 (801) 507-7000      Acute Care Hospitals
## 1369 (541) 396-3101 Critical Access Hospitals
## 1370 (724) 258-1000      Acute Care Hospitals
## 1371 (315) 823-5261 Critical Access Hospitals
## 1372 (601) 358-9400      Acute Care Hospitals
## 1373 (305) 743-5533 Critical Access Hospitals
## 1374 (423) 302-1120      Acute Care Hospitals
## 1375 (541) 222-7300      Acute Care Hospitals
## 1376 (707) 462-3111      Acute Care Hospitals
## 1377 (661) 399-4461      Acute Care Hospitals
## 1378 (712) 324-5041 Critical Access Hospitals
## 1379 (620) 725-3115 Critical Access Hospitals
## 1380 (405) 602-8100      Acute Care Hospitals
## 1381 (806) 675-2382 Critical Access Hospitals
## 1382 (707) 252-4411      Acute Care Hospitals
## 1383 (787) 652-9200      Acute Care Hospitals
## 1384 (515) 532-2811 Critical Access Hospitals
## 1385 (301) 292-7000      Acute Care Hospitals
## 1386 (435) 843-3700      Acute Care Hospitals
## 1387 (254) 751-4000      Acute Care Hospitals
## 1388 (410) 543-7111      Acute Care Hospitals
## 1389 (989) 894-3000      Acute Care Hospitals
## 1390 (601) 426-4000      Acute Care Hospitals
## 1391 (785) 527-2254 Critical Access Hospitals
## 1392 (617) 726-2000      Acute Care Hospitals
## 1393 (609) 835-2900      Acute Care Hospitals
## 1394 (417) 256-9111      Acute Care Hospitals
## 1395 (319) 372-6530      Acute Care Hospitals
## 1396 (714) 633-0011      Acute Care Hospitals
## 1397 (707) 525-5300      Acute Care Hospitals
## 1398 (813) 870-4398      Acute Care Hospitals
## 1399 (970) 824-9411 Critical Access Hospitals
## 1400 (580) 327-2800 Critical Access Hospitals
## 1401 (740) 439-8000      Acute Care Hospitals
## 1402 (541) 686-7300      Acute Care Hospitals
## 1403 (903) 962-5200      Acute Care Hospitals
## 1404 (941) 766-4122      Acute Care Hospitals
## 1405 (432) 837-3447 Critical Access Hospitals
## 1406 (601) 469-4151 Critical Access Hospitals
## 1407 (814) 788-8000 Critical Access Hospitals
## 1408 (909) 883-8711      Acute Care Hospitals
## 1409 (903) 416-4000      Acute Care Hospitals
## 1410 (715) 685-5500 Critical Access Hospitals
## 1411 (770) 400-2300      Acute Care Hospitals
## 1412 (859) 212-5220      Acute Care Hospitals
## 1413 (918) 786-2243      Acute Care Hospitals
## 1414 (864) 301-2000      Acute Care Hospitals
## 1415 (626) 963-8411      Acute Care Hospitals
## 1416 (360) 496-5112 Critical Access Hospitals
## 1417 (602) 249-0212      Acute Care Hospitals
## 1418 (952) 892-2101      Acute Care Hospitals
## 1419 (603) 788-4911 Critical Access Hospitals
## 1420 (618) 285-6634 Critical Access Hospitals
## 1421 (423) 727-1110 Critical Access Hospitals
## 1422 (570) 645-2131      Acute Care Hospitals
## 1423 (978) 922-3000      Acute Care Hospitals
## 1424 (419) 335-2015 Critical Access Hospitals
## 1425 (414) 649-6000      Acute Care Hospitals
## 1426 (701) 776-5261 Critical Access Hospitals
## 1427 (308) 762-6660 Critical Access Hospitals
## 1428 (818) 904-3100      Acute Care Hospitals
## 1429 (970) 298-1950      Acute Care Hospitals
## 1430 (850) 951-4500      Acute Care Hospitals
## 1431 (812) 897-4800 Critical Access Hospitals
## 1432 (205) 921-6200      Acute Care Hospitals
## 1433 (918) 650-1511      Acute Care Hospitals
## 1434 (330) 682-3010 Critical Access Hospitals
## 1435 (651) 241-8810      Acute Care Hospitals
## 1436 (806) 256-2114 Critical Access Hospitals
## 1437 (828) 524-8411 Critical Access Hospitals
## 1438 (219) 879-8511      Acute Care Hospitals
## 1439 (718) 613-4000      Acute Care Hospitals
## 1440 (562) 863-7011               Psychiatric
## 1441 (919) 250-7000               Psychiatric
## 1442 (803) 313-3700               Psychiatric
## 1443 (845) 348-2000      Acute Care Hospitals
## 1444 (985) 730-6700      Acute Care Hospitals
## 1445 (845) 871-3391      Acute Care Hospitals
## 1446 (518) 587-3222      Acute Care Hospitals
## 1447 (407) 846-2266      Acute Care Hospitals
## 1448 (715) 307-6000 Critical Access Hospitals
## 1449 (785) 889-4272 Critical Access Hospitals
## 1450 (860) 456-9116      Acute Care Hospitals
## 1451 (419) 526-8000      Acute Care Hospitals
## 1452 (205) 838-3122      Acute Care Hospitals
## 1453 (325) 949-9511      Acute Care Hospitals
## 1454 (847) 872-4561      Acute Care Hospitals
## 1455 (559) 624-2000      Acute Care Hospitals
## 1456 (308) 282-0401 Critical Access Hospitals
## 1457 (812) 450-5000      Acute Care Hospitals
## 1458 (512) 544-5253               Psychiatric
## 1459 (936) 275-3446 Critical Access Hospitals
## 1460 (325) 387-2521 Critical Access Hospitals
## 1461 (858) 576-1700                 Childrens
## 1462 (715) 597-3121 Critical Access Hospitals
## 1463 (806) 998-4533 Critical Access Hospitals
## 1464 (281) 359-7500      Acute Care Hospitals
## 1465 (843) 355-8888 Critical Access Hospitals
## 1466 (952) 924-5100      Acute Care Hospitals
## 1467 (606) 743-3186 Critical Access Hospitals
## 1468 (561) 965-7300      Acute Care Hospitals
## 1469 (770) 991-8500               Psychiatric
## 1470 (865) 983-7211      Acute Care Hospitals
## 1471 (251) 471-7110      Acute Care Hospitals
## 1472 (724) 752-0081      Acute Care Hospitals
## 1473 (406) 632-4351 Critical Access Hospitals
## 1474 (315) 482-2511 Critical Access Hospitals
## 1475 (480) 603-9000      Acute Care Hospitals
## 1476 (605) 668-8000      Acute Care Hospitals
## 1477 (918) 542-6611      Acute Care Hospitals
## 1478 (787) 754-0909      Acute Care Hospitals
## 1479 (479) 314-6000      Acute Care Hospitals
## 1480 (507) 275-3134 Critical Access Hospitals
## 1481 (252) 209-3000      Acute Care Hospitals
## 1482 (217) 762-2115 Critical Access Hospitals
## 1483 (321) 268-6111      Acute Care Hospitals
## 1484 (937) 384-8776      Acute Care Hospitals
## 1485 (401) 432-1000               Psychiatric
## 1486 (440) 953-9600      Acute Care Hospitals
## 1487 (507) 831-2400 Critical Access Hospitals
## 1488 (310) 823-8911      Acute Care Hospitals
## 1489 (856) 489-4520                 Childrens
## 1490 (716) 373-2600      Acute Care Hospitals
## 1491 (740) 374-1400      Acute Care Hospitals
## 1492 (405) 307-1050      Acute Care Hospitals
## 1493 (509) 843-1591 Critical Access Hospitals
## 1494 (330) 948-1222 Critical Access Hospitals
## 1495 (512) 324-1000      Acute Care Hospitals
## 1496 (559) 448-4500      Acute Care Hospitals
## 1497 (601) 249-5500      Acute Care Hospitals
## 1498 (573) 592-4100               Psychiatric
## 1499 (312) 572-2000      Acute Care Hospitals
## 1500 (931) 393-3000      Acute Care Hospitals
## 1501 (304) 327-1100      Acute Care Hospitals
## 1502 (562) 799-3220      Acute Care Hospitals
## 1503 (740) 356-5000      Acute Care Hospitals
## 1504 (619) 294-8111      Acute Care Hospitals
## 1505 (386) 943-4772      Acute Care Hospitals
## 1506 (252) 847-4100      Acute Care Hospitals
## 1507 (205) 939-7000      Acute Care Hospitals
## 1508 (323) 783-4011      Acute Care Hospitals
## 1509 (606) 789-3511      Acute Care Hospitals
## 1510 (205) 367-8111      Acute Care Hospitals
## 1511 (618) 439-3161 Critical Access Hospitals
## 1512 (402) 873-3321 Critical Access Hospitals
## 1513 (417) 358-8121 Critical Access Hospitals
## 1514 (352) 315-7800               Psychiatric
## 1515 (505) 724-8386      Acute Care Hospitals
## 1516 (317) 773-0760      Acute Care Hospitals
## 1517 (980) 212-2000      Acute Care Hospitals
## 1518 (251) 937-5521      Acute Care Hospitals
## 1519 (970) 641-1456 Critical Access Hospitals
## 1520 (912) 367-9841      Acute Care Hospitals
## 1521 (641) 394-4121 Critical Access Hospitals
## 1522 (727) 384-1414      Acute Care Hospitals
## 1523 (319) 462-6131 Critical Access Hospitals
## 1524 (715) 831-8130      Acute Care Hospitals
## 1525 (419) 946-5015 Critical Access Hospitals
## 1526 (419) 893-5900      Acute Care Hospitals
## 1527 (412) 441-4884                 Childrens
## 1528 (706) 882-1411      Acute Care Hospitals
## 1529 (270) 651-4159      Acute Care Hospitals
## 1530 (772) 461-4000      Acute Care Hospitals
## 1531 (575) 257-8200 Critical Access Hospitals
## 1532 (662) 377-6608      Acute Care Hospitals
## 1533 (801) 479-2111      Acute Care Hospitals
## 1534 (541) 276-5121 Critical Access Hospitals
## 1535 (208) 359-6900      Acute Care Hospitals
## 1536 (337) 363-5684      Acute Care Hospitals
## 1537 (480) 728-8000      Acute Care Hospitals
## 1538 (973) 972-5658      Acute Care Hospitals
## 1539 (419) 783-6955 Critical Access Hospitals
## 1540 (304) 831-1101      Acute Care Hospitals
## 1541 (540) 951-1111      Acute Care Hospitals
## 1542 (708) 747-4000      Acute Care Hospitals
## 1543 (443) 643-3303      Acute Care Hospitals
## 1544 (478) 274-3100      Acute Care Hospitals
## 1545 (925) 275-9200      Acute Care Hospitals
## 1546 (503) 472-6131      Acute Care Hospitals
## 1547 (682) 703-5600      Acute Care Hospitals
## 1548 (701) 664-3305 Critical Access Hospitals
## 1549 (209) 667-4200      Acute Care Hospitals
## 1550 (580) 889-3333 Critical Access Hospitals
## 1551 (919) 764-2000               Psychiatric
## 1552 (508) 481-5000      Acute Care Hospitals
## 1553 (925) 939-3000      Acute Care Hospitals
## 1554 (406) 557-2500 Critical Access Hospitals
## 1555 (803) 935-7143               Psychiatric
## 1556 (602) 263-1200      Acute Care Hospitals
## 1557 (410) 521-2200      Acute Care Hospitals
## 1558 (608) 723-2143 Critical Access Hospitals
## 1559 (551) 996-2000      Acute Care Hospitals
## 1560 (205) 487-7736      Acute Care Hospitals
## 1561 (225) 522-4076               Psychiatric
## 1562 (281) 516-0911      Acute Care Hospitals
## 1563 (970) 624-2500      Acute Care Hospitals
## 1564 (508) 473-1190      Acute Care Hospitals
## 1565 (270) 259-9400      Acute Care Hospitals
## 1566 (715) 356-8000      Acute Care Hospitals
## 1567 (336) 599-2121      Acute Care Hospitals
## 1568 (505) 782-4431      Acute Care Hospitals
## 1569 (207) 474-5121 Critical Access Hospitals
## 1570 (516) 632-3000      Acute Care Hospitals
## 1571 (307) 877-4401 Critical Access Hospitals
## 1572 (701) 774-7400 Critical Access Hospitals
## 1573 (304) 347-6500      Acute Care Hospitals
## 1574 (785) 675-3281 Critical Access Hospitals
## 1575 (478) 922-4281      Acute Care Hospitals
## 1576 (307) 633-7600      Acute Care Hospitals
## 1577 (207) 454-7521 Critical Access Hospitals
## 1578 (903) 676-1000      Acute Care Hospitals
## 1579 (847) 742-9800      Acute Care Hospitals
## 1580 (231) 843-2591      Acute Care Hospitals
## 1581 (806) 296-9191               Psychiatric
## 1582 (580) 355-8620      Acute Care Hospitals
## 1583 (785) 336-6181 Critical Access Hospitals
## 1584 (209) 825-3700      Acute Care Hospitals
## 1585 (540) 829-4100      Acute Care Hospitals
## 1586 (712) 336-1230      Acute Care Hospitals
## 1587 (309) 343-8131      Acute Care Hospitals
## 1588 (712) 265-2500 Critical Access Hospitals
## 1589 (216) 636-7727      Acute Care Hospitals
## 1590 (337) 494-3000      Acute Care Hospitals
## 1591 (812) 232-0021      Acute Care Hospitals
## 1592 (580) 772-5551 Critical Access Hospitals
## 1593 (217) 788-3000      Acute Care Hospitals
## 1594 (903) 614-1000      Acute Care Hospitals
## 1595 (605) 925-4000 Critical Access Hospitals
## 1596 (978) 632-3420      Acute Care Hospitals
## 1597 (330) 263-8100      Acute Care Hospitals
## 1598 (701) 256-6100 Critical Access Hospitals
## 1599 (213) 413-3000      Acute Care Hospitals
## 1600 (718) 616-3000      Acute Care Hospitals
## 1601 (850) 769-8341      Acute Care Hospitals
## 1602 (215) 643-7800               Psychiatric
## 1603 (352) 796-5111      Acute Care Hospitals
## 1604 (330) 884-1003      Acute Care Hospitals
## 1605 (504) 899-9511                 Childrens
## 1606 (423) 431-1941      Acute Care Hospitals
## 1607 (970) 800-5550               Psychiatric
## 1608 (601) 288-7000      Acute Care Hospitals
## 1609 (972) 394-2255      Acute Care Hospitals
## 1610 (203) 679-5900      Acute Care Hospitals
## 1611 (479) 968-2841      Acute Care Hospitals
## 1612 (641) 428-7000      Acute Care Hospitals
## 1613 (303) 673-9990               Psychiatric
## 1614 (706) 485-2711 Critical Access Hospitals
## 1615 (404) 265-4000      Acute Care Hospitals
## 1616 (760) 379-2681 Critical Access Hospitals
## 1617 (936) 546-3890      Acute Care Hospitals
## 1618 (607) 724-1391               Psychiatric
## 1619 (337) 436-2511      Acute Care Hospitals
## 1620 (405) 936-1500      Acute Care Hospitals
## 1621 (601) 984-4100      Acute Care Hospitals
## 1622 (770) 387-8182      Acute Care Hospitals
## 1623 (812) 663-4331 Critical Access Hospitals
## 1624 (281) 453-7916      Acute Care Hospitals
## 1625 (815) 842-2828      Acute Care Hospitals
## 1626 (843) 431-2000      Acute Care Hospitals
## 1627 (208) 549-0370 Critical Access Hospitals
## 1628 (817) 481-1588      Acute Care Hospitals
## 1629 (402) 426-1502 Critical Access Hospitals
## 1630 (214) 879-3758      Acute Care Hospitals
## 1631 (440) 816-6701      Acute Care Hospitals
## 1632 (269) 983-8300      Acute Care Hospitals
## 1633 (209) 223-7500      Acute Care Hospitals
## 1634 (918) 376-8000      Acute Care Hospitals
## 1635 (513) 870-7197      Acute Care Hospitals
## 1636 (480) 917-9301               Psychiatric
## 1637 (507) 255-1991      Acute Care Hospitals
## 1638 (352) 726-1551      Acute Care Hospitals
## 1639 (570) 271-4500               Psychiatric
## 1640 (909) 887-6333      Acute Care Hospitals
## 1641 (605) 432-4538 Critical Access Hospitals
## 1642 (218) 283-4481 Critical Access Hospitals
## 1643 (408) 851-4850               Psychiatric
## 1644 (618) 842-2611 Critical Access Hospitals
## 1645 (231) 258-7500 Critical Access Hospitals
## 1646 (218) 786-2806      Acute Care Hospitals
## 1647 (325) 625-2135 Critical Access Hospitals
## 1648 (208) 382-4242 Critical Access Hospitals
## 1649 (320) 532-3154 Critical Access Hospitals
## 1650 (843) 724-2800      Acute Care Hospitals
## 1651 (402) 335-3361 Critical Access Hospitals
## 1652 (615) 342-1000      Acute Care Hospitals
## 1653 (662) 538-7631      Acute Care Hospitals
## 1654 (712) 563-2611 Critical Access Hospitals
## 1655 (641) 472-4111 Critical Access Hospitals
## 1656 (828) 883-5302 Critical Access Hospitals
## 1657 (435) 387-2411 Critical Access Hospitals
## 1658 (419) 468-4841 Critical Access Hospitals
## 1659 (270) 444-2444      Acute Care Hospitals
## 1660 (253) 697-2102      Acute Care Hospitals
## 1661 (719) 274-5121 Critical Access Hospitals
## 1662 (907) 235-8101 Critical Access Hospitals
## 1663 (281) 332-2511      Acute Care Hospitals
## 1664 (352) 265-8000      Acute Care Hospitals
## 1665 (281) 637-7000      Acute Care Hospitals
## 1666 (518) 525-1550      Acute Care Hospitals
## 1667 (714) 456-6112      Acute Care Hospitals
## 1668 (509) 786-2222 Critical Access Hospitals
## 1669 (215) 590-3745                 Childrens
## 1670 (609) 267-7000               Psychiatric
## 1671 (910) 572-1301 Critical Access Hospitals
## 1672 (916) 489-3336               Psychiatric
## 1673 (843) 716-7000      Acute Care Hospitals
## 1674 (801) 807-7001      Acute Care Hospitals
## 1675 (718) 604-5789      Acute Care Hospitals
## 1676 (727) 834-4900      Acute Care Hospitals
## 1677 (526) 904-5000      Acute Care Hospitals
## 1678 (410) 955-9540      Acute Care Hospitals
## 1679 (602) 251-8535               Psychiatric
## 1680 (573) 348-8000      Acute Care Hospitals
## 1681 (928) 348-4000      Acute Care Hospitals
## 1682 (270) 726-4011      Acute Care Hospitals
## 1683 (314) 872-6400                 Childrens
## 1684 (252) 641-7700      Acute Care Hospitals
## 1685 (504) 592-6600      Acute Care Hospitals
## 1686 (641) 792-1273      Acute Care Hospitals
## 1687 (901) 369-8100      Acute Care Hospitals
## 1688 (315) 376-5200 Critical Access Hospitals
## 1689 (305) 585-1111      Acute Care Hospitals
## 1690 (918) 358-2501 Critical Access Hospitals
## 1691 (503) 717-7000 Critical Access Hospitals
## 1692 (662) 258-6221      Acute Care Hospitals
## 1693 (432) 639-2575 Critical Access Hospitals
## 1694 (256) 356-9532 Critical Access Hospitals
## 1695 (918) 582-2131               Psychiatric
## 1696 (526) 698-0811      Acute Care Hospitals
## 1697 (740) 845-7000      Acute Care Hospitals
## 1698 (541) 426-3111 Critical Access Hospitals
## 1699 (413) 534-2500      Acute Care Hospitals
## 1700 (903) 763-4500 Critical Access Hospitals
## 1701 (504) 903-3000      Acute Care Hospitals
## 1702 (563) 875-7101 Critical Access Hospitals
## 1703 (765) 776-8000      Acute Care Hospitals
## 1704 (812) 231-8285               Psychiatric
## 1705 (225) 663-2881               Psychiatric
## 1706 (626) 573-2222      Acute Care Hospitals
## 1707 (812) 522-2349      Acute Care Hospitals
## 1708 (207) 695-5200 Critical Access Hospitals
## 1709 (217) 324-2191 Critical Access Hospitals
## 1710 (402) 461-5108      Acute Care Hospitals
## 1711 (765) 660-6000      Acute Care Hospitals
## 1712 (337) 470-2100      Acute Care Hospitals
## 1713 (601) 483-6211      Acute Care Hospitals
## 1714 (919) 800-4400               Psychiatric
## 1715 (973) 754-2010      Acute Care Hospitals
## 1716 (203) 732-7500      Acute Care Hospitals
## 1717 (330) 674-1015      Acute Care Hospitals
## 1718 (270) 351-9444               Psychiatric
## 1719 (918) 744-3131      Acute Care Hospitals
## 1720 (606) 666-6000      Acute Care Hospitals
## 1721 (660) 542-1695 Critical Access Hospitals
## 1722 (815) 539-7461 Critical Access Hospitals
## 1723 (806) 788-4100      Acute Care Hospitals
## 1724 (660) 646-1480 Critical Access Hospitals
## 1725 (970) 858-9871 Critical Access Hospitals
## 1726 (662) 624-3401      Acute Care Hospitals
## 1727 (218) 335-3200 Critical Access Hospitals
## 1728 (623) 344-4400               Psychiatric
## 1729 (863) 763-2151      Acute Care Hospitals
## 1730 (406) 488-2100 Critical Access Hospitals
## 1731 (570) 286-3333      Acute Care Hospitals
## 1732 (716) 514-5700      Acute Care Hospitals
## 1733 (205) 971-1000      Acute Care Hospitals
## 1734 (336) 751-8100      Acute Care Hospitals
## 1735 (941) 475-6571      Acute Care Hospitals
## 1736 (434) 799-6220               Psychiatric
## 1737 (970) 878-5047 Critical Access Hospitals
## 1738 (610) 447-2000      Acute Care Hospitals
## 1739 (509) 775-3333 Critical Access Hospitals
## 1740 (323) 268-5000      Acute Care Hospitals
## 1741 (404) 785-6101                 Childrens
## 1742 (843) 782-2000      Acute Care Hospitals
## 1743 (480) 394-4030      Acute Care Hospitals
## 1744 (651) 430-5330      Acute Care Hospitals
## 1745 (305) 434-3000 Critical Access Hospitals
## 1746 (318) 213-3800      Acute Care Hospitals
## 1747 (580) 336-3541      Acute Care Hospitals
## 1748 (606) 387-6421      Acute Care Hospitals
## 1749 (307) 789-3464               Psychiatric
## 1750 (573) 781-3341 Critical Access Hospitals
## 1751 (914) 664-8000      Acute Care Hospitals
## 1752 (802) 442-6361      Acute Care Hospitals
## 1753 (304) 442-5151 Critical Access Hospitals
## 1754 (432) 268-7222               Psychiatric
## 1755 (715) 423-6060      Acute Care Hospitals
## 1756 (727) 825-1100      Acute Care Hospitals
## 1757 (620) 223-7057      Acute Care Hospitals
## 1758 (847) 316-4000      Acute Care Hospitals
## 1759 (207) 794-3321 Critical Access Hospitals
## 1760 (713) 378-3000      Acute Care Hospitals
## 1761 (718) 670-5000      Acute Care Hospitals
## 1762 (334) 793-8701      Acute Care Hospitals
## 1763 (209) 966-3631 Critical Access Hospitals
## 1764 (662) 285-4400 Critical Access Hospitals
## 1765 (313) 745-3104      Acute Care Hospitals
## 1766 (202) 476-5000                 Childrens
## 1767 (508) 771-1800      Acute Care Hospitals
## 1768 (440) 775-1211 Critical Access Hospitals
## 1769 (575) 472-3417      Acute Care Hospitals
## 1770 (724) 628-1500      Acute Care Hospitals
## 1771 (435) 644-5811 Critical Access Hospitals
## 1772 (218) 843-3612 Critical Access Hospitals
## 1773 (620) 375-2233 Critical Access Hospitals
## 1774 (321) 752-1200      Acute Care Hospitals
## 1775 (334) 688-7271      Acute Care Hospitals
## 1776 (781) 744-5100      Acute Care Hospitals
## 1777 (817) 465-3241      Acute Care Hospitals
## 1778 (215) 487-4000               Psychiatric
## 1779 (941) 782-4299               Psychiatric
## 1780 (315) 848-3351 Critical Access Hospitals
## 1781 (660) 465-8511 Critical Access Hospitals
## 1782 (661) 327-1792      Acute Care Hospitals
## 1783 (517) 975-6000      Acute Care Hospitals
## 1784 (919) 684-8111      Acute Care Hospitals
## 1785 (785) 332-2104 Critical Access Hospitals
## 1786 (336) 246-7101 Critical Access Hospitals
## 1787 (701) 584-2792 Critical Access Hospitals
## 1788 (262) 329-1000      Acute Care Hospitals
## 1789 (520) 384-3541 Critical Access Hospitals
## 1790 (304) 526-1234      Acute Care Hospitals
## 1791 (715) 393-3000      Acute Care Hospitals
## 1792 (785) 754-3341 Critical Access Hospitals
## 1793 (912) 486-1500      Acute Care Hospitals
## 1794 (480) 882-4004      Acute Care Hospitals
## 1795 (580) 795-3384 Critical Access Hospitals
## 1796 (606) 679-7441      Acute Care Hospitals
## 1797 (573) 471-1600      Acute Care Hospitals
## 1798 (859) 257-2278      Acute Care Hospitals
## 1799 (914) 734-3611      Acute Care Hospitals
## 1800 (866) 460-4776      Acute Care Hospitals
## 1801 (414) 961-6800      Acute Care Hospitals
## 1802 (630) 275-5900      Acute Care Hospitals
## 1803 (318) 927-2024      Acute Care Hospitals
## 1804 (219) 757-6100      Acute Care Hospitals
## 1805 (405) 848-1918      Acute Care Hospitals
## 1806 (520) 562-3321 Critical Access Hospitals
## 1807 (208) 782-2900      Acute Care Hospitals
## 1808 (402) 947-2541 Critical Access Hospitals
## 1809 (928) 475-1200      Acute Care Hospitals
## 1810 (562) 494-0600      Acute Care Hospitals
## 1811 (318) 259-4435 Critical Access Hospitals
## 1812 (317) 621-5335      Acute Care Hospitals
## 1813 (620) 345-6391      Acute Care Hospitals
## 1814 (512) 819-9400               Psychiatric
## 1815 (813) 932-2222      Acute Care Hospitals
## 1816 (816) 356-5688               Psychiatric
## 1817 (909) 580-1000      Acute Care Hospitals
## 1818 (407) 370-0111               Psychiatric
## 1819 (337) 392-5088      Acute Care Hospitals
## 1820 (307) 688-1551      Acute Care Hospitals
## 1821 (401) 444-4000      Acute Care Hospitals
## 1822 (217) 784-4251 Critical Access Hospitals
## 1823 (940) 322-3171               Psychiatric
## 1824 (318) 487-1122      Acute Care Hospitals
## 1825 (850) 278-3600      Acute Care Hospitals
## 1826 (701) 742-3291 Critical Access Hospitals
## 1827 (641) 437-4111 Critical Access Hospitals
## 1828 (509) 575-5102      Acute Care Hospitals
## 1829 (573) 486-2191 Critical Access Hospitals
## 1830 (401) 737-7010      Acute Care Hospitals
## 1831 (916) 733-8999      Acute Care Hospitals
## 1832 (304) 367-7100      Acute Care Hospitals
## 1833 (906) 635-4460      Acute Care Hospitals
## 1834 (320) 864-3121 Critical Access Hospitals
## 1835 (670) 234-8950      Acute Care Hospitals
## 1836 (317) 736-3300      Acute Care Hospitals
## 1837 (401) 456-3000      Acute Care Hospitals
## 1838 (256) 825-7821      Acute Care Hospitals
## 1839 (785) 738-2266 Critical Access Hospitals
## 1840 (814) 226-9545               Psychiatric
## 1841 (319) 356-1616      Acute Care Hospitals
## 1842 (269) 782-8681 Critical Access Hospitals
## 1843 (325) 670-2000      Acute Care Hospitals
## 1844 (770) 748-2500 Critical Access Hospitals
## 1845 (320) 269-8877 Critical Access Hospitals
## 1846 (620) 431-4000 Critical Access Hospitals
## 1847 (308) 697-3329 Critical Access Hospitals
## 1848 (305) 294-5531      Acute Care Hospitals
## 1849 (504) 210-0460               Psychiatric
## 1850 (214) 231-2273      Acute Care Hospitals
## 1851 (337) 332-2178 Critical Access Hospitals
## 1852 (270) 988-2299 Critical Access Hospitals
## 1853 (708) 799-8000      Acute Care Hospitals
## 1854 (478) 987-3600      Acute Care Hospitals
## 1855 (406) 228-3500 Critical Access Hospitals
## 1856 (787) 782-9999      Acute Care Hospitals
## 1857 (816) 380-5888 Critical Access Hospitals
## 1858 (336) 625-5151      Acute Care Hospitals
## 1859 (706) 792-7006               Psychiatric
## 1860 (310) 319-4000      Acute Care Hospitals
## 1861 (985) 510-6200      Acute Care Hospitals
## 1862 (903) 657-7541      Acute Care Hospitals
## 1863 (580) 531-4700      Acute Care Hospitals
## 1864 (727) 588-5200      Acute Care Hospitals
## 1865 (309) 344-3161      Acute Care Hospitals
## 1866 (402) 723-4512 Critical Access Hospitals
## 1867 (256) 341-2000      Acute Care Hospitals
## 1868 (863) 773-0216 Critical Access Hospitals
## 1869 (570) 759-5020      Acute Care Hospitals
## 1870 (304) 369-1230 Critical Access Hospitals
## 1871 (212) 960-9000      Acute Care Hospitals
## 1872 (219) 865-2141      Acute Care Hospitals
## 1873 (800) 251-3627      Acute Care Hospitals
## 1874 (706) 655-9351 Critical Access Hospitals
## 1875 (910) 892-7161      Acute Care Hospitals
## 1876 (507) 283-2321 Critical Access Hospitals
## 1877 (402) 352-2441 Critical Access Hospitals
## 1878 (860) 442-0711      Acute Care Hospitals
## 1879 (402) 471-4444               Psychiatric
## 1880 (580) 233-6100      Acute Care Hospitals
## 1881 (478) 633-1000      Acute Care Hospitals
## 1882 (620) 357-8361 Critical Access Hospitals
## 1883 (603) 444-9000 Critical Access Hospitals
## 1884 (334) 244-8330      Acute Care Hospitals
## 1885 (954) 776-8500      Acute Care Hospitals
## 1886 (218) 732-3311 Critical Access Hospitals
## 1887 (505) 287-5300 Critical Access Hospitals
## 1888 (509) 689-2517 Critical Access Hospitals
## 1889 (740) 393-9000      Acute Care Hospitals
## 1890 (715) 817-7000 Critical Access Hospitals
## 1891 (805) 652-5011      Acute Care Hospitals
## 1892 (715) 468-7833 Critical Access Hospitals
## 1893 (540) 932-4000      Acute Care Hospitals
## 1894 (706) 745-2111      Acute Care Hospitals
## 1895 (662) 772-4000      Acute Care Hospitals
## 1896 (913) 755-7100               Psychiatric
## 1897 (508) 799-9000      Acute Care Hospitals
## 1898 (501) 776-6000      Acute Care Hospitals
## 1899 (785) 798-2291 Critical Access Hospitals
## 1900 (301) 896-2576      Acute Care Hospitals
## 1901 (435) 207-4500      Acute Care Hospitals
## 1902 (707) 456-3031 Critical Access Hospitals
## 1903 (309) 944-6431 Critical Access Hospitals
## 1904 (928) 445-2700      Acute Care Hospitals
## 1905 (812) 858-7200               Psychiatric
## 1906 (405) 375-3141 Critical Access Hospitals
## 1907 (314) 344-6000      Acute Care Hospitals
## 1908 (928) 855-8185      Acute Care Hospitals
## 1909 (410) 778-7668      Acute Care Hospitals
## 1910 (716) 859-8620      Acute Care Hospitals
## 1911 (970) 848-5405 Critical Access Hospitals
## 1912 (276) 988-8700      Acute Care Hospitals
## 1913 (815) 288-5531      Acute Care Hospitals
## 1914 (979) 764-5151      Acute Care Hospitals
## 1915 (618) 332-3060      Acute Care Hospitals
## 1916 (512) 556-3682 Critical Access Hospitals
## 1917 (989) 269-9521      Acute Care Hospitals
## 1918 (631) 548-6000      Acute Care Hospitals
## 1919 (970) 474-3323 Critical Access Hospitals
## 1920 (307) 237-7444               Psychiatric
## 1921 (323) 583-1931      Acute Care Hospitals
## 1922 (325) 365-2531 Critical Access Hospitals
## 1923 (530) 749-5700      Acute Care Hospitals
## 1924 (205) 939-9100                 Childrens
## 1925 (575) 522-8641      Acute Care Hospitals
## 1926 (413) 748-9000      Acute Care Hospitals
## 1927 (317) 338-7000      Acute Care Hospitals
## 1928 (217) 223-1200      Acute Care Hospitals
## 1929 (440) 743-3000      Acute Care Hospitals
## 1930 (817) 641-2551      Acute Care Hospitals
## 1931 (701) 234-2000      Acute Care Hospitals
## 1932 (319) 352-4120 Critical Access Hospitals
## 1933 (641) 754-5151      Acute Care Hospitals
## 1934 (706) 722-9011      Acute Care Hospitals
## 1935 (207) 532-2900 Critical Access Hospitals
## 1936 (404) 501-8040      Acute Care Hospitals
## 1937 (847) 249-3900      Acute Care Hospitals
## 1938 (620) 285-3162 Critical Access Hospitals
## 1939 (816) 632-2101      Acute Care Hospitals
## 1940 (513) 636-3333                 Childrens
## 1941 (318) 966-4686               Psychiatric
## 1942 (402) 768-6041 Critical Access Hospitals
## 1943 (509) 486-2151 Critical Access Hospitals
## 1944 (615) 769-2000      Acute Care Hospitals
## 1945 (256) 249-5000      Acute Care Hospitals
## 1946 (407) 498-3432      Acute Care Hospitals
## 1947 (765) 747-3111      Acute Care Hospitals
## 1948 (787) 758-6420      Acute Care Hospitals
## 1949 (650) 324-8500      Acute Care Hospitals
## 1950 (423) 339-4132      Acute Care Hospitals
## 1951 (787) 535-1001      Acute Care Hospitals
## 1952 (214) 294-6250      Acute Care Hospitals
## 1953 (619) 229-3172      Acute Care Hospitals
## 1954 (615) 396-4100      Acute Care Hospitals
## 1955 (517) 437-4451      Acute Care Hospitals
## 1956 (775) 289-3001 Critical Access Hospitals
## 1957 (330) 759-2700               Psychiatric
## 1958 (985) 873-4141      Acute Care Hospitals
## 1959 (617) 722-3000                 Childrens
## 1960 (501) 622-1000      Acute Care Hospitals
## 1961 (760) 241-8000      Acute Care Hospitals
## 1962 (570) 348-7100      Acute Care Hospitals
## 1963 (801) 536-3500                 Childrens
## 1964 (860) 344-6000      Acute Care Hospitals
## 1965 (605) 333-1000      Acute Care Hospitals
## 1966 (620) 659-3621 Critical Access Hospitals
## 1967 (270) 886-1919               Psychiatric
## 1968 (731) 926-8121      Acute Care Hospitals
## 1969 (509) 565-4000               Psychiatric
## 1970 (217) 935-9571 Critical Access Hospitals
## 1971 (775) 688-2001               Psychiatric
## 1972 (734) 655-4800      Acute Care Hospitals
## 1973 (906) 337-6500 Critical Access Hospitals
## 1974 (808) 538-9011      Acute Care Hospitals
## 1975 (585) 396-6000      Acute Care Hospitals
## 1976 (540) 332-8000               Psychiatric
## 1977 (808) 553-5331 Critical Access Hospitals
## 1978 (617) 732-5500      Acute Care Hospitals
## 1979 (262) 334-5533      Acute Care Hospitals
## 1980 (228) 867-4000      Acute Care Hospitals
## 1981 (808) 338-9431 Critical Access Hospitals
## 1982 (575) 461-7096 Critical Access Hospitals
## 1983 (660) 263-8400      Acute Care Hospitals
## 1984 (859) 987-3600      Acute Care Hospitals
## 1985 (315) 448-5111      Acute Care Hospitals
## 1986 (610) 383-8000      Acute Care Hospitals
## 1987 (405) 634-9300      Acute Care Hospitals
## 1988 (315) 287-1000 Critical Access Hospitals
## 1989 (605) 764-1400 Critical Access Hospitals
## 1990 (505) 368-6001      Acute Care Hospitals
## 1991 (208) 529-6210      Acute Care Hospitals
## 1992 (615) 768-2000      Acute Care Hospitals
## 1993 (954) 689-5000      Acute Care Hospitals
## 1994 (715) 934-4321 Critical Access Hospitals
## 1995 (610) 378-2000      Acute Care Hospitals
## 1996 (402) 552-2040      Acute Care Hospitals
## 1997 (641) 843-5000 Critical Access Hospitals
## 1998 (678) 474-7000      Acute Care Hospitals
## 1999 (318) 253-8611      Acute Care Hospitals
## 2000 (803) 907-7011      Acute Care Hospitals
## 2001 (308) 946-3015 Critical Access Hospitals
## 2002 (903) 798-8000      Acute Care Hospitals
## 2003 (251) 578-2480      Acute Care Hospitals
## 2004 (318) 329-4600      Acute Care Hospitals
## 2005 (541) 676-9133 Critical Access Hospitals
## 2006 (870) 394-4113               Psychiatric
## 2007 (707) 963-3611      Acute Care Hospitals
## 2008 (651) 565-4531 Critical Access Hospitals
## 2009 (850) 229-5600      Acute Care Hospitals
## 2010 (804) 594-7400      Acute Care Hospitals
## 2011 (970) 263-4918               Psychiatric
## 2012 (320) 679-1212 Critical Access Hospitals
## 2013 (307) 578-2488 Critical Access Hospitals
## 2014 (701) 252-1050 Critical Access Hospitals
## 2015 (770) 719-7000      Acute Care Hospitals
## 2016 (606) 408-4401      Acute Care Hospitals
## 2017 (770) 874-5400      Acute Care Hospitals
## 2018 (856) 935-1000      Acute Care Hospitals
## 2019 (512) 419-2100               Psychiatric
## 2020 (712) 279-2010      Acute Care Hospitals
## 2021 (318) 872-4610      Acute Care Hospitals
## 2022 (262) 656-2011      Acute Care Hospitals
## 2023 (601) 825-2811      Acute Care Hospitals
## 2024 (816) 271-6000      Acute Care Hospitals
## 2025 (507) 646-1001      Acute Care Hospitals
## 2026 (423) 844-1121      Acute Care Hospitals
## 2027 (319) 293-3171 Critical Access Hospitals
## 2028 (715) 838-3311      Acute Care Hospitals
## 2029 (336) 527-7000      Acute Care Hospitals
## 2030 (702) 293-4111 Critical Access Hospitals
## 2031 (717) 620-2424      Acute Care Hospitals
## 2032 (508) 427-3000      Acute Care Hospitals
## 2033 (785) 282-6845 Critical Access Hospitals
## 2034 (931) 296-4203 Critical Access Hospitals
## 2035 (718) 818-1234      Acute Care Hospitals
## 2036 (337) 234-5614               Psychiatric
## 2037 (816) 276-4000      Acute Care Hospitals
## 2038 (585) 593-1100      Acute Care Hospitals
## 2039 (419) 455-7000      Acute Care Hospitals
## 2040 (503) 873-1500      Acute Care Hospitals
## 2041 (662) 293-1000      Acute Care Hospitals
## 2042 (309) 779-5000      Acute Care Hospitals
## 2043 (308) 832-3400 Critical Access Hospitals
## 2044 (229) 931-1280      Acute Care Hospitals
## 2045 (541) 247-3000 Critical Access Hospitals
## 2046 (806) 687-7777      Acute Care Hospitals
## 2047 (260) 724-2145 Critical Access Hospitals
## 2048 (216) 778-7089      Acute Care Hospitals
## 2049 (585) 961-2000 Critical Access Hospitals
## 2050 (601) 656-2211      Acute Care Hospitals
## 2051 (937) 653-5231 Critical Access Hospitals
## 2052 (260) 248-9301      Acute Care Hospitals
## 2053 (217) 942-6946 Critical Access Hospitals
## 2054 (610) 776-4900      Acute Care Hospitals
## 2055 (510) 522-3700      Acute Care Hospitals
## 2056 (262) 251-1000      Acute Care Hospitals
## 2057 (605) 721-4700      Acute Care Hospitals
## 2058 (765) 472-8000 Critical Access Hospitals
## 2059 (317) 880-4818      Acute Care Hospitals
## 2060 (502) 732-4321 Critical Access Hospitals
## 2061 (208) 505-2000      Acute Care Hospitals
## 2062 (909) 558-9200               Psychiatric
## 2063 (320) 256-1761 Critical Access Hospitals
## 2064 (718) 283-6000      Acute Care Hospitals
## 2065 (256) 845-3150      Acute Care Hospitals
## 2066 (662) 378-3783      Acute Care Hospitals
## 2067 (815) 777-1340 Critical Access Hospitals
## 2068 (337) 527-7034      Acute Care Hospitals
## 2069 (540) 994-8100      Acute Care Hospitals
## 2070 (925) 779-7200      Acute Care Hospitals
## 2071 (515) 462-2373 Critical Access Hospitals
## 2072 (570) 387-2100      Acute Care Hospitals
## 2073 (718) 920-4321      Acute Care Hospitals
## 2074 (605) 353-6200 Critical Access Hospitals
## 2075 (787) 757-1800      Acute Care Hospitals
## 2076 (719) 546-4000               Psychiatric
## 2077 (843) 847-4100      Acute Care Hospitals
## 2078 (765) 485-8000      Acute Care Hospitals
## 2079 (312) 525-6780      Acute Care Hospitals
## 2080 (701) 965-6384 Critical Access Hospitals
## 2081 (715) 762-7500 Critical Access Hospitals
## 2082 (218) 829-2861      Acute Care Hospitals
## 2083 (775) 726-3171 Critical Access Hospitals
## 2084 (215) 612-4129      Acute Care Hospitals
## 2085 (770) 267-8461      Acute Care Hospitals
## 2086 (307) 789-3636      Acute Care Hospitals
## 2087 (706) 571-1000      Acute Care Hospitals
## 2088 (507) 629-8400 Critical Access Hospitals
## 2089 (712) 225-5101 Critical Access Hospitals
## 2090 (812) 537-1302               Psychiatric
## 2091 (704) 984-4000      Acute Care Hospitals
## 2092 (870) 845-4400 Critical Access Hospitals
## 2093 (580) 622-2161 Critical Access Hospitals
## 2094 (617) 522-4400               Psychiatric
## 2095 (314) 747-3000      Acute Care Hospitals
## 2096 (860) 679-1145      Acute Care Hospitals
## 2097 (630) 856-9000      Acute Care Hospitals
## 2098 (620) 886-3771 Critical Access Hospitals
## 2099 (423) 639-3151      Acute Care Hospitals
## 2100 (360) 532-8330      Acute Care Hospitals
## 2101 (256) 882-3100      Acute Care Hospitals
## 2102 (317) 887-7000      Acute Care Hospitals
## 2103 (912) 754-0160 Critical Access Hospitals
## 2104 (970) 945-6535      Acute Care Hospitals
## 2105 (225) 765-6565      Acute Care Hospitals
## 2106 (620) 355-7111 Critical Access Hospitals
## 2107 (225) 408-8080      Acute Care Hospitals
## 2108 (660) 200-7000      Acute Care Hospitals
## 2109 (205) 759-0750               Psychiatric
## 2110 (940) 852-5131 Critical Access Hospitals
## 2111 (219) 769-4005               Psychiatric
## 2112 (920) 361-1313 Critical Access Hospitals
## 2113 (208) 756-5600 Critical Access Hospitals
## 2114 (920) 849-2386 Critical Access Hospitals
## 2115 (812) 934-6624 Critical Access Hospitals
## 2116 (801) 662-6212                 Childrens
## 2117 (716) 297-4800      Acute Care Hospitals
## 2118 (619) 470-4321      Acute Care Hospitals
## 2119 (701) 567-4561 Critical Access Hospitals
## 2120 (402) 336-5131 Critical Access Hospitals
## 2121 (702) 945-2461 Critical Access Hospitals
## 2122 (909) 596-7733      Acute Care Hospitals
## 2123 (803) 435-8463      Acute Care Hospitals
## 2124 (516) 674-7300      Acute Care Hospitals
## 2125 (605) 622-5000      Acute Care Hospitals
## 2126 (817) 361-1991               Psychiatric
## 2127 (337) 289-8095      Acute Care Hospitals
## 2128 (313) 343-1000      Acute Care Hospitals
## 2129 (618) 327-8236 Critical Access Hospitals
## 2130 (307) 577-7201      Acute Care Hospitals
## 2131 (812) 752-3456 Critical Access Hospitals
## 2132 (859) 246-8000               Psychiatric
## 2133 (516) 705-2525      Acute Care Hospitals
## 2134 (440) 585-6170      Acute Care Hospitals
## 2135 (920) 498-4200      Acute Care Hospitals
## 2136 (570) 321-1000      Acute Care Hospitals
## 2137 (206) 598-3300      Acute Care Hospitals
## 2138 (302) 996-5480               Psychiatric
## 2139 (605) 668-3100               Psychiatric
## 2140 (414) 257-5202               Psychiatric
## 2141 (304) 525-7801               Psychiatric
## 2142 (218) 463-2500 Critical Access Hospitals
## 2143 (515) 239-2011      Acute Care Hospitals
## 2144 (714) 619-7700      Acute Care Hospitals
## 2145 (773) 413-1700               Psychiatric
## 2146 (573) 458-8899      Acute Care Hospitals
## 2147 (518) 268-5000      Acute Care Hospitals
## 2148 (402) 562-3351      Acute Care Hospitals
## 2149 (931) 359-6276 Critical Access Hospitals
## 2150 (212) 523-4000      Acute Care Hospitals
## 2151 (609) 653-3545      Acute Care Hospitals
## 2152 (703) 207-7100               Psychiatric
## 2153 (423) 775-1121 Critical Access Hospitals
## 2154 (614) 566-9000      Acute Care Hospitals
## 2155 (229) 777-3851 Critical Access Hospitals
## 2156 (530) 252-2000 Critical Access Hospitals
## 2157 (914) 592-7555                 Childrens
## 2158 (419) 636-1131      Acute Care Hospitals
## 2159 (580) 252-5300      Acute Care Hospitals
## 2160 (603) 882-3000      Acute Care Hospitals
## 2161 (609) 586-7900      Acute Care Hospitals
## 2162 (919) 762-2727      Acute Care Hospitals
## 2163 (253) 372-7400      Acute Care Hospitals
## 2164 (559) 675-5555      Acute Care Hospitals
## 2165 (806) 995-3581 Critical Access Hospitals
## 2166 (502) 587-4011      Acute Care Hospitals
## 2167 (660) 947-2411 Critical Access Hospitals
## 2168 (304) 843-3230      Acute Care Hospitals
## 2169 (318) 442-3163               Psychiatric
## 2170 (256) 737-2000      Acute Care Hospitals
## 2171 (253) 627-4101      Acute Care Hospitals
## 2172 (706) 651-6008      Acute Care Hospitals
## 2173 (563) 589-8000      Acute Care Hospitals
## 2174 (786) 662-4000      Acute Care Hospitals
## 2175 (954) 344-3000      Acute Care Hospitals
## 2176 (920) 433-3630               Psychiatric
## 2177 (214) 618-2000      Acute Care Hospitals
## 2178 (336) 832-7000      Acute Care Hospitals
## 2179 (318) 728-4181      Acute Care Hospitals
## 2180 (770) 228-2721      Acute Care Hospitals
## 2181 (989) 348-5461      Acute Care Hospitals
## 2182 (785) 543-5226 Critical Access Hospitals
## 2183 (904) 368-2300 Critical Access Hospitals
## 2184 (845) 374-3171               Psychiatric
## 2185 (617) 469-0300               Psychiatric
## 2186 (334) 682-4131      Acute Care Hospitals
## 2187 (319) 283-6000 Critical Access Hospitals
## 2188 (806) 244-4571 Critical Access Hospitals
## 2189 (409) 384-5461      Acute Care Hospitals
## 2190 (817) 926-2544      Acute Care Hospitals
## 2191 (336) 651-8100      Acute Care Hospitals
## 2192 (671) 647-2552      Acute Care Hospitals
## 2193 (715) 537-3186 Critical Access Hospitals
## 2194 (406) 338-6157      Acute Care Hospitals
## 2195 (814) 768-2497      Acute Care Hospitals
## 2196 (601) 794-0100               Psychiatric
## 2197 (915) 747-4000      Acute Care Hospitals
## 2198 (734) 547-4700      Acute Care Hospitals
## 2199 (773) 967-5002      Acute Care Hospitals
## 2200 (414) 454-6600               Psychiatric
## 2201 (724) 656-4100      Acute Care Hospitals
## 2202 (707) 923-3921 Critical Access Hospitals
## 2203 (601) 932-1000      Acute Care Hospitals
## 2204 (209) 334-3411      Acute Care Hospitals
## 2205 (518) 725-8621      Acute Care Hospitals
## 2206 (318) 549-2099               Psychiatric
## 2207 (570) 836-2161      Acute Care Hospitals
## 2208 (540) 498-4000      Acute Care Hospitals
## 2209 (708) 597-2000      Acute Care Hospitals
## 2210 (318) 202-3860               Psychiatric
## 2211 (805) 739-3100      Acute Care Hospitals
## 2212 (209) 526-4500      Acute Care Hospitals
## 2213 (575) 894-2111 Critical Access Hospitals
## 2214 (916) 688-2000      Acute Care Hospitals
## 2215 (601) 483-0011      Acute Care Hospitals
## 2216 (605) 696-9000      Acute Care Hospitals
## 2217 (320) 235-4543      Acute Care Hospitals
## 2218 (337) 364-0441      Acute Care Hospitals
## 2219 (510) 454-1000      Acute Care Hospitals
## 2220 (708) 783-9100      Acute Care Hospitals
## 2221 (803) 533-2460      Acute Care Hospitals
## 2222 (334) 222-8466      Acute Care Hospitals
## 2223 (307) 885-5800 Critical Access Hospitals
## 2224 (860) 928-6541      Acute Care Hospitals
## 2225 (951) 275-8400               Psychiatric
## 2226 (580) 726-3324      Acute Care Hospitals
## 2227 (740) 942-4631 Critical Access Hospitals
## 2228 (336) 372-5511 Critical Access Hospitals
## 2229 (541) 768-5111      Acute Care Hospitals
## 2230 (440) 593-1131 Critical Access Hospitals
## 2231 (406) 653-6500 Critical Access Hospitals
## 2232 (507) 977-2000      Acute Care Hospitals
## 2233 (573) 468-4186 Critical Access Hospitals
## 2234 (406) 775-8739 Critical Access Hospitals
## 2235 (719) 438-5401 Critical Access Hospitals
## 2236 (662) 252-1212      Acute Care Hospitals
## 2237 (608) 269-2132 Critical Access Hospitals
## 2238 (509) 754-4631 Critical Access Hospitals
## 2239 (207) 563-1234 Critical Access Hospitals
## 2240 (937) 981-9400 Critical Access Hospitals
## 2241 (206) 933-7299               Psychiatric
## 2242 (941) 639-3131      Acute Care Hospitals
## 2243 (912) 739-5105      Acute Care Hospitals
## 2244 (856) 342-2000      Acute Care Hospitals
## 2245 (800) 805-5678      Acute Care Hospitals
## 2246 (406) 873-2251 Critical Access Hospitals
## 2247 (313) 966-3300      Acute Care Hospitals
## 2248 (214) 265-2810      Acute Care Hospitals
## 2249 (303) 839-6000      Acute Care Hospitals
## 2250 (609) 836-6100               Psychiatric
## 2251 (207) 487-5141 Critical Access Hospitals
## 2252 (508) 746-2000      Acute Care Hospitals
## 2253 (724) 627-2602      Acute Care Hospitals
## 2254 (570) 888-6666      Acute Care Hospitals
## 2255 (903) 212-3105               Psychiatric
## 2256 (740) 671-1200      Acute Care Hospitals
## 2257 (828) 488-2155 Critical Access Hospitals
## 2258 (940) 889-5572      Acute Care Hospitals
## 2259 (717) 782-4742               Psychiatric
## 2260 (325) 646-8541      Acute Care Hospitals
## 2261 (269) 966-8000      Acute Care Hospitals
## 2262 (469) 764-2200      Acute Care Hospitals
## 2263 (503) 216-2213      Acute Care Hospitals
## 2264 (954) 538-4810      Acute Care Hospitals
## 2265 (812) 944-7701      Acute Care Hospitals
## 2266 (214) 559-5000                 Childrens
## 2267 (561) 844-9741               Psychiatric
## 2268 (303) 451-7800      Acute Care Hospitals
## 2269 (406) 826-4800 Critical Access Hospitals
## 2270 (215) 539-6000      Acute Care Hospitals
## 2271 (662) 834-1321 Critical Access Hospitals
## 2272 (502) 350-5000      Acute Care Hospitals
## 2273 (731) 285-2410      Acute Care Hospitals
## 2274 (660) 259-2203 Critical Access Hospitals
## 2275 (910) 371-2500               Psychiatric
## 2276 (818) 995-5000      Acute Care Hospitals
## 2277 (435) 868-5800      Acute Care Hospitals
## 2278 (765) 362-2800      Acute Care Hospitals
## 2279 (706) 782-3100 Critical Access Hospitals
## 2280 (912) 466-7000      Acute Care Hospitals
## 2281 (970) 332-4811 Critical Access Hospitals
## 2282 (540) 981-7000      Acute Care Hospitals
## 2283 (870) 239-7000      Acute Care Hospitals
## 2284 (402) 582-4245 Critical Access Hospitals
## 2285 (320) 762-1511      Acute Care Hospitals
## 2286 (619) 543-6222      Acute Care Hospitals
## 2287 (701) 476-7200               Psychiatric
## 2288 (787) 756-8535      Acute Care Hospitals
## 2289 (865) 835-1000      Acute Care Hospitals
## 2290 (858) 939-3400      Acute Care Hospitals
## 2291 (410) 362-3000      Acute Care Hospitals
## 2292 (402) 385-3083 Critical Access Hospitals
## 2293 (706) 595-1411      Acute Care Hospitals
## 2294 (830) 775-8566      Acute Care Hospitals
## 2295 (509) 787-3531 Critical Access Hospitals
## 2296 (425) 831-2300 Critical Access Hospitals
## 2297 (713) 359-1000      Acute Care Hospitals
## 2298 (787) 620-8181      Acute Care Hospitals
## 2299 (660) 826-8833      Acute Care Hospitals
## 2300 (580) 832-3339 Critical Access Hospitals
## 2301 (615) 666-2147 Critical Access Hospitals
## 2302 (217) 357-8500 Critical Access Hospitals
## 2303 (307) 532-4181 Critical Access Hospitals
## 2304 (325) 247-5040      Acute Care Hospitals
## 2305 (972) 296-1005               Psychiatric
## 2306 (605) 444-9500                 Childrens
## 2307 (567) 207-2230               Psychiatric
## 2308 (918) 696-3101      Acute Care Hospitals
## 2309 (309) 655-2000      Acute Care Hospitals
## 2310 (530) 622-1441      Acute Care Hospitals
## 2311 (662) 326-8031 Critical Access Hospitals
## 2312 (830) 773-5321      Acute Care Hospitals
## 2313 (435) 654-2500 Critical Access Hospitals
## 2314 (512) 324-0000      Acute Care Hospitals
## 2315 (626) 350-7975      Acute Care Hospitals
## 2316 (605) 284-2661 Critical Access Hospitals
## 2317 (314) 434-1500      Acute Care Hospitals
## 2318 (225) 300-8470               Psychiatric
## 2319 (229) 732-2181 Critical Access Hospitals
## 2320 (928) 669-2137 Critical Access Hospitals
## 2321 (406) 846-2212 Critical Access Hospitals
## 2322 (312) 942-5000      Acute Care Hospitals
## 2323 (334) 289-4000      Acute Care Hospitals
## 2324 (760) 934-3311 Critical Access Hospitals
## 2325 (585) 723-7000      Acute Care Hospitals
## 2326 (512) 715-3000 Critical Access Hospitals
## 2327 (562) 595-1911      Acute Care Hospitals
## 2328 (847) 432-8000      Acute Care Hospitals
## 2329 (336) 718-0600      Acute Care Hospitals
## 2330 (985) 878-9421 Critical Access Hospitals
## 2331 (308) 425-6221 Critical Access Hospitals
## 2332 (315) 541-2071               Psychiatric
## 2333 (312) 227-4000                 Childrens
## 2334 (814) 827-1851 Critical Access Hospitals
## 2335 (903) 541-4500 Critical Access Hospitals
## 2336 (928) 645-2424 Critical Access Hospitals
## 2337 (614) 223-1650               Psychiatric
## 2338 (540) 483-5277      Acute Care Hospitals
## 2339 (218) 679-3912      Acute Care Hospitals
## 2340 (712) 362-2631 Critical Access Hospitals
## 2341 (812) 352-4200 Critical Access Hospitals
## 2342 (712) 335-3501 Critical Access Hospitals
## 2343 (605) 589-2100 Critical Access Hospitals
## 2344 (218) 249-5555      Acute Care Hospitals
## 2345 (651) 259-3850               Psychiatric
## 2346 (580) 371-2327 Critical Access Hospitals
## 2347 (313) 593-7125      Acute Care Hospitals
## 2348 (985) 643-2200      Acute Care Hospitals
## 2349 (567) 307-7666      Acute Care Hospitals
## 2350 (870) 508-1000      Acute Care Hospitals
## 2351 (434) 200-4789      Acute Care Hospitals
## 2352 (787) 535-1001      Acute Care Hospitals
## 2353 (402) 759-3167 Critical Access Hospitals
## 2354 (510) 782-6200      Acute Care Hospitals
## 2355 (301) 251-4500               Psychiatric
## 2356 (272) 212-1000      Acute Care Hospitals
## 2357 (334) 732-3000      Acute Care Hospitals
## 2358 (530) 529-8012      Acute Care Hospitals
## 2359 (870) 972-7000      Acute Care Hospitals
## 2360 (507) 206-2561               Psychiatric
## 2361 (937) 523-1000      Acute Care Hospitals
## 2362 (815) 968-6861      Acute Care Hospitals
## 2363 (360) 385-2200 Critical Access Hospitals
## 2364 (828) 757-5100      Acute Care Hospitals
## 2365 (785) 742-2131 Critical Access Hospitals
## 2366 (217) 373-1700               Psychiatric
## 2367 (740) 568-2000 Critical Access Hospitals
## 2368 (316) 283-2700      Acute Care Hospitals
## 2369 (734) 429-2531               Psychiatric
## 2370 (479) 963-6101 Critical Access Hospitals
## 2371 (419) 291-7463      Acute Care Hospitals
## 2372 (209) 835-1500      Acute Care Hospitals
## 2373 (712) 423-2311 Critical Access Hospitals
## 2374 (732) 914-1688               Psychiatric
## 2375 (240) 964-8001      Acute Care Hospitals
## 2376 (641) 456-5000 Critical Access Hospitals
## 2377 (517) 543-1050 Critical Access Hospitals
## 2378 (507) 247-5521 Critical Access Hospitals
## 2379 (915) 869-5911 Critical Access Hospitals
## 2380 (847) 723-2210      Acute Care Hospitals
## 2381 (989) 453-3223 Critical Access Hospitals
## 2382 (218) 879-4641 Critical Access Hospitals
## 2383 (251) 662-7998               Psychiatric
## 2384 (414) 266-2000                 Childrens
## 2385 (218) 362-6730      Acute Care Hospitals
## 2386 (940) 552-9351      Acute Care Hospitals
## 2387 (316) 962-2000      Acute Care Hospitals
## 2388 (920) 531-2000 Critical Access Hospitals
## 2389 (415) 206-8000      Acute Care Hospitals
## 2390 (678) 442-5800               Psychiatric
## 2391 (907) 562-2211      Acute Care Hospitals
## 2392 (402) 729-3351 Critical Access Hospitals
## 2393 (520) 586-2261 Critical Access Hospitals
## 2394 (252) 449-4500 Critical Access Hospitals
## 2395 (808) 983-6000                 Childrens
## 2396 (864) 271-3444                 Childrens
## 2397 (605) 747-2231      Acute Care Hospitals
## 2398 (702) 492-8509      Acute Care Hospitals
## 2399 (718) 226-9000      Acute Care Hospitals
## 2400 (414) 817-5800      Acute Care Hospitals
## 2401 (585) 275-2121      Acute Care Hospitals
## 2402 (304) 526-9100               Psychiatric
## 2403 (903) 984-3505      Acute Care Hospitals
## 2404 (310) 517-6441      Acute Care Hospitals
## 2405 (208) 784-1221 Critical Access Hospitals
## 2406 (256) 332-1611      Acute Care Hospitals
## 2407 (773) 878-8200      Acute Care Hospitals
## 2408 (734) 246-6000      Acute Care Hospitals
## 2409 (985) 785-3644      Acute Care Hospitals
## 2410 (713) 797-1616                 Childrens
## 2411 (801) 465-7100      Acute Care Hospitals
## 2412 (509) 663-8711      Acute Care Hospitals
## 2413 (973) 579-8300      Acute Care Hospitals
## 2414 (785) 421-2121 Critical Access Hospitals
## 2415 (419) 562-4677 Critical Access Hospitals
## 2416 (601) 732-6301 Critical Access Hospitals
## 2417 (218) 643-3000 Critical Access Hospitals
## 2418 (605) 722-6101 Critical Access Hospitals
## 2419 (212) 434-5322               Psychiatric
## 2420 (703) 523-1000      Acute Care Hospitals
## 2421 (231) 726-3511      Acute Care Hospitals
## 2422 (607) 937-7200      Acute Care Hospitals
## 2423 (615) 444-8262      Acute Care Hospitals
## 2424 (218) 685-7300 Critical Access Hospitals
## 2425 (516) 663-0333      Acute Care Hospitals
## 2426 (765) 751-5377               Psychiatric
## 2427 (580) 233-2300      Acute Care Hospitals
## 2428 (706) 568-5203               Psychiatric
## 2429 (507) 263-6000 Critical Access Hospitals
## 2430 (330) 670-4118      Acute Care Hospitals
## 2431 (787) 723-2950      Acute Care Hospitals
## 2432 (317) 744-9200               Psychiatric
## 2433 (806) 826-5581 Critical Access Hospitals
## 2434 (256) 974-2200      Acute Care Hospitals
## 2435 (828) 696-1000      Acute Care Hospitals
## 2436 (214) 820-0111      Acute Care Hospitals
## 2437 (208) 630-2395 Critical Access Hospitals
## 2438 (318) 484-6200               Psychiatric
## 2439 (704) 548-6000      Acute Care Hospitals
## 2440 (602) 220-6000               Psychiatric
## 2441 (919) 470-4000      Acute Care Hospitals
## 2442 (787) 754-0101      Acute Care Hospitals
## 2443 (920) 887-7181      Acute Care Hospitals
## 2444 (203) 966-3561               Psychiatric
## 2445 (512) 237-3214      Acute Care Hospitals
## 2446 (734) 421-3300      Acute Care Hospitals
## 2447 (254) 386-3151 Critical Access Hospitals
## 2448 (432) 685-1111      Acute Care Hospitals
## 2449 (321) 984-4900               Psychiatric
## 2450 (678) 312-1000      Acute Care Hospitals
## 2451 (334) 376-2205      Acute Care Hospitals
## 2452 (773) 702-1000      Acute Care Hospitals
## 2453 (740) 425-5101 Critical Access Hospitals
## 2454 (270) 965-5281      Acute Care Hospitals
## 2455 (331) 221-0130      Acute Care Hospitals
## 2456 (903) 342-5227 Critical Access Hospitals
## 2457 (405) 628-6000      Acute Care Hospitals
## 2458 (319) 332-0999 Critical Access Hospitals
## 2459 (361) 902-4103      Acute Care Hospitals
## 2460 (412) 728-7000      Acute Care Hospitals
## 2461 (203) 384-3000      Acute Care Hospitals
## 2462 (903) 731-1000      Acute Care Hospitals
## 2463 (601) 774-8214 Critical Access Hospitals
## 2464 (336) 719-7000      Acute Care Hospitals
## 2465 (406) 271-3211 Critical Access Hospitals
## 2466 (320) 839-2505 Critical Access Hospitals
## 2467 (515) 247-3121      Acute Care Hospitals
## 2468 (616) 942-9610               Psychiatric
## 2469 (208) 381-2222      Acute Care Hospitals
## 2470 (870) 836-1000      Acute Care Hospitals
## 2471 (605) 322-8000      Acute Care Hospitals
## 2472 (937) 234-0103               Psychiatric
## 2473 (918) 341-8430      Acute Care Hospitals
## 2474 (623) 584-5100      Acute Care Hospitals
## 2475 (301) 754-7000      Acute Care Hospitals
## 2476 (217) 337-2000      Acute Care Hospitals
## 2477 (260) 266-1000      Acute Care Hospitals
## 2478 (209) 410-7200      Acute Care Hospitals
## 2479 (205) 459-9100 Critical Access Hospitals
## 2480 (864) 512-2830      Acute Care Hospitals
## 2481 (708) 383-9300      Acute Care Hospitals
## 2482 (606) 723-2115 Critical Access Hospitals
## 2483 (469) 248-3900      Acute Care Hospitals
## 2484 (843) 674-2500      Acute Care Hospitals
## 2485 (808) 878-1221 Critical Access Hospitals
## 2486 (203) 276-1000      Acute Care Hospitals
## 2487 (919) 577-1400               Psychiatric
## 2488 (760) 922-4115      Acute Care Hospitals
## 2489 (859) 269-2325               Psychiatric
## 2490 (360) 736-2803      Acute Care Hospitals
## 2491 (541) 732-5050      Acute Care Hospitals
## 2492 (870) 886-1200 Critical Access Hospitals
## 2493 (908) 281-1500               Psychiatric
## 2494 (724) 459-8000               Psychiatric
## 2495 (818) 365-8051      Acute Care Hospitals
## 2496 (308) 235-1951 Critical Access Hospitals
## 2497 (714) 957-5000      Acute Care Hospitals
## 2498 (870) 262-1200      Acute Care Hospitals
## 2499 (336) 794-3550               Psychiatric
## 2500 (708) 352-1200      Acute Care Hospitals
## 2501 (719) 530-2200 Critical Access Hospitals
## 2502 (920) 324-6530 Critical Access Hospitals
## 2503 (609) 893-6611      Acute Care Hospitals
## 2504 (856) 580-6330      Acute Care Hospitals
## 2505 (608) 261-0025      Acute Care Hospitals
## 2506 (409) 296-6000 Critical Access Hospitals
## 2507 (716) 826-7000      Acute Care Hospitals
## 2508 (757) 934-4000      Acute Care Hospitals
## 2509 (252) 809-6179      Acute Care Hospitals
## 2510 (626) 335-0231      Acute Care Hospitals
## 2511 (972) 892-3000      Acute Care Hospitals
## 2512 (608) 364-5011      Acute Care Hospitals
## 2513 (402) 955-5400                 Childrens
## 2514 (979) 836-6173      Acute Care Hospitals
## 2515 (415) 353-6000      Acute Care Hospitals
## 2516 (214) 633-5555      Acute Care Hospitals
## 2517 (225) 387-7767      Acute Care Hospitals
## 2518 (320) 748-8200 Critical Access Hospitals
## 2519 (610) 250-4076      Acute Care Hospitals
## 2520 (909) 590-3700               Psychiatric
## 2521 (281) 487-0700      Acute Care Hospitals
## 2522 (302) 629-6611      Acute Care Hospitals
## 2523 (240) 826-6517      Acute Care Hospitals
## 2524 (504) 734-1740               Psychiatric
## 2525 (361) 354-2000      Acute Care Hospitals
## 2526 (410) 641-9600      Acute Care Hospitals
## 2527 (317) 392-3211      Acute Care Hospitals
## 2528 (509) 522-5900      Acute Care Hospitals
## 2529 (787) 652-6045      Acute Care Hospitals
## 2530 (808) 522-4000      Acute Care Hospitals
## 2531 (417) 682-6081 Critical Access Hospitals
## 2532 (405) 359-2400      Acute Care Hospitals
## 2533 (406) 345-3306 Critical Access Hospitals
## 2534 (320) 234-5000      Acute Care Hospitals
## 2535 (541) 726-4400      Acute Care Hospitals
## 2536 (805) 688-6431 Critical Access Hospitals
## 2537 (906) 483-1000      Acute Care Hospitals
## 2538 (321) 805-5090               Psychiatric
## 2539 (718) 931-0600               Psychiatric
## 2540 (716) 886-8200               Psychiatric
## 2541 (337) 468-5261      Acute Care Hospitals
## 2542 (406) 883-5377 Critical Access Hospitals
## 2543 (913) 234-3000                 Childrens
## 2544 (608) 375-4112 Critical Access Hospitals
## 2545 (631) 474-6000      Acute Care Hospitals
## 2546 (787) 658-0000      Acute Care Hospitals
## 2547 (971) 544-3312                 Childrens
## 2548 (805) 497-2727      Acute Care Hospitals
## 2549 (843) 652-1000      Acute Care Hospitals
## 2550 (701) 253-3650               Psychiatric
## 2551 (928) 402-1122 Critical Access Hospitals
## 2552 (402) 444-7676               Psychiatric
## 2553 (970) 874-7681      Acute Care Hospitals
## 2554 (906) 884-8000 Critical Access Hospitals
## 2555 (815) 933-1671      Acute Care Hospitals
## 2556 (918) 382-2300 Critical Access Hospitals
## 2557 (843) 347-8871               Psychiatric
## 2558 (208) 327-0504               Psychiatric
## 2559 (949) 727-5000      Acute Care Hospitals
## 2560 (417) 820-2000      Acute Care Hospitals
## 2561 (406) 759-5181 Critical Access Hospitals
## 2562 (320) 255-5661      Acute Care Hospitals
## 2563 (920) 622-3257 Critical Access Hospitals
## 2564 (775) 445-8000      Acute Care Hospitals
## 2565 (425) 313-4000      Acute Care Hospitals
## 2566 (402) 748-3393 Critical Access Hospitals
## 2567 (262) 569-9400      Acute Care Hospitals
## 2568 (203) 876-4000      Acute Care Hospitals
## 2569 (712) 551-3100 Critical Access Hospitals
## 2570 (573) 248-1300      Acute Care Hospitals
## 2571 (214) 820-0670      Acute Care Hospitals
## 2572 (715) 526-2111 Critical Access Hospitals
## 2573 (901) 577-1800               Psychiatric
## 2574 (904) 244-0411      Acute Care Hospitals
## 2575 (201) 858-5000      Acute Care Hospitals
## 2576 (513) 732-8590      Acute Care Hospitals
## 2577 (843) 681-6122      Acute Care Hospitals
## 2578 (501) 585-2000      Acute Care Hospitals
## 2579 (816) 891-6000      Acute Care Hospitals
## 2580 (970) 821-4000      Acute Care Hospitals
## 2581 (727) 734-6950      Acute Care Hospitals
## 2582 (907) 424-8000 Critical Access Hospitals
## 2583 (215) 430-4000                 Childrens
## 2584 (920) 320-2011      Acute Care Hospitals
## 2585 (801) 468-6856               Psychiatric
## 2586 (859) 234-2300      Acute Care Hospitals
## 2587 (787) 725-6038      Acute Care Hospitals
## 2588 (248) 357-3360      Acute Care Hospitals
## 2589 (251) 575-3111      Acute Care Hospitals
## 2590 (270) 793-1000      Acute Care Hospitals
## 2591 (314) 865-7000      Acute Care Hospitals
## 2592 (931) 762-6571      Acute Care Hospitals
## 2593 (513) 862-2646      Acute Care Hospitals
## 2594 (719) 336-4343 Critical Access Hospitals
## 2595 (205) 258-4400      Acute Care Hospitals
## 2596 (317) 703-1999      Acute Care Hospitals
## 2597 (318) 649-6106      Acute Care Hospitals
## 2598 (804) 693-8800      Acute Care Hospitals
## 2599 (602) 344-5011      Acute Care Hospitals
## 2600 (320) 563-8226 Critical Access Hospitals
## 2601 (251) 344-9630      Acute Care Hospitals
## 2602 (215) 829-3000      Acute Care Hospitals
## 2603 (515) 386-2114 Critical Access Hospitals
## 2604 (740) 947-2186 Critical Access Hospitals
## 2605 (361) 595-1661      Acute Care Hospitals
## 2606 (334) 794-7373               Psychiatric
## 2607 (707) 268-2990               Psychiatric
## 2608 (256) 761-4542      Acute Care Hospitals
## 2609 (513) 519-4947               Psychiatric
## 2610 (520) 469-8100      Acute Care Hospitals
## 2611 (912) 632-8961 Critical Access Hospitals
## 2612 (252) 399-8040      Acute Care Hospitals
## 2613 (307) 358-2122 Critical Access Hospitals
## 2614 (207) 729-0181      Acute Care Hospitals
## 2615 (541) 812-4000      Acute Care Hospitals
## 2616 (787) 848-2100      Acute Care Hospitals
## 2617 (304) 343-4371      Acute Care Hospitals
## 2618 (406) 657-4000      Acute Care Hospitals
## 2619 (309) 662-3311      Acute Care Hospitals
## 2620 (218) 736-8000      Acute Care Hospitals
## 2621 (817) 960-3500      Acute Care Hospitals
## 2622 (815) 344-5000      Acute Care Hospitals
## 2623 (321) 799-7111      Acute Care Hospitals
## 2624 (808) 822-4961 Critical Access Hospitals
## 2625 (608) 301-1000               Psychiatric
## 2626 (817) 444-8700      Acute Care Hospitals
## 2627 (812) 883-5881 Critical Access Hospitals
## 2628 (601) 553-6000      Acute Care Hospitals
## 2629 (608) 348-2331 Critical Access Hospitals
## 2630 (615) 284-5555      Acute Care Hospitals
## 2631 (214) 828-4747                 Childrens
## 2632 (440) 415-0794               Psychiatric
## 2633 (607) 432-2000      Acute Care Hospitals
## 2634 (931) 815-4101      Acute Care Hospitals
## 2635 (801) 373-7850      Acute Care Hospitals
## 2636 (620) 842-5111 Critical Access Hospitals
## 2637 (305) 693-6100      Acute Care Hospitals
## 2638 (540) 741-1100      Acute Care Hospitals
## 2639 (716) 447-6100      Acute Care Hospitals
## 2640 (909) 625-8300      Acute Care Hospitals
## 2641 (931) 823-5611      Acute Care Hospitals
## 2642 (918) 774-1100      Acute Care Hospitals
## 2643 (518) 926-1000      Acute Care Hospitals
## 2644 (715) 284-5361 Critical Access Hospitals
## 2645 (303) 602-4930      Acute Care Hospitals
## 2646 (808) 245-1103      Acute Care Hospitals
## 2647 (203) 573-6000      Acute Care Hospitals
## 2648 (940) 849-2151 Critical Access Hospitals
## 2649 (215) 483-9900      Acute Care Hospitals
## 2650 (908) 847-6700      Acute Care Hospitals
## 2651 (208) 263-1441 Critical Access Hospitals
## 2652 (423) 224-4000      Acute Care Hospitals
## 2653 (870) 297-2400 Critical Access Hospitals
## 2654 (337) 239-9041      Acute Care Hospitals
## 2655 (318) 281-2448               Psychiatric
## 2656 (650) 367-5551      Acute Care Hospitals
## 2657 (956) 487-5561      Acute Care Hospitals
## 2658 (919) 350-2550      Acute Care Hospitals
## 2659 (248) 325-1000      Acute Care Hospitals
## 2660 (970) 247-3537      Acute Care Hospitals
## 2661 (315) 797-6800               Psychiatric
## 2662 (912) 557-1000 Critical Access Hospitals
## 2663 (760) 340-3911      Acute Care Hospitals
## 2664 (931) 438-1100      Acute Care Hospitals
## 2665 (707) 935-5000      Acute Care Hospitals
## 2666 (802) 728-4441 Critical Access Hospitals
## 2667 (563) 652-2474 Critical Access Hospitals
## 2668 (402) 925-2811 Critical Access Hospitals
## 2669 (219) 983-8300      Acute Care Hospitals
## 2670 (269) 463-3111      Acute Care Hospitals
## 2671 (912) 819-6000      Acute Care Hospitals
## 2672 (763) 689-7700      Acute Care Hospitals
## 2673 (412) 692-5325                 Childrens
## 2674 (985) 646-5000      Acute Care Hospitals
## 2675 (617) 735-6000                 Childrens
## 2676 (920) 846-3444 Critical Access Hospitals
## 2677 (815) 942-2932      Acute Care Hospitals
## 2678 (215) 471-2358               Psychiatric
## 2679 (563) 927-3232 Critical Access Hospitals
## 2680 (480) 324-7001      Acute Care Hospitals
## 2681 (508) 977-3000               Psychiatric
## 2682 (610) 402-2273      Acute Care Hospitals
## 2683 (715) 848-4600               Psychiatric
## 2684 (320) 243-3779 Critical Access Hospitals
## 2685 (845) 343-2424      Acute Care Hospitals
## 2686 (435) 893-4100      Acute Care Hospitals
## 2687 (716) 862-1000      Acute Care Hospitals
## 2688 (850) 689-8100      Acute Care Hospitals
## 2689 (432) 561-5915               Psychiatric
## 2690 (765) 966-0511               Psychiatric
## 2691 (818) 782-6600      Acute Care Hospitals
## 2692 (936) 569-9481      Acute Care Hospitals
## 2693 (507) 637-4500 Critical Access Hospitals
## 2694 (561) 498-4440      Acute Care Hospitals
## 2695 (920) 623-2200 Critical Access Hospitals
## 2696 (260) 425-3000      Acute Care Hospitals
## 2697 (601) 968-1000      Acute Care Hospitals
## 2698 (918) 426-7800               Psychiatric
## 2699 (620) 872-5811 Critical Access Hospitals
## 2700 (972) 596-6800      Acute Care Hospitals
## 2701 (801) 350-4111      Acute Care Hospitals
## 2702 (641) 932-2134 Critical Access Hospitals
## 2703 (626) 966-1632               Psychiatric
## 2704 (608) 756-6080      Acute Care Hospitals
## 2705 (618) 465-2571      Acute Care Hospitals
## 2706 (805) 640-2280 Critical Access Hospitals
## 2707 (302) 733-1000      Acute Care Hospitals
## 2708 (317) 982-3715               Psychiatric
## 2709 (912) 819-4100      Acute Care Hospitals
## 2710 (682) 212-2000      Acute Care Hospitals
## 2711 (712) 382-1515 Critical Access Hospitals
## 2712 (985) 369-3600 Critical Access Hospitals
## 2713 (706) 896-2222 Critical Access Hospitals
## 2714 (509) 935-8211 Critical Access Hospitals
## 2715 (909) 627-6111      Acute Care Hospitals
## 2716 (651) 232-0228      Acute Care Hospitals
## 2717 (870) 598-3881 Critical Access Hospitals
## 2718 (501) 748-8000      Acute Care Hospitals
## 2719 (530) 274-6000      Acute Care Hospitals
## 2720 (309) 734-3141 Critical Access Hospitals
## 2721 (330) 489-1080      Acute Care Hospitals
## 2722 (865) 544-9000      Acute Care Hospitals
## 2723 (585) 922-4000      Acute Care Hospitals
## 2724 (773) 884-9000      Acute Care Hospitals
## 2725 (985) 229-0717               Psychiatric
## 2726 (435) 789-3342      Acute Care Hospitals
## 2727 (620) 325-2611 Critical Access Hospitals
## 2728 (662) 244-1500      Acute Care Hospitals
## 2729 (325) 823-3231      Acute Care Hospitals
## 2730 (406) 434-3200 Critical Access Hospitals
## 2731 (229) 723-4241 Critical Access Hospitals
## 2732 (580) 688-3363 Critical Access Hospitals
## 2733 (847) 618-1000      Acute Care Hospitals
## 2734 (337) 684-5435 Critical Access Hospitals
## 2735 (508) 679-3131      Acute Care Hospitals
## 2736 (859) 239-2409      Acute Care Hospitals
## 2737 (760) 245-8691      Acute Care Hospitals
## 2738 (650) 742-3200      Acute Care Hospitals
## 2739 (308) 872-4100 Critical Access Hospitals
## 2740 (760) 876-5501 Critical Access Hospitals
## 2741 (217) 285-2113 Critical Access Hospitals
## 2742 (540) 458-3503 Critical Access Hospitals
## 2743 (907) 874-7000 Critical Access Hospitals
## 2744 (815) 562-2181 Critical Access Hospitals
## 2745 (570) 265-2191      Acute Care Hospitals
## 2746 (954) 786-6950      Acute Care Hospitals
## 2747 (415) 759-2300      Acute Care Hospitals
## 2748 (479) 725-6800                 Childrens
## 2749 (928) 779-3366      Acute Care Hospitals
## 2750 (310) 356-0550      Acute Care Hospitals
## 2751 (770) 918-3000      Acute Care Hospitals
## 2752 (907) 796-8900      Acute Care Hospitals
## 2753 (636) 441-7300               Psychiatric
## 2754 (906) 524-3300 Critical Access Hospitals
## 2755 (830) 379-2411      Acute Care Hospitals
## 2756 (270) 598-4800 Critical Access Hospitals
## 2757 (641) 682-7511      Acute Care Hospitals
## 2758 (865) 213-8200      Acute Care Hospitals
## 2759 (512) 684-4911      Acute Care Hospitals
## 2760 (401) 456-2025      Acute Care Hospitals
## 2761 (847) 360-3000      Acute Care Hospitals
## 2762 (714) 827-3000      Acute Care Hospitals
## 2763 (813) 972-2250                 Childrens
## 2764 (641) 672-3100 Critical Access Hospitals
## 2765 (270) 487-9231      Acute Care Hospitals
## 2766 (231) 876-7200      Acute Care Hospitals
## 2767 (715) 453-7700 Critical Access Hospitals
## 2768 (718) 963-8100      Acute Care Hospitals
## 2769 (913) 360-5581 Critical Access Hospitals
## 2770 (213) 989-6123      Acute Care Hospitals
## 2771 (225) 222-6111 Critical Access Hospitals
## 2772 (719) 383-6000 Critical Access Hospitals
## 2773 (814) 634-5911 Critical Access Hospitals
## 2774 (732) 937-8525      Acute Care Hospitals
## 2775 (985) 882-0226               Psychiatric
## 2776 (903) 389-1612      Acute Care Hospitals
## 2777 (304) 675-4340      Acute Care Hospitals
## 2778 (205) 932-5966      Acute Care Hospitals
## 2779 (609) 597-6011      Acute Care Hospitals
## 2780 (928) 537-6399      Acute Care Hospitals
## 2781 (303) 812-2000      Acute Care Hospitals
## 2782 (608) 637-2101 Critical Access Hospitals
## 2783 (661) 632-5000      Acute Care Hospitals
## 2784 (225) 927-1300      Acute Care Hospitals
## 2785 (828) 659-5000      Acute Care Hospitals
## 2786 (732) 235-5900               Psychiatric
## 2787 (217) 443-5000      Acute Care Hospitals
## 2788 (904) 362-1413 Critical Access Hospitals
## 2789 (717) 999-9999      Acute Care Hospitals
## 2790 (941) 782-2100      Acute Care Hospitals
## 2791 (405) 379-4200 Critical Access Hospitals
## 2792 (479) 751-5711      Acute Care Hospitals
## 2793 (561) 488-8000      Acute Care Hospitals
## 2794 (785) 827-0610      Acute Care Hospitals
## 2795 (580) 822-4417 Critical Access Hospitals
## 2796 (305) 558-2500      Acute Care Hospitals
## 2797 (973) 266-4401      Acute Care Hospitals
## 2798 (423) 787-5000      Acute Care Hospitals
## 2799 (203) 688-4242      Acute Care Hospitals
## 2800 (859) 967-5000      Acute Care Hospitals
## 2801 (936) 634-8311      Acute Care Hospitals
## 2802 (765) 743-4400               Psychiatric
## 2803 (386) 254-4000      Acute Care Hospitals
## 2804 (386) 424-5100      Acute Care Hospitals
## 2805 (308) 754-4421 Critical Access Hospitals
## 2806 (704) 384-4089      Acute Care Hospitals
## 2807 (914) 681-0600      Acute Care Hospitals
## 2808 (541) 382-4321      Acute Care Hospitals
## 2809 (479) 394-6100      Acute Care Hospitals
## 2810 (937) 498-5405      Acute Care Hospitals
## 2811 (603) 778-7311      Acute Care Hospitals
## 2812 (218) 894-1515 Critical Access Hospitals
## 2813 (254) 724-2111      Acute Care Hospitals
## 2814 (712) 546-7871 Critical Access Hospitals
## 2815 (970) 774-6123 Critical Access Hospitals
## 2816 (541) 963-8421 Critical Access Hospitals
## 2817 (770) 991-6044               Psychiatric
## 2818 (470) 644-7000      Acute Care Hospitals
## 2819 (734) 712-3456      Acute Care Hospitals
## 2820 (850) 663-7536               Psychiatric
## 2821 (216) 721-6400                 Childrens
## 2822 (334) 684-3655      Acute Care Hospitals
## 2823 (607) 756-3501      Acute Care Hospitals
## 2824 (952) 758-4431 Critical Access Hospitals
## 2825 (732) 775-5500      Acute Care Hospitals
## 2826 (803) 637-3174 Critical Access Hospitals
## 2827 (330) 467-7131               Psychiatric
## 2828 (804) 321-7474                 Childrens
## 2829 (913) 529-1801      Acute Care Hospitals
## 2830 (641) 774-3000 Critical Access Hospitals
## 2831 (501) 332-1000      Acute Care Hospitals
## 2832 (305) 666-6511                 Childrens
## 2833 (802) 371-4100      Acute Care Hospitals
## 2834 (585) 341-6736      Acute Care Hospitals
## 2835 (432) 283-2760 Critical Access Hospitals
## 2836 (952) 442-2191      Acute Care Hospitals
## 2837 (660) 258-2222 Critical Access Hospitals
## 2838 (209) 944-5550      Acute Care Hospitals
## 2839 (312) 864-6000      Acute Care Hospitals
## 2840 (478) 448-4067      Acute Care Hospitals
## 2841 (406) 723-2500      Acute Care Hospitals
## 2842 (719) 846-9213 Critical Access Hospitals
## 2843 (281) 592-5400      Acute Care Hospitals
## 2844 (773) 271-9040      Acute Care Hospitals
## 2845 (501) 771-1500               Psychiatric
## 2846 (404) 785-5252                 Childrens
## 2847 (774) 628-1011               Psychiatric
## 2848 (610) 648-1000      Acute Care Hospitals
## 2849 (787) 853-3322      Acute Care Hospitals
## 2850 (423) 743-3141      Acute Care Hospitals
## 2851 (229) 482-8402 Critical Access Hospitals
## 2852 (706) 517-2031      Acute Care Hospitals
## 2853 (928) 289-4691 Critical Access Hospitals
## 2854 (562) 401-7022      Acute Care Hospitals
## 2855 (641) 628-3150 Critical Access Hospitals
## 2856 (318) 559-4023      Acute Care Hospitals
## 2857 (707) 571-4000      Acute Care Hospitals
## 2858 (478) 765-7000      Acute Care Hospitals
## 2859 (301) 475-6001      Acute Care Hospitals
## 2860 (814) 849-2312 Critical Access Hospitals
## 2861 (757) 388-3000      Acute Care Hospitals
## 2862 (940) 657-3535      Acute Care Hospitals
## 2863 (561) 798-8500      Acute Care Hospitals
## 2864 (701) 364-8000      Acute Care Hospitals
## 2865 (757) 889-5000      Acute Care Hospitals
## 2866 (317) 583-5000      Acute Care Hospitals
## 2867 (660) 425-0284 Critical Access Hospitals
## 2868 (201) 854-5000      Acute Care Hospitals
## 2869 (386) 292-8000      Acute Care Hospitals
## 2870 (765) 348-0300 Critical Access Hospitals
## 2871 (818) 790-7100      Acute Care Hospitals
## 2872 (806) 725-4431      Acute Care Hospitals
## 2873 (201) 447-8000      Acute Care Hospitals
## 2874 (605) 234-5511 Critical Access Hospitals
## 2875 (706) 632-3711      Acute Care Hospitals
## 2876 (251) 368-2500      Acute Care Hospitals
## 2877 (636) 528-8551 Critical Access Hospitals
## 2878 (860) 585-3000      Acute Care Hospitals
## 2879 (806) 266-5565 Critical Access Hospitals
## 2880 (919) 731-3203               Psychiatric
## 2881 (661) 326-2000      Acute Care Hospitals
## 2882 (787) 933-1100      Acute Care Hospitals
## 2883 (812) 537-1010      Acute Care Hospitals
## 2884 (916) 423-2000               Psychiatric
## 2885 (936) 564-4611      Acute Care Hospitals
## 2886 (702) 369-7600      Acute Care Hospitals
## 2887 (417) 667-3355      Acute Care Hospitals
## 2888 (601) 788-6316 Critical Access Hospitals
## 2889 (601) 484-3590      Acute Care Hospitals
## 2890 (973) 322-5000      Acute Care Hospitals
## 2891 (715) 672-4211 Critical Access Hospitals
## 2892 (607) 274-4401      Acute Care Hospitals
## 2893 (505) 753-1502      Acute Care Hospitals
## 2894 (512) 347-9888      Acute Care Hospitals
## 2895 (480) 321-2000      Acute Care Hospitals
## 2896 (518) 891-4141      Acute Care Hospitals
## 2897 (252) 443-8000      Acute Care Hospitals
## 2898 (304) 234-0123      Acute Care Hospitals
## 2899 (760) 366-3711      Acute Care Hospitals
## 2900 (979) 548-3311 Critical Access Hospitals
## 2901 (270) 737-1212      Acute Care Hospitals
## 2902 (806) 354-6100      Acute Care Hospitals
## 2903 (217) 283-5531 Critical Access Hospitals
## 2904 (507) 836-6111 Critical Access Hospitals
## 2905 (213) 977-2121      Acute Care Hospitals
## 2906 (562) 461-6007      Acute Care Hospitals
## 2907 (805) 389-5800      Acute Care Hospitals
## 2908 (850) 656-5000      Acute Care Hospitals
## 2909 (402) 219-7700      Acute Care Hospitals
## 2910 (816) 234-3000                 Childrens
## 2911 (757) 569-6100      Acute Care Hospitals
## 2912 (207) 768-4000      Acute Care Hospitals
## 2913 (307) 755-4600      Acute Care Hospitals
## 2914 (503) 842-4444 Critical Access Hospitals
## 2915 (805) 988-2500      Acute Care Hospitals
## 2916 (740) 283-7000      Acute Care Hospitals
## 2917 (312) 996-3900      Acute Care Hospitals
## 2918 (701) 662-2131 Critical Access Hospitals
## 2919 (619) 502-5800      Acute Care Hospitals
## 2920 (541) 296-1111      Acute Care Hospitals
## 2921 (575) 758-8883 Critical Access Hospitals
## 2922 (419) 734-3131 Critical Access Hospitals
## 2923 (619) 465-0711      Acute Care Hospitals
## 2924 (812) 996-2345      Acute Care Hospitals
## 2925 (757) 345-3000      Acute Care Hospitals
## 2926 (253) 756-2350               Psychiatric
## 2927 (530) 336-5511 Critical Access Hospitals
## 2928 (218) 326-3401      Acute Care Hospitals
## 2929 (816) 932-2000      Acute Care Hospitals
## 2930 (831) 757-4333      Acute Care Hospitals
## 2931 (352) 528-2801      Acute Care Hospitals
## 2932 (608) 251-6100      Acute Care Hospitals
## 2933 (641) 228-6830 Critical Access Hospitals
## 2934 (510) 895-5502               Psychiatric
## 2935 (406) 683-3000 Critical Access Hospitals
## 2936 (215) 750-2003      Acute Care Hospitals
## 2937 (870) 367-2411      Acute Care Hospitals
## 2938 (920) 748-3101 Critical Access Hospitals
## 2939 (714) 378-7406      Acute Care Hospitals
## 2940 (662) 563-5611      Acute Care Hospitals
## 2941 (507) 377-6452      Acute Care Hospitals
## 2942 (620) 947-3114 Critical Access Hospitals
## 2943 (732) 840-2200      Acute Care Hospitals
## 2944 (985) 801-3010      Acute Care Hospitals
## 2945 (228) 575-7000      Acute Care Hospitals
## 2946 (432) 523-2200      Acute Care Hospitals
## 2947 (469) 839-6778      Acute Care Hospitals
## 2948 (308) 254-5825 Critical Access Hospitals
## 2949 (979) 567-3245 Critical Access Hospitals
## 2950 (228) 831-1700               Psychiatric
## 2951 (262) 767-6545      Acute Care Hospitals
## 2952 (785) 731-2231 Critical Access Hospitals
## 2953 (301) 618-2000      Acute Care Hospitals
## 2954 (401) 793-2500      Acute Care Hospitals
## 2955 (203) 739-7000      Acute Care Hospitals
## 2956 (907) 442-3321 Critical Access Hospitals
## 2957 (931) 538-6420               Psychiatric
## 2958 (717) 782-5181      Acute Care Hospitals
## 2959 (719) 272-3623      Acute Care Hospitals
## 2960 (540) 776-4000      Acute Care Hospitals
## 2961 (323) 267-0477      Acute Care Hospitals
## 2962 (219) 866-5141 Critical Access Hospitals
## 2963 (580) 654-1050 Critical Access Hospitals
## 2964 (623) 524-4000      Acute Care Hospitals
## 2965 (404) 616-4252      Acute Care Hospitals
## 2966 (352) 596-4306               Psychiatric
## 2967 (516) 562-6000      Acute Care Hospitals
## 2968 (626) 570-9000      Acute Care Hospitals
## 2969 (718) 579-5000      Acute Care Hospitals
## 2970 (985) 537-8377 Critical Access Hospitals
## 2971 (770) 244-1000      Acute Care Hospitals
## 2972 (813) 888-7060      Acute Care Hospitals
## 2973 (918) 682-5501      Acute Care Hospitals
## 2974 (918) 599-1000      Acute Care Hospitals
## 2975 (701) 477-3161 Critical Access Hospitals
## 2976 (318) 375-3235 Critical Access Hospitals
## 2977 (317) 217-3000      Acute Care Hospitals
## 2978 (208) 245-5551 Critical Access Hospitals
## 2979 (207) 921-8000      Acute Care Hospitals
## 2980 (870) 338-5800      Acute Care Hospitals
## 2981 (406) 265-2211      Acute Care Hospitals
## 2982 (812) 283-2147      Acute Care Hospitals
## 2983 (276) 596-6000      Acute Care Hospitals
## 2984 (618) 357-2187 Critical Access Hospitals
## 2985 (360) 377-3911      Acute Care Hospitals
## 2986 (229) 382-7120      Acute Care Hospitals
## 2987 (814) 231-7000      Acute Care Hospitals
## 2988 (985) 853-1390      Acute Care Hospitals
## 2989 (305) 223-3000      Acute Care Hospitals
## 2990 (301) 533-4173      Acute Care Hospitals
## 2991 (757) 395-8000      Acute Care Hospitals
## 2992 (636) 625-5200      Acute Care Hospitals
## 2993 (915) 598-4240      Acute Care Hospitals
## 2994 (806) 872-2183      Acute Care Hospitals
## 2995 (406) 752-5111      Acute Care Hospitals
## 2996 (605) 326-5161 Critical Access Hospitals
## 2997 (281) 293-7774                 Childrens
## 2998 (606) 285-6400 Critical Access Hospitals
## 2999 (216) 844-1000      Acute Care Hospitals
## 3000 (251) 633-1000      Acute Care Hospitals
## 3001 (650) 497-8000                 Childrens
## 3002 (207) 667-5311      Acute Care Hospitals
## 3003 (618) 526-4511      Acute Care Hospitals
## 3004 (509) 491-1101 Critical Access Hospitals
## 3005 (269) 637-5271      Acute Care Hospitals
## 3006 (574) 946-2100 Critical Access Hospitals
## 3007 (330) 208-9317               Psychiatric
## 3008 (419) 294-4991 Critical Access Hospitals
## 3009 (601) 932-1030      Acute Care Hospitals
## 3010 (903) 541-5000      Acute Care Hospitals
## 3011 (903) 640-7311 Critical Access Hospitals
## 3012 (360) 424-4111      Acute Care Hospitals
## 3013 (580) 227-3721 Critical Access Hospitals
## 3014 (415) 209-1300      Acute Care Hospitals
## 3015 (415) 334-2500               Psychiatric
## 3016 (308) 432-5586 Critical Access Hospitals
## 3017 (316) 462-5326      Acute Care Hospitals
## 3018 (828) 684-8501      Acute Care Hospitals
## 3019 (724) 537-1000      Acute Care Hospitals
## 3020 (270) 622-2800 Critical Access Hospitals
## 3021 (732) 381-4200      Acute Care Hospitals
## 3022 (406) 353-3100 Critical Access Hospitals
## 3023 (320) 564-3111 Critical Access Hospitals
## 3024 (606) 573-8100      Acute Care Hospitals
## 3025 (620) 251-1200      Acute Care Hospitals
## 3026 (405) 717-6800      Acute Care Hospitals
## 3027 (787) 727-1000      Acute Care Hospitals
## 3028 (503) 513-8336      Acute Care Hospitals
## 3029 (540) 731-2000      Acute Care Hospitals
## 3030 (208) 557-2700      Acute Care Hospitals
## 3031 (720) 455-2500      Acute Care Hospitals
## 3032 (910) 609-4000      Acute Care Hospitals
## 3033 (209) 564-5000      Acute Care Hospitals
## 3034 (480) 543-2000      Acute Care Hospitals
## 3035 (608) 524-6487 Critical Access Hospitals
## 3036 (352) 333-4100      Acute Care Hospitals
## 3037 (865) 482-1076               Psychiatric
## 3038 (931) 685-5433      Acute Care Hospitals
## 3039 (408) 236-6400      Acute Care Hospitals
## 3040 (315) 265-3300      Acute Care Hospitals
## 3041 (210) 638-2100      Acute Care Hospitals
## 3042 (814) 534-9000      Acute Care Hospitals
## 3043 (580) 782-3353 Critical Access Hospitals
## 3044 (608) 742-4131      Acute Care Hospitals
## 3045 (801) 344-4400               Psychiatric
## 3046 (580) 927-2327 Critical Access Hospitals
## 3047 (309) 647-5240      Acute Care Hospitals
## 3048 (831) 637-5711      Acute Care Hospitals
## 3049 (785) 235-1294               Psychiatric
## 3050 (215) 728-2000      Acute Care Hospitals
## 3051 (281) 897-3100      Acute Care Hospitals
## 3052 (630) 978-6200      Acute Care Hospitals
## 3053 (907) 225-5171 Critical Access Hospitals
## 3054 (757) 398-2200      Acute Care Hospitals
## 3055 (270) 575-2100      Acute Care Hospitals
## 3056 (309) 347-1151      Acute Care Hospitals
## 3057 (281) 241-6460               Psychiatric
## 3058 (770) 456-3101      Acute Care Hospitals
## 3059 (906) 228-9440      Acute Care Hospitals
## 3060 (203) 974-3000               Psychiatric
## 3061 (479) 521-5731               Psychiatric
## 3062 (563) 578-3275 Critical Access Hospitals
## 3063 (715) 717-4121      Acute Care Hospitals
## 3064 (513) 624-4006      Acute Care Hospitals
## 3065 (978) 687-0156      Acute Care Hospitals
## 3066 (207) 778-6031      Acute Care Hospitals
## 3067 (814) 452-5111      Acute Care Hospitals
## 3068 (516) 264-4000               Psychiatric
## 3069 (260) 355-3000      Acute Care Hospitals
## 3070 (606) 330-6000      Acute Care Hospitals
## 3071 (360) 426-1611 Critical Access Hospitals
## 3072 (320) 523-1261 Critical Access Hospitals
## 3073 (361) 552-6713 Critical Access Hospitals
## 3074 (323) 462-2271      Acute Care Hospitals
## 3075 (804) 764-6000      Acute Care Hospitals
## 3076 (319) 653-5481 Critical Access Hospitals
## 3077 (620) 378-2121 Critical Access Hospitals
## 3078 (979) 297-4411      Acute Care Hospitals
## 3079 (305) 666-2111      Acute Care Hospitals
## 3080 (570) 893-5024      Acute Care Hospitals
## 3081 (920) 568-5000      Acute Care Hospitals
## 3082 (809) 776-8311      Acute Care Hospitals
## 3083 (402) 274-4366 Critical Access Hospitals
## 3084 (908) 281-1000               Psychiatric
## 3085 (870) 673-3511      Acute Care Hospitals
## 3086 (386) 326-8500      Acute Care Hospitals
## 3087 (507) 385-2646      Acute Care Hospitals
## 3088 (850) 663-7536      Acute Care Hospitals
## 3089 (870) 423-3355 Critical Access Hospitals
## 3090 (215) 947-3000      Acute Care Hospitals
## 3091 (231) 398-1000      Acute Care Hospitals
## 3092 (630) 859-2222      Acute Care Hospitals
## 3093 (207) 777-8100      Acute Care Hospitals
## 3094 (785) 743-2182 Critical Access Hospitals
## 3095 (217) 383-3311      Acute Care Hospitals
## 3096 (989) 723-5211      Acute Care Hospitals
## 3097 (858) 626-4123      Acute Care Hospitals
## 3098 (618) 643-2361 Critical Access Hospitals
## 3099 (270) 692-5145      Acute Care Hospitals
## 3100 (623) 327-4000      Acute Care Hospitals
## 3101 (920) 456-6000      Acute Care Hospitals
## 3102 (607) 737-4100      Acute Care Hospitals
## 3103 (432) 447-3551 Critical Access Hospitals
## 3104 (770) 535-3553      Acute Care Hospitals
## 3105 (214) 647-5300      Acute Care Hospitals
## 3106 (928) 336-7600      Acute Care Hospitals
## 3107 (970) 724-3442 Critical Access Hospitals
## 3108 (334) 749-3411      Acute Care Hospitals
## 3109 (727) 381-1000      Acute Care Hospitals
## 3110 (605) 685-6622 Critical Access Hospitals
## 3111 (913) 319-7633      Acute Care Hospitals
## 3112 (575) 445-7722 Critical Access Hospitals
## 3113 (323) 726-1222      Acute Care Hospitals
## 3114 (731) 642-1220      Acute Care Hospitals
## 3115 (479) 637-4135 Critical Access Hospitals
## 3116 (508) 761-8500               Psychiatric
## 3117 (912) 356-2045               Psychiatric
## 3118 (501) 552-3000      Acute Care Hospitals
## 3119 (530) 846-5671 Critical Access Hospitals
## 3120 (530) 541-3420      Acute Care Hospitals
## 3121 (970) 810-4121      Acute Care Hospitals
## 3122 (512) 324-5000      Acute Care Hospitals
## 3123 (203) 579-6646               Psychiatric
## 3124 (337) 616-7000      Acute Care Hospitals
## 3125 (229) 424-7100      Acute Care Hospitals
## 3126 (610) 988-8000      Acute Care Hospitals
## 3127 (479) 495-2241      Acute Care Hospitals
## 3128 (773) 356-5000      Acute Care Hospitals
## 3129 (605) 355-2500      Acute Care Hospitals
## 3130 (940) 663-2795 Critical Access Hospitals
## 3131 (615) 226-4930               Psychiatric
## 3132 (951) 331-2200      Acute Care Hospitals
## 3133 (386) 676-6000      Acute Care Hospitals
## 3134 (787) 852-0768      Acute Care Hospitals
## 3135 (972) 596-5445               Psychiatric
## 3136 (606) 849-2351      Acute Care Hospitals
## 3137 (218) 332-5005               Psychiatric
## 3138 (812) 265-2611               Psychiatric
## 3139 (615) 902-7565               Psychiatric
## 3140 (419) 238-8627      Acute Care Hospitals
## 3141 (918) 274-5100      Acute Care Hospitals
## 3142 (606) 237-1700      Acute Care Hospitals
## 3143 (937) 395-8165      Acute Care Hospitals
## 3144 (605) 854-3329 Critical Access Hospitals
## 3145 (847) 381-9600      Acute Care Hospitals
## 3146 (270) 338-8000      Acute Care Hospitals
## 3147 (979) 691-3701      Acute Care Hospitals
## 3148 (208) 814-1000      Acute Care Hospitals
## 3149 (402) 245-2428 Critical Access Hospitals
## 3150 (712) 396-6000      Acute Care Hospitals
## 3151 (845) 856-5351      Acute Care Hospitals
## 3152 (612) 273-3000      Acute Care Hospitals
## 3153 (813) 615-7200      Acute Care Hospitals
## 3154 (212) 519-5000      Acute Care Hospitals
## 3155 (307) 746-4491 Critical Access Hospitals
## 3156 (772) 287-5200      Acute Care Hospitals
## 3157 (310) 673-4660      Acute Care Hospitals
## 3158 (423) 907-1440      Acute Care Hospitals
## 3159 (956) 632-4000      Acute Care Hospitals
## 3160 (215) 284-8100      Acute Care Hospitals
## 3161 (410) 550-0123      Acute Care Hospitals
## 3162 (405) 272-7000      Acute Care Hospitals
## 3163 (715) 847-2121      Acute Care Hospitals
## 3164 (808) 932-4100 Critical Access Hospitals
## 3165 (931) 722-5411      Acute Care Hospitals
## 3166 (806) 894-4963      Acute Care Hospitals
## 3167 (402) 717-8167      Acute Care Hospitals
## 3168 (914) 632-5000      Acute Care Hospitals
## 3169 (309) 691-1000      Acute Care Hospitals
## 3170 (816) 404-7000      Acute Care Hospitals
## 3171 (504) 988-5263      Acute Care Hospitals
## 3172 (313) 745-5437                 Childrens
## 3173 (504) 468-4806      Acute Care Hospitals
## 3174 (414) 447-2130      Acute Care Hospitals
## 3175 (817) 748-8700      Acute Care Hospitals
## 3176 (803) 286-1481      Acute Care Hospitals
## 3177 (301) 552-8085      Acute Care Hospitals
## 3178 (906) 774-1313      Acute Care Hospitals
## 3179 (845) 647-6400 Critical Access Hospitals
## 3180 (931) 728-3586      Acute Care Hospitals
## 3181 (703) 689-9000      Acute Care Hospitals
## 3182 (585) 343-6030      Acute Care Hospitals
## 3183 (787) 851-2025               Psychiatric
## 3184 (714) 533-6220      Acute Care Hospitals
## 3185 (315) 785-4121      Acute Care Hospitals
## 3186 (734) 671-3800      Acute Care Hospitals
## 3187 (336) 538-7000      Acute Care Hospitals
## 3188 (269) 686-4101 Critical Access Hospitals
## 3189 (580) 229-0701 Critical Access Hospitals
## 3190 (618) 651-2600 Critical Access Hospitals
## 3191 (706) 468-6411 Critical Access Hospitals
## 3192 (815) 300-1100      Acute Care Hospitals
## 3193 (973) 926-7850      Acute Care Hospitals
## 3194 (707) 961-1234 Critical Access Hospitals
## 3195 (870) 946-3571 Critical Access Hospitals
## 3196 (910) 000-0000      Acute Care Hospitals
## 3197 (210) 575-5000      Acute Care Hospitals
## 3198 (805) 737-3300      Acute Care Hospitals
## 3199 (727) 733-1111      Acute Care Hospitals
## 3200 (940) 764-3055      Acute Care Hospitals
## 3201 (012) 345-6789               Psychiatric
## 3202 (724) 873-5892      Acute Care Hospitals
## 3203 (423) 542-1300      Acute Care Hospitals
## 3204 (808) 432-0000      Acute Care Hospitals
## 3205 (352) 596-6632      Acute Care Hospitals
## 3206 (608) 873-6611 Critical Access Hospitals
## 3207 (763) 762-6803               Psychiatric
## 3208 (972) 810-0700      Acute Care Hospitals
## 3209 (580) 317-9500      Acute Care Hospitals
## 3210 (940) 627-5921      Acute Care Hospitals
## 3211 (406) 728-4100      Acute Care Hospitals
## 3212 (410) 337-1000      Acute Care Hospitals
## 3213 (901) 457-5667               Psychiatric
## 3214 (813) 898-7451                 Childrens
## 3215 (256) 593-8310      Acute Care Hospitals
## 3216 (757) 668-9647                 Childrens
## 3217 (951) 845-1121      Acute Care Hospitals
## 3218 (503) 674-1122      Acute Care Hospitals
## 3219 (702) 616-5000      Acute Care Hospitals
## 3220 (912) 383-5620      Acute Care Hospitals
## 3221 (810) 376-2835 Critical Access Hospitals
## 3222 (904) 276-8500      Acute Care Hospitals
## 3223 (314) 768-8000      Acute Care Hospitals
## 3224 (314) 996-5000      Acute Care Hospitals
## 3225 (405) 756-1404      Acute Care Hospitals
## 3226 (936) 634-8111      Acute Care Hospitals
## 3227 (801) 299-2200      Acute Care Hospitals
## 3228 (865) 471-2500      Acute Care Hospitals
## 3229 (417) 781-2727      Acute Care Hospitals
## 3230 (440) 329-7500      Acute Care Hospitals
## 3231 (303) 730-8900      Acute Care Hospitals
## 3232 (512) 654-6100      Acute Care Hospitals
## 3233 (580) 623-7211 Critical Access Hospitals
## 3234 (210) 402-4092      Acute Care Hospitals
## 3235 (724) 225-7000      Acute Care Hospitals
## 3236 (940) 220-0600      Acute Care Hospitals
## 3237 (706) 213-2535      Acute Care Hospitals
## 3238 (276) 378-1000      Acute Care Hospitals
## 3239 (859) 824-8105 Critical Access Hospitals
## 3240 (731) 968-1801      Acute Care Hospitals
## 3241 (412) 858-2000      Acute Care Hospitals
## 3242 (217) 824-3331 Critical Access Hospitals
## 3243 (740) 383-8400      Acute Care Hospitals
## 3244 (914) 666-1200      Acute Care Hospitals
## 3245 (276) 783-1200               Psychiatric
## 3246 (239) 332-1111      Acute Care Hospitals
## 3247 (731) 885-2410      Acute Care Hospitals
## 3248 (918) 481-4000               Psychiatric
## 3249 (618) 244-5500      Acute Care Hospitals
## 3250 (336) 593-2831 Critical Access Hospitals
## 3251 (806) 647-2191 Critical Access Hospitals
## 3252 (828) 456-7311      Acute Care Hospitals
## 3253 (906) 486-4431 Critical Access Hospitals
## 3254 (760) 873-5811 Critical Access Hospitals
## 3255 (270) 527-4800 Critical Access Hospitals
## 3256 (507) 217-5000 Critical Access Hospitals
## 3257 (513) 948-3600               Psychiatric
## 3258 (201) 383-1035      Acute Care Hospitals
## 3259 (985) 748-9485 Critical Access Hospitals
## 3260 (512) 448-7107      Acute Care Hospitals
## 3261 (617) 983-7000      Acute Care Hospitals
## 3262 (818) 375-3333      Acute Care Hospitals
## 3263 (704) 694-5131      Acute Care Hospitals
## 3264 (928) 755-4541 Critical Access Hospitals
## 3265 (765) 464-0400               Psychiatric
## 3266 (720) 225-1000      Acute Care Hospitals
## 3267 (480) 728-3000      Acute Care Hospitals
## 3268 (787) 777-3232                 Childrens
## 3269 (212) 939-1000      Acute Care Hospitals
## 3270 (281) 492-8888               Psychiatric
## 3271 (281) 540-7700      Acute Care Hospitals
## 3272 (317) 849-8222      Acute Care Hospitals
## 3273 (903) 758-1818      Acute Care Hospitals
## 3274 (787) 622-5420      Acute Care Hospitals
## 3275 (541) 573-7281 Critical Access Hospitals
## 3276 (608) 884-3441 Critical Access Hospitals
## 3277 (360) 299-1300      Acute Care Hospitals
## 3278 (787) 829-5010      Acute Care Hospitals
## 3279 (616) 455-5000               Psychiatric
## 3280 (641) 782-7091 Critical Access Hospitals
## 3281 (609) 914-6000      Acute Care Hospitals
## 3282 (434) 654-7000      Acute Care Hospitals
## 3283 (574) 294-2621      Acute Care Hospitals
## 3284 (970) 495-7000      Acute Care Hospitals
## 3285 (870) 722-3800      Acute Care Hospitals
## 3286 (719) 486-0230 Critical Access Hospitals
## 3287 (503) 944-5000               Psychiatric
## 3288 (717) 733-0311      Acute Care Hospitals
## 3289 (812) 825-1111      Acute Care Hospitals
## 3290 (715) 483-0556 Critical Access Hospitals
## 3291 (330) 725-1000      Acute Care Hospitals
## 3292 (573) 642-3376      Acute Care Hospitals
## 3293 (931) 484-9511      Acute Care Hospitals
## 3294 (816) 228-5900      Acute Care Hospitals
## 3295 (603) 650-5000      Acute Care Hospitals
## 3296 (972) 487-5309               Psychiatric
## 3297 (440) 563-3400      Acute Care Hospitals
## 3298 (706) 596-4020      Acute Care Hospitals
## 3299 (262) 687-4011      Acute Care Hospitals
## 3300 (609) 599-5000      Acute Care Hospitals
## 3301 (732) 557-8000      Acute Care Hospitals
## 3302 (817) 848-4000      Acute Care Hospitals
## 3303 (216) 844-1000                 Childrens
## 3304 (216) 593-5510      Acute Care Hospitals
## 3305 (806) 212-2000      Acute Care Hospitals
## 3306 (225) 869-5512 Critical Access Hospitals
## 3307 (574) 267-3200      Acute Care Hospitals
## 3308 (912) 530-3302      Acute Care Hospitals
## 3309 (410) 578-5050                 Childrens
## 3310 (770) 991-8160      Acute Care Hospitals
## 3311 (810) 667-5500      Acute Care Hospitals
## 3312 (937) 599-7002      Acute Care Hospitals
## 3313 (402) 398-6060      Acute Care Hospitals
## 3314 (603) 752-2200 Critical Access Hospitals
## 3315 (440) 269-6000      Acute Care Hospitals
## 3316 (415) 476-7000               Psychiatric
## 3317 (716) 326-4921      Acute Care Hospitals
## 3318 (918) 967-4682 Critical Access Hospitals
## 3319 (402) 572-3000      Acute Care Hospitals
## 3320 (608) 356-1400      Acute Care Hospitals
## 3321 (918) 307-6000      Acute Care Hospitals
## 3322 (717) 637-3711      Acute Care Hospitals
## 3323 (559) 431-8000      Acute Care Hospitals
## 3324 (618) 942-2171      Acute Care Hospitals
## 3325 (702) 873-2400               Psychiatric
## 3326 (918) 286-5000      Acute Care Hospitals
## 3327 (563) 421-1000      Acute Care Hospitals
## 3328 (406) 585-5000      Acute Care Hospitals
## 3329 (207) 743-5933 Critical Access Hospitals
## 3330 (908) 852-5100      Acute Care Hospitals
## 3331 (812) 275-1200 Critical Access Hospitals
## 3332 (765) 584-0004 Critical Access Hospitals
## 3333 (330) 480-3962      Acute Care Hospitals
## 3334 (801) 581-2121      Acute Care Hospitals
## 3335 (707) 554-5280      Acute Care Hospitals
## 3336 (270) 827-7700      Acute Care Hospitals
## 3337 (732) 431-2000      Acute Care Hospitals
## 3338 (785) 562-2311 Critical Access Hospitals
## 3339 (912) 487-5211 Critical Access Hospitals
## 3340 (440) 960-4000      Acute Care Hospitals
## 3341 (760) 242-2311      Acute Care Hospitals
## 3342 (713) 757-1000      Acute Care Hospitals
## 3343 (409) 853-5900      Acute Care Hospitals
## 3344 (217) 245-9551      Acute Care Hospitals
## 3345 (405) 262-2640      Acute Care Hospitals
## 3346 (708) 923-4000      Acute Care Hospitals
## 3347 (850) 678-4131      Acute Care Hospitals
## 3348 (812) 298-8888               Psychiatric
## 3349 (517) 788-4800      Acute Care Hospitals
## 3350 (201) 833-3000      Acute Care Hospitals
## 3351 (818) 996-1051               Psychiatric
## 3352 (618) 253-7671      Acute Care Hospitals
## 3353 (801) 314-4100      Acute Care Hospitals
## 3354 (406) 822-4841 Critical Access Hospitals
## 3355 (209) 461-2000               Psychiatric
## 3356 (607) 746-0300 Critical Access Hospitals
## 3357 (570) 501-4000      Acute Care Hospitals
## 3358 (731) 479-6057      Acute Care Hospitals
## 3359 (828) 765-4201 Critical Access Hospitals
## 3360 (804) 524-7344      Acute Care Hospitals
## 3361 (334) 493-3541      Acute Care Hospitals
## 3362 (812) 547-7011 Critical Access Hospitals
## 3363 (901) 476-2621      Acute Care Hospitals
## 3364 (801) 268-7700      Acute Care Hospitals
## 3365 (603) 669-5300      Acute Care Hospitals
## 3366 (785) 222-2545 Critical Access Hospitals
## 3367 (814) 623-6161      Acute Care Hospitals
## 3368 (814) 664-4641 Critical Access Hospitals
## 3369 (252) 975-4100      Acute Care Hospitals
## 3370 (406) 842-5453 Critical Access Hospitals
## 3371 (502) 647-4300      Acute Care Hospitals
## 3372 (507) 274-1119 Critical Access Hospitals
## 3373 (515) 263-5612      Acute Care Hospitals
## 3374 (641) 464-3226 Critical Access Hospitals
## 3375 (334) 774-2601      Acute Care Hospitals
## 3376 (317) 941-4000               Psychiatric
## 3377 (317) 956-1000      Acute Care Hospitals
## 3378 (601) 437-5141 Critical Access Hospitals
## 3379 (484) 503-3000      Acute Care Hospitals
## 3380 (562) 933-2000      Acute Care Hospitals
## 3381 (509) 773-4022 Critical Access Hospitals
## 3382 (620) 492-6250 Critical Access Hospitals
## 3383 (928) 527-1899               Psychiatric
## 3384 (620) 382-2177 Critical Access Hospitals
## 3385 (336) 716-2011      Acute Care Hospitals
## 3386 (606) 787-6275 Critical Access Hospitals
## 3387 (325) 754-4553 Critical Access Hospitals
## 3388 (616) 392-5141      Acute Care Hospitals
## 3389 (703) 776-4001      Acute Care Hospitals
## 3390 (518) 873-6377 Critical Access Hospitals
## 3391 (817) 548-6100      Acute Care Hospitals
## 3392 (507) 526-3273 Critical Access Hospitals
## 3393 (605) 472-1110 Critical Access Hospitals
## 3394 (561) 622-1411      Acute Care Hospitals
## 3395 (478) 934-6211 Critical Access Hospitals
## 3396 (320) 289-8508 Critical Access Hospitals
## 3397 (712) 732-4030 Critical Access Hospitals
## 3398 (715) 384-2188               Psychiatric
## 3399 (212) 263-7300      Acute Care Hospitals
## 3400 (406) 455-5000      Acute Care Hospitals
## 3401 (304) 799-7400 Critical Access Hospitals
## 3402 (402) 993-2283 Critical Access Hospitals
## 3403 (407) 567-4000                 Childrens
## 3404 (405) 657-3000      Acute Care Hospitals
## 3405 (419) 824-1444      Acute Care Hospitals
## 3406 (816) 347-5000      Acute Care Hospitals
## 3407 (336) 248-5161      Acute Care Hospitals
## 3408 (405) 372-1480      Acute Care Hospitals
## 3409 (501) 977-2300 Critical Access Hospitals
## 3410 (424) 835-6808      Acute Care Hospitals
## 3411 (509) 659-1200 Critical Access Hospitals
## 3412 (409) 283-8141      Acute Care Hospitals
## 3413 (303) 778-1955      Acute Care Hospitals
## 3414 (601) 792-4276 Critical Access Hospitals
## 3415 (312) 770-2000      Acute Care Hospitals
## 3416 (208) 226-3200 Critical Access Hospitals
## 3417 (931) 783-2000      Acute Care Hospitals
## 3418 (912) 263-4171 Critical Access Hospitals
## 3419 (618) 463-7300      Acute Care Hospitals
## 3420 (818) 881-0800      Acute Care Hospitals
## 3421 (920) 794-5000      Acute Care Hospitals
## 3422 (325) 428-1000      Acute Care Hospitals
## 3423 (907) 747-3241 Critical Access Hospitals
## 3424 (973) 429-6000      Acute Care Hospitals
## 3425 (701) 683-5241 Critical Access Hospitals
## 3426 (218) 743-3177 Critical Access Hospitals
## 3427 (850) 934-2000      Acute Care Hospitals
## 3428 (409) 267-3143 Critical Access Hospitals
## 3429 (210) 921-2000      Acute Care Hospitals
## 3430 (606) 833-3600      Acute Care Hospitals
## 3431 (480) 412-3000      Acute Care Hospitals
## 3432 (608) 785-0940      Acute Care Hospitals
## 3433 (256) 354-2131      Acute Care Hospitals
## 3434 (914) 366-3000      Acute Care Hospitals
## 3435 (662) 562-3100      Acute Care Hospitals
## 3436 (262) 928-1000      Acute Care Hospitals
## 3437 (202) 745-6100      Acute Care Hospitals
## 3438 (714) 993-2000      Acute Care Hospitals
## 3439 (715) 361-2000      Acute Care Hospitals
## 3440 (208) 785-3804 Critical Access Hospitals
## 3441 (620) 653-2114 Critical Access Hospitals
## 3442 (715) 717-7200      Acute Care Hospitals
## 3443 (208) 785-1200               Psychiatric
## 3444 (863) 422-4971      Acute Care Hospitals
## 3445 (801) 408-1100      Acute Care Hospitals
## 3446 (607) 737-4739               Psychiatric
## 3447 (205) 392-5263      Acute Care Hospitals
## 3448 (504) 849-4900      Acute Care Hospitals
##                               Hospital_Ownership Emergency_Services
## 1                                    Proprietary               true
## 2                             Government - State              false
## 3                                    Proprietary              false
## 4                                    Proprietary               true
## 5                             Government - State              false
## 6                             Government - Local               true
## 7                                    Proprietary              false
## 8                                    Proprietary               true
## 9                                    Proprietary              false
## 10                Voluntary non-profit - Private               true
## 11                                   Proprietary              false
## 12                Voluntary non-profit - Private               true
## 13                                   Proprietary              false
## 14                            Government - State               true
## 15                            Government - Local               true
## 16                Voluntary non-profit - Private              false
## 17   Government - Hospital District or Authority               true
## 18                                   Proprietary               true
## 19                                   Proprietary              false
## 20                            Government - State              false
## 21                                     Physician              false
## 22                Voluntary non-profit - Private               true
## 23                Voluntary non-profit - Private               true
## 24                                   Proprietary               true
## 25                          Government - Federal               true
## 26                                        Tribal               true
## 27                                   Proprietary              false
## 28                Voluntary non-profit - Private               true
## 29                Voluntary non-profit - Private               true
## 30                            Government - Local               true
## 31                            Government - Local               true
## 32                                   Proprietary              false
## 33                            Government - State              false
## 34                                   Proprietary              false
## 35   Government - Hospital District or Authority               true
## 36                                   Proprietary              false
## 37                                   Proprietary               true
## 38                Voluntary non-profit - Private               true
## 39                                   Proprietary              false
## 40                                   Proprietary               true
## 41                                   Proprietary              false
## 42   Government - Hospital District or Authority              false
## 43                Voluntary non-profit - Private               true
## 44                                   Proprietary               true
## 45                                   Proprietary              false
## 46                            Government - State              false
## 47                Voluntary non-profit - Private               true
## 48                            Government - Local               true
## 49                            Government - State              false
## 50                                   Proprietary              false
## 51                                   Proprietary              false
## 52                                   Proprietary              false
## 53                                   Proprietary               true
## 54                                   Proprietary              false
## 55                            Government - State              false
## 56                  Voluntary non-profit - Other               true
## 57                Voluntary non-profit - Private               true
## 58                                   Proprietary              false
## 59                                     Physician              false
## 60                Voluntary non-profit - Private               true
## 61                Voluntary non-profit - Private              false
## 62                Voluntary non-profit - Private               true
## 63                Voluntary non-profit - Private              false
## 64                                   Proprietary               true
## 65                            Government - Local               true
## 66                Voluntary non-profit - Private               true
## 67                Voluntary non-profit - Private               true
## 68                Voluntary non-profit - Private              false
## 69   Government - Hospital District or Authority               true
## 70                Voluntary non-profit - Private               true
## 71                Voluntary non-profit - Private               true
## 72                 Voluntary non-profit - Church               true
## 73                Voluntary non-profit - Private               true
## 74                Voluntary non-profit - Private               true
## 75   Government - Hospital District or Authority               true
## 76                                   Proprietary               true
## 77                                   Proprietary              false
## 78                Voluntary non-profit - Private               true
## 79                Voluntary non-profit - Private               true
## 80                                   Proprietary               true
## 81                            Government - State              false
## 82   Government - Hospital District or Authority               true
## 83                            Government - State              false
## 84                            Government - Local               true
## 85                                   Proprietary              false
## 86   Government - Hospital District or Authority               true
## 87                Voluntary non-profit - Private               true
## 88                                   Proprietary              false
## 89                            Government - Local               true
## 90                  Voluntary non-profit - Other               true
## 91                Voluntary non-profit - Private               true
## 92                                   Proprietary               true
## 93                Voluntary non-profit - Private               true
## 94                                   Proprietary               true
## 95                Voluntary non-profit - Private               true
## 96                Voluntary non-profit - Private               true
## 97                 Voluntary non-profit - Church              false
## 98                Voluntary non-profit - Private               true
## 99                Voluntary non-profit - Private               true
## 100                                  Proprietary               true
## 101               Voluntary non-profit - Private               true
## 102                 Voluntary non-profit - Other               true
## 103               Voluntary non-profit - Private               true
## 104                                  Proprietary               true
## 105                                  Proprietary               true
## 106                                  Proprietary               true
## 107                 Voluntary non-profit - Other               true
## 108               Voluntary non-profit - Private               true
## 109               Voluntary non-profit - Private               true
## 110                                    Physician              false
## 111               Voluntary non-profit - Private               true
## 112               Voluntary non-profit - Private               true
## 113                Voluntary non-profit - Church               true
## 114                                  Proprietary               true
## 115               Voluntary non-profit - Private               true
## 116                         Government - Federal               true
## 117               Voluntary non-profit - Private              false
## 118               Voluntary non-profit - Private               true
## 119               Voluntary non-profit - Private               true
## 120  Government - Hospital District or Authority               true
## 121               Voluntary non-profit - Private               true
## 122                                  Proprietary              false
## 123               Voluntary non-profit - Private               true
## 124                Voluntary non-profit - Church               true
## 125                           Government - State               true
## 126                                  Proprietary              false
## 127                                  Proprietary               true
## 128                Voluntary non-profit - Church               true
## 129                                  Proprietary               true
## 130                Voluntary non-profit - Church               true
## 131               Voluntary non-profit - Private               true
## 132               Voluntary non-profit - Private               true
## 133               Voluntary non-profit - Private               true
## 134               Voluntary non-profit - Private               true
## 135  Government - Hospital District or Authority               true
## 136                           Government - Local               true
## 137                Voluntary non-profit - Church               true
## 138                           Government - State              false
## 139               Voluntary non-profit - Private               true
## 140                                  Proprietary               true
## 141               Voluntary non-profit - Private               true
## 142                           Government - State              false
## 143               Voluntary non-profit - Private              false
## 144               Voluntary non-profit - Private               true
## 145                                  Proprietary               true
## 146               Voluntary non-profit - Private               true
## 147  Government - Hospital District or Authority               true
## 148               Voluntary non-profit - Private               true
## 149               Voluntary non-profit - Private               true
## 150                         Government - Federal               true
## 151                Voluntary non-profit - Church               true
## 152                                  Proprietary               true
## 153               Voluntary non-profit - Private               true
## 154               Voluntary non-profit - Private               true
## 155               Voluntary non-profit - Private               true
## 156                                  Proprietary               true
## 157  Government - Hospital District or Authority               true
## 158                                    Physician              false
## 159                                  Proprietary               true
## 160               Voluntary non-profit - Private               true
## 161               Voluntary non-profit - Private               true
## 162               Voluntary non-profit - Private               true
## 163                                  Proprietary               true
## 164  Government - Hospital District or Authority               true
## 165                           Government - Local               true
## 166                 Voluntary non-profit - Other               true
## 167               Voluntary non-profit - Private               true
## 168               Voluntary non-profit - Private               true
## 169                           Government - Local              false
## 170               Voluntary non-profit - Private               true
## 171  Government - Hospital District or Authority               true
## 172                                  Proprietary               true
## 173  Government - Hospital District or Authority               true
## 174                 Voluntary non-profit - Other               true
## 175  Government - Hospital District or Authority               true
## 176               Voluntary non-profit - Private               true
## 177                 Voluntary non-profit - Other               true
## 178                                    Physician              false
## 179  Government - Hospital District or Authority               true
## 180                           Government - State               true
## 181                         Government - Federal               true
## 182                                  Proprietary               true
## 183                           Government - Local               true
## 184               Voluntary non-profit - Private               true
## 185                 Voluntary non-profit - Other              false
## 186               Voluntary non-profit - Private               true
## 187                           Government - Local               true
## 188  Government - Hospital District or Authority              false
## 189               Voluntary non-profit - Private               true
## 190               Voluntary non-profit - Private               true
## 191  Government - Hospital District or Authority               true
## 192               Voluntary non-profit - Private               true
## 193                                  Proprietary               true
## 194                                  Proprietary               true
## 195               Voluntary non-profit - Private               true
## 196               Voluntary non-profit - Private               true
## 197               Voluntary non-profit - Private               true
## 198               Voluntary non-profit - Private               true
## 199  Government - Hospital District or Authority               true
## 200                           Government - Local               true
## 201               Voluntary non-profit - Private              false
## 202               Voluntary non-profit - Private               true
## 203                                  Proprietary              false
## 204                 Voluntary non-profit - Other               true
## 205  Government - Hospital District or Authority               true
## 206               Voluntary non-profit - Private               true
## 207                           Government - Local               true
## 208               Voluntary non-profit - Private               true
## 209                                  Proprietary               true
## 210                           Government - Local               true
## 211                 Voluntary non-profit - Other              false
## 212               Voluntary non-profit - Private               true
## 213  Government - Hospital District or Authority               true
## 214                                  Proprietary               true
## 215                           Government - Local               true
## 216                Voluntary non-profit - Church               true
## 217                                  Proprietary               true
## 218               Voluntary non-profit - Private               true
## 219               Voluntary non-profit - Private               true
## 220  Government - Hospital District or Authority               true
## 221               Voluntary non-profit - Private              false
## 222                           Government - Local               true
## 223                           Government - Local               true
## 224               Voluntary non-profit - Private               true
## 225                                  Proprietary               true
## 226                                  Proprietary               true
## 227                                  Proprietary               true
## 228                           Government - Local               true
## 229                 Voluntary non-profit - Other               true
## 230  Government - Hospital District or Authority               true
## 231               Voluntary non-profit - Private               true
## 232                 Voluntary non-profit - Other               true
## 233  Government - Hospital District or Authority               true
## 234               Voluntary non-profit - Private               true
## 235                                  Proprietary               true
## 236                 Voluntary non-profit - Other              false
## 237               Voluntary non-profit - Private               true
## 238               Voluntary non-profit - Private               true
## 239               Voluntary non-profit - Private               true
## 240                                  Proprietary              false
## 241                Voluntary non-profit - Church               true
## 242               Voluntary non-profit - Private               true
## 243                                  Proprietary               true
## 244               Voluntary non-profit - Private               true
## 245                           Government - State               true
## 246               Voluntary non-profit - Private               true
## 247               Voluntary non-profit - Private               true
## 248                                  Proprietary               true
## 249                                  Proprietary              false
## 250               Voluntary non-profit - Private               true
## 251                                  Proprietary               true
## 252               Voluntary non-profit - Private              false
## 253               Voluntary non-profit - Private               true
## 254               Voluntary non-profit - Private               true
## 255                                  Proprietary               true
## 256                Voluntary non-profit - Church               true
## 257                                  Proprietary               true
## 258               Voluntary non-profit - Private               true
## 259                                  Proprietary               true
## 260               Voluntary non-profit - Private               true
## 261                                  Proprietary              false
## 262               Voluntary non-profit - Private              false
## 263  Government - Hospital District or Authority               true
## 264  Government - Hospital District or Authority               true
## 265                           Government - Local               true
## 266               Voluntary non-profit - Private               true
## 267               Voluntary non-profit - Private               true
## 268                                  Proprietary               true
## 269                 Voluntary non-profit - Other               true
## 270                           Government - Local               true
## 271               Voluntary non-profit - Private               true
## 272               Voluntary non-profit - Private               true
## 273               Voluntary non-profit - Private               true
## 274               Voluntary non-profit - Private               true
## 275  Government - Hospital District or Authority               true
## 276                           Government - State               true
## 277               Voluntary non-profit - Private               true
## 278                 Voluntary non-profit - Other               true
## 279                                  Proprietary               true
## 280               Voluntary non-profit - Private               true
## 281               Voluntary non-profit - Private               true
## 282               Voluntary non-profit - Private               true
## 283               Voluntary non-profit - Private               true
## 284                                  Proprietary               true
## 285  Government - Hospital District or Authority              false
## 286  Government - Hospital District or Authority               true
## 287               Voluntary non-profit - Private              false
## 288                           Government - Local               true
## 289                                  Proprietary               true
## 290                                  Proprietary               true
## 291               Voluntary non-profit - Private               true
## 292               Voluntary non-profit - Private              false
## 293                                  Proprietary               true
## 294                                  Proprietary              false
## 295               Voluntary non-profit - Private               true
## 296                           Government - State              false
## 297               Voluntary non-profit - Private               true
## 298               Voluntary non-profit - Private               true
## 299                           Government - State              false
## 300               Voluntary non-profit - Private               true
## 301                           Government - State              false
## 302  Government - Hospital District or Authority               true
## 303                 Voluntary non-profit - Other               true
## 304                                    Physician               true
## 305               Voluntary non-profit - Private              false
## 306               Voluntary non-profit - Private              false
## 307                                  Proprietary               true
## 308  Government - Hospital District or Authority               true
## 309                                  Proprietary               true
## 310                                  Proprietary              false
## 311                                  Proprietary               true
## 312               Voluntary non-profit - Private               true
## 313               Voluntary non-profit - Private               true
## 314                                  Proprietary               true
## 315  Government - Hospital District or Authority               true
## 316               Voluntary non-profit - Private               true
## 317                Voluntary non-profit - Church               true
## 318               Voluntary non-profit - Private               true
## 319                                  Proprietary               true
## 320                                    Physician              false
## 321               Voluntary non-profit - Private               true
## 322               Voluntary non-profit - Private               true
## 323               Voluntary non-profit - Private               true
## 324                           Government - State              false
## 325                                  Proprietary               true
## 326               Voluntary non-profit - Private               true
## 327                 Voluntary non-profit - Other               true
## 328                                    Physician               true
## 329                           Government - Local               true
## 330                                  Proprietary              false
## 331               Voluntary non-profit - Private               true
## 332               Voluntary non-profit - Private               true
## 333                                  Proprietary               true
## 334                Voluntary non-profit - Church               true
## 335               Voluntary non-profit - Private               true
## 336                                  Proprietary              false
## 337               Voluntary non-profit - Private               true
## 338                                  Proprietary              false
## 339                Voluntary non-profit - Church              false
## 340                                  Proprietary               true
## 341                Voluntary non-profit - Church               true
## 342  Government - Hospital District or Authority               true
## 343               Voluntary non-profit - Private               true
## 344                                  Proprietary              false
## 345                Voluntary non-profit - Church               true
## 346               Voluntary non-profit - Private               true
## 347                                  Proprietary              false
## 348               Voluntary non-profit - Private               true
## 349               Voluntary non-profit - Private               true
## 350                 Voluntary non-profit - Other               true
## 351  Government - Hospital District or Authority               true
## 352               Voluntary non-profit - Private               true
## 353                         Government - Federal               true
## 354                                  Proprietary               true
## 355                           Government - Local               true
## 356                                  Proprietary               true
## 357  Government - Hospital District or Authority               true
## 358               Voluntary non-profit - Private               true
## 359               Voluntary non-profit - Private               true
## 360  Government - Hospital District or Authority               true
## 361                                  Proprietary               true
## 362               Voluntary non-profit - Private               true
## 363                Voluntary non-profit - Church               true
## 364  Government - Hospital District or Authority               true
## 365  Government - Hospital District or Authority               true
## 366               Voluntary non-profit - Private               true
## 367                Voluntary non-profit - Church               true
## 368                Voluntary non-profit - Church               true
## 369                 Voluntary non-profit - Other               true
## 370               Voluntary non-profit - Private               true
## 371               Voluntary non-profit - Private               true
## 372               Voluntary non-profit - Private               true
## 373               Voluntary non-profit - Private               true
## 374                         Government - Federal               true
## 375               Voluntary non-profit - Private              false
## 376               Voluntary non-profit - Private               true
## 377                         Government - Federal               true
## 378                 Voluntary non-profit - Other               true
## 379                         Government - Federal              false
## 380               Voluntary non-profit - Private               true
## 381                                  Proprietary               true
## 382               Voluntary non-profit - Private               true
## 383                Voluntary non-profit - Church               true
## 384                                  Proprietary              false
## 385                           Government - State              false
## 386                                    Physician               true
## 387                 Voluntary non-profit - Other              false
## 388  Government - Hospital District or Authority               true
## 389               Voluntary non-profit - Private               true
## 390               Voluntary non-profit - Private               true
## 391                                  Proprietary               true
## 392               Voluntary non-profit - Private               true
## 393               Voluntary non-profit - Private               true
## 394               Voluntary non-profit - Private               true
## 395               Voluntary non-profit - Private               true
## 396                 Voluntary non-profit - Other               true
## 397  Government - Hospital District or Authority               true
## 398                           Government - Local              false
## 399               Voluntary non-profit - Private               true
## 400               Voluntary non-profit - Private               true
## 401                                  Proprietary              false
## 402                 Voluntary non-profit - Other               true
## 403                           Government - Local               true
## 404                           Government - State               true
## 405                                  Proprietary              false
## 406  Government - Hospital District or Authority               true
## 407               Voluntary non-profit - Private              false
## 408               Voluntary non-profit - Private               true
## 409  Government - Hospital District or Authority               true
## 410                                  Proprietary              false
## 411               Voluntary non-profit - Private               true
## 412               Voluntary non-profit - Private               true
## 413               Voluntary non-profit - Private               true
## 414                 Voluntary non-profit - Other               true
## 415  Government - Hospital District or Authority               true
## 416               Voluntary non-profit - Private               true
## 417                           Government - Local               true
## 418                                  Proprietary              false
## 419                Voluntary non-profit - Church               true
## 420                                  Proprietary               true
## 421                                  Proprietary               true
## 422               Voluntary non-profit - Private               true
## 423                Voluntary non-profit - Church               true
## 424               Voluntary non-profit - Private              false
## 425                                  Proprietary               true
## 426                                  Proprietary               true
## 427  Government - Hospital District or Authority               true
## 428                           Government - Local               true
## 429                                  Proprietary              false
## 430               Voluntary non-profit - Private               true
## 431               Voluntary non-profit - Private               true
## 432               Voluntary non-profit - Private               true
## 433               Voluntary non-profit - Private               true
## 434                Voluntary non-profit - Church               true
## 435                 Voluntary non-profit - Other               true
## 436                                  Proprietary               true
## 437  Government - Hospital District or Authority               true
## 438               Voluntary non-profit - Private               true
## 439               Voluntary non-profit - Private               true
## 440                           Government - Local              false
## 441               Voluntary non-profit - Private               true
## 442  Government - Hospital District or Authority               true
## 443               Voluntary non-profit - Private               true
## 444                                  Proprietary               true
## 445               Voluntary non-profit - Private               true
## 446               Voluntary non-profit - Private               true
## 447                Voluntary non-profit - Church               true
## 448               Voluntary non-profit - Private              false
## 449               Voluntary non-profit - Private               true
## 450                                  Proprietary               true
## 451                                  Proprietary              false
## 452                 Voluntary non-profit - Other              false
## 453               Voluntary non-profit - Private               true
## 454                 Voluntary non-profit - Other               true
## 455               Voluntary non-profit - Private               true
## 456               Voluntary non-profit - Private               true
## 457               Voluntary non-profit - Private               true
## 458                         Government - Federal               true
## 459                Voluntary non-profit - Church               true
## 460                           Government - State               true
## 461               Voluntary non-profit - Private               true
## 462               Voluntary non-profit - Private               true
## 463               Voluntary non-profit - Private               true
## 464               Voluntary non-profit - Private               true
## 465                 Voluntary non-profit - Other               true
## 466               Voluntary non-profit - Private               true
## 467                 Voluntary non-profit - Other               true
## 468               Voluntary non-profit - Private               true
## 469                           Government - Local               true
## 470               Voluntary non-profit - Private               true
## 471                                  Proprietary               true
## 472               Voluntary non-profit - Private               true
## 473               Voluntary non-profit - Private               true
## 474                                  Proprietary               true
## 475               Voluntary non-profit - Private              false
## 476               Voluntary non-profit - Private               true
## 477               Voluntary non-profit - Private               true
## 478                           Government - Local               true
## 479                         Government - Federal               true
## 480                 Voluntary non-profit - Other               true
## 481  Government - Hospital District or Authority               true
## 482                Voluntary non-profit - Church               true
## 483               Voluntary non-profit - Private               true
## 484                           Government - Local               true
## 485               Voluntary non-profit - Private               true
## 486               Voluntary non-profit - Private               true
## 487                Voluntary non-profit - Church               true
## 488               Voluntary non-profit - Private               true
## 489                Voluntary non-profit - Church               true
## 490                                  Proprietary              false
## 491                Voluntary non-profit - Church               true
## 492               Voluntary non-profit - Private               true
## 493                Voluntary non-profit - Church               true
## 494                                  Proprietary               true
## 495                           Government - State               true
## 496               Voluntary non-profit - Private               true
## 497                Voluntary non-profit - Church               true
## 498                Voluntary non-profit - Church               true
## 499                           Government - Local               true
## 500               Voluntary non-profit - Private               true
## 501                           Government - Local              false
## 502                           Government - State              false
## 503               Voluntary non-profit - Private               true
## 504               Voluntary non-profit - Private               true
## 505               Voluntary non-profit - Private               true
## 506               Voluntary non-profit - Private              false
## 507                                  Proprietary              false
## 508  Government - Hospital District or Authority               true
## 509               Voluntary non-profit - Private              false
## 510               Voluntary non-profit - Private               true
## 511               Voluntary non-profit - Private               true
## 512               Voluntary non-profit - Private               true
## 513                Voluntary non-profit - Church               true
## 514                Voluntary non-profit - Church               true
## 515               Voluntary non-profit - Private               true
## 516                 Voluntary non-profit - Other               true
## 517                                  Proprietary              false
## 518               Voluntary non-profit - Private               true
## 519               Voluntary non-profit - Private               true
## 520               Voluntary non-profit - Private               true
## 521               Voluntary non-profit - Private               true
## 522                                  Proprietary               true
## 523               Voluntary non-profit - Private               true
## 524                 Voluntary non-profit - Other               true
## 525                 Voluntary non-profit - Other               true
## 526               Voluntary non-profit - Private              false
## 527               Voluntary non-profit - Private               true
## 528                 Voluntary non-profit - Other              false
## 529                                    Physician               true
## 530                 Voluntary non-profit - Other               true
## 531  Government - Hospital District or Authority               true
## 532                                  Proprietary               true
## 533               Voluntary non-profit - Private               true
## 534  Government - Hospital District or Authority               true
## 535  Government - Hospital District or Authority               true
## 536                                  Proprietary               true
## 537                                  Proprietary               true
## 538               Voluntary non-profit - Private               true
## 539                 Voluntary non-profit - Other               true
## 540                 Voluntary non-profit - Other               true
## 541               Voluntary non-profit - Private               true
## 542               Voluntary non-profit - Private               true
## 543                 Voluntary non-profit - Other               true
## 544                         Government - Federal               true
## 545               Voluntary non-profit - Private               true
## 546               Voluntary non-profit - Private               true
## 547               Voluntary non-profit - Private               true
## 548                           Government - State               true
## 549                Voluntary non-profit - Church               true
## 550  Government - Hospital District or Authority               true
## 551               Voluntary non-profit - Private              false
## 552               Voluntary non-profit - Private               true
## 553               Voluntary non-profit - Private               true
## 554                           Government - Local               true
## 555               Voluntary non-profit - Private               true
## 556               Voluntary non-profit - Private               true
## 557               Voluntary non-profit - Private               true
## 558               Voluntary non-profit - Private               true
## 559                 Voluntary non-profit - Other               true
## 560               Voluntary non-profit - Private               true
## 561                                  Proprietary               true
## 562                                  Proprietary               true
## 563               Voluntary non-profit - Private               true
## 564                 Voluntary non-profit - Other              false
## 565                           Government - Local               true
## 566                 Voluntary non-profit - Other               true
## 567                 Voluntary non-profit - Other               true
## 568               Voluntary non-profit - Private               true
## 569  Government - Hospital District or Authority               true
## 570                 Voluntary non-profit - Other               true
## 571               Voluntary non-profit - Private               true
## 572  Government - Hospital District or Authority               true
## 573               Voluntary non-profit - Private               true
## 574               Voluntary non-profit - Private               true
## 575               Voluntary non-profit - Private              false
## 576               Voluntary non-profit - Private               true
## 577               Voluntary non-profit - Private               true
## 578  Government - Hospital District or Authority               true
## 579                                  Proprietary              false
## 580               Voluntary non-profit - Private               true
## 581               Voluntary non-profit - Private              false
## 582               Voluntary non-profit - Private               true
## 583               Voluntary non-profit - Private               true
## 584               Voluntary non-profit - Private               true
## 585  Government - Hospital District or Authority               true
## 586  Government - Hospital District or Authority               true
## 587                                  Proprietary               true
## 588               Voluntary non-profit - Private               true
## 589                                  Proprietary              false
## 590                 Voluntary non-profit - Other              false
## 591               Voluntary non-profit - Private               true
## 592  Government - Hospital District or Authority               true
## 593                           Government - Local               true
## 594                           Government - State              false
## 595               Voluntary non-profit - Private               true
## 596  Government - Hospital District or Authority               true
## 597               Voluntary non-profit - Private               true
## 598               Voluntary non-profit - Private              false
## 599               Voluntary non-profit - Private               true
## 600               Voluntary non-profit - Private               true
## 601               Voluntary non-profit - Private               true
## 602               Voluntary non-profit - Private               true
## 603                                  Proprietary               true
## 604               Voluntary non-profit - Private               true
## 605                                  Proprietary              false
## 606                 Voluntary non-profit - Other               true
## 607               Voluntary non-profit - Private               true
## 608  Government - Hospital District or Authority               true
## 609                                  Proprietary              false
## 610               Voluntary non-profit - Private               true
## 611                                  Proprietary              false
## 612               Voluntary non-profit - Private               true
## 613                                  Proprietary               true
## 614                           Government - Local               true
## 615                                  Proprietary               true
## 616                                  Proprietary               true
## 617               Voluntary non-profit - Private               true
## 618               Voluntary non-profit - Private               true
## 619               Voluntary non-profit - Private               true
## 620                Voluntary non-profit - Church               true
## 621                           Government - Local               true
## 622               Voluntary non-profit - Private               true
## 623                           Government - State              false
## 624                           Government - Local               true
## 625                                  Proprietary               true
## 626                Voluntary non-profit - Church               true
## 627               Voluntary non-profit - Private               true
## 628                                    Physician              false
## 629               Voluntary non-profit - Private               true
## 630                                  Proprietary               true
## 631                           Government - Local               true
## 632                           Government - State              false
## 633               Voluntary non-profit - Private               true
## 634                 Voluntary non-profit - Other               true
## 635                                  Proprietary               true
## 636  Government - Hospital District or Authority               true
## 637  Government - Hospital District or Authority               true
## 638                                  Proprietary               true
## 639               Voluntary non-profit - Private               true
## 640  Government - Hospital District or Authority               true
## 641                                  Proprietary               true
## 642                         Government - Federal               true
## 643               Voluntary non-profit - Private               true
## 644               Voluntary non-profit - Private               true
## 645                           Government - Local              false
## 646                                  Proprietary              false
## 647  Government - Hospital District or Authority               true
## 648               Voluntary non-profit - Private               true
## 649  Government - Hospital District or Authority               true
## 650                Voluntary non-profit - Church               true
## 651                                  Proprietary              false
## 652               Voluntary non-profit - Private               true
## 653                 Voluntary non-profit - Other               true
## 654               Voluntary non-profit - Private               true
## 655  Government - Hospital District or Authority               true
## 656               Voluntary non-profit - Private               true
## 657               Voluntary non-profit - Private               true
## 658               Voluntary non-profit - Private               true
## 659               Voluntary non-profit - Private               true
## 660                                  Proprietary               true
## 661               Voluntary non-profit - Private               true
## 662               Voluntary non-profit - Private               true
## 663               Voluntary non-profit - Private               true
## 664  Government - Hospital District or Authority               true
## 665                                    Physician              false
## 666  Government - Hospital District or Authority               true
## 667                           Government - Local               true
## 668                                  Proprietary              false
## 669               Voluntary non-profit - Private               true
## 670                           Government - State               true
## 671               Voluntary non-profit - Private               true
## 672                                  Proprietary               true
## 673               Voluntary non-profit - Private               true
## 674               Voluntary non-profit - Private               true
## 675                                  Proprietary               true
## 676                                  Proprietary               true
## 677                                  Proprietary               true
## 678               Voluntary non-profit - Private               true
## 679                 Voluntary non-profit - Other               true
## 680               Voluntary non-profit - Private               true
## 681                Voluntary non-profit - Church              false
## 682                Voluntary non-profit - Church               true
## 683               Voluntary non-profit - Private               true
## 684               Voluntary non-profit - Private              false
## 685                                  Proprietary               true
## 686               Voluntary non-profit - Private               true
## 687                 Voluntary non-profit - Other               true
## 688                                  Proprietary              false
## 689               Voluntary non-profit - Private               true
## 690               Voluntary non-profit - Private               true
## 691                                  Proprietary               true
## 692               Voluntary non-profit - Private               true
## 693                                  Proprietary               true
## 694                                  Proprietary               true
## 695               Voluntary non-profit - Private               true
## 696                                  Proprietary               true
## 697  Government - Hospital District or Authority               true
## 698               Voluntary non-profit - Private               true
## 699                 Voluntary non-profit - Other               true
## 700  Government - Hospital District or Authority               true
## 701               Voluntary non-profit - Private               true
## 702               Voluntary non-profit - Private              false
## 703                           Government - State               true
## 704               Voluntary non-profit - Private               true
## 705                 Voluntary non-profit - Other               true
## 706                                  Proprietary              false
## 707               Voluntary non-profit - Private               true
## 708                Voluntary non-profit - Church               true
## 709  Government - Hospital District or Authority               true
## 710                           Government - Local               true
## 711                 Voluntary non-profit - Other               true
## 712  Government - Hospital District or Authority               true
## 713                           Government - Local               true
## 714                           Government - Local               true
## 715                Voluntary non-profit - Church               true
## 716                           Government - Local               true
## 717               Voluntary non-profit - Private               true
## 718                                  Proprietary              false
## 719                           Government - Local               true
## 720               Voluntary non-profit - Private               true
## 721                                  Proprietary               true
## 722                           Government - Local               true
## 723                                  Proprietary               true
## 724               Voluntary non-profit - Private               true
## 725                 Voluntary non-profit - Other               true
## 726               Voluntary non-profit - Private              false
## 727                                  Proprietary               true
## 728                 Voluntary non-profit - Other               true
## 729               Voluntary non-profit - Private               true
## 730                                  Proprietary               true
## 731                 Voluntary non-profit - Other               true
## 732  Government - Hospital District or Authority               true
## 733  Government - Hospital District or Authority               true
## 734                 Voluntary non-profit - Other              false
## 735  Government - Hospital District or Authority               true
## 736               Voluntary non-profit - Private               true
## 737                           Government - Local               true
## 738               Voluntary non-profit - Private               true
## 739                           Government - Local               true
## 740                           Government - State              false
## 741                                  Proprietary               true
## 742               Voluntary non-profit - Private               true
## 743                Voluntary non-profit - Church              false
## 744                           Government - Local               true
## 745                           Government - State              false
## 746               Voluntary non-profit - Private              false
## 747               Voluntary non-profit - Private               true
## 748               Voluntary non-profit - Private               true
## 749                           Government - State              false
## 750                           Government - Local               true
## 751                                  Proprietary              false
## 752                           Government - State               true
## 753               Voluntary non-profit - Private               true
## 754               Voluntary non-profit - Private               true
## 755               Voluntary non-profit - Private               true
## 756               Voluntary non-profit - Private               true
## 757               Voluntary non-profit - Private              false
## 758               Voluntary non-profit - Private               true
## 759                                  Proprietary              false
## 760               Voluntary non-profit - Private               true
## 761  Government - Hospital District or Authority               true
## 762               Voluntary non-profit - Private               true
## 763               Voluntary non-profit - Private              false
## 764                                  Proprietary               true
## 765                 Voluntary non-profit - Other               true
## 766                                  Proprietary               true
## 767               Voluntary non-profit - Private               true
## 768               Voluntary non-profit - Private              false
## 769                           Government - State               true
## 770               Voluntary non-profit - Private               true
## 771               Voluntary non-profit - Private              false
## 772                                  Proprietary               true
## 773               Voluntary non-profit - Private               true
## 774                 Voluntary non-profit - Other               true
## 775                                  Proprietary               true
## 776               Voluntary non-profit - Private               true
## 777  Government - Hospital District or Authority               true
## 778               Voluntary non-profit - Private               true
## 779               Voluntary non-profit - Private               true
## 780               Voluntary non-profit - Private               true
## 781  Government - Hospital District or Authority               true
## 782                Voluntary non-profit - Church               true
## 783  Government - Hospital District or Authority               true
## 784               Voluntary non-profit - Private               true
## 785               Voluntary non-profit - Private               true
## 786               Voluntary non-profit - Private               true
## 787                 Voluntary non-profit - Other               true
## 788               Voluntary non-profit - Private               true
## 789                 Voluntary non-profit - Other               true
## 790               Voluntary non-profit - Private               true
## 791                Voluntary non-profit - Church               true
## 792  Government - Hospital District or Authority               true
## 793               Voluntary non-profit - Private              false
## 794               Voluntary non-profit - Private               true
## 795               Voluntary non-profit - Private               true
## 796               Voluntary non-profit - Private               true
## 797                                    Physician               true
## 798                                  Proprietary              false
## 799  Government - Hospital District or Authority               true
## 800                           Government - Local               true
## 801               Voluntary non-profit - Private               true
## 802                                  Proprietary               true
## 803                           Government - Local              false
## 804               Voluntary non-profit - Private              false
## 805                                  Proprietary               true
## 806               Voluntary non-profit - Private               true
## 807                           Government - State              false
## 808               Voluntary non-profit - Private               true
## 809                 Voluntary non-profit - Other               true
## 810               Voluntary non-profit - Private               true
## 811               Voluntary non-profit - Private               true
## 812               Voluntary non-profit - Private               true
## 813  Government - Hospital District or Authority               true
## 814               Voluntary non-profit - Private               true
## 815               Voluntary non-profit - Private               true
## 816               Voluntary non-profit - Private               true
## 817                                  Proprietary              false
## 818                 Voluntary non-profit - Other               true
## 819                                  Proprietary               true
## 820               Voluntary non-profit - Private               true
## 821               Voluntary non-profit - Private               true
## 822               Voluntary non-profit - Private               true
## 823               Voluntary non-profit - Private               true
## 824               Voluntary non-profit - Private               true
## 825  Government - Hospital District or Authority               true
## 826               Voluntary non-profit - Private               true
## 827               Voluntary non-profit - Private               true
## 828                           Government - Local               true
## 829                                  Proprietary              false
## 830               Voluntary non-profit - Private               true
## 831               Voluntary non-profit - Private               true
## 832                           Government - Local               true
## 833                                  Proprietary               true
## 834               Voluntary non-profit - Private               true
## 835               Voluntary non-profit - Private               true
## 836  Government - Hospital District or Authority               true
## 837                           Government - State              false
## 838                           Government - Local               true
## 839                                  Proprietary               true
## 840                                    Physician              false
## 841               Voluntary non-profit - Private               true
## 842                           Government - State              false
## 843               Voluntary non-profit - Private               true
## 844               Voluntary non-profit - Private               true
## 845                                  Proprietary               true
## 846                 Voluntary non-profit - Other               true
## 847                Voluntary non-profit - Church               true
## 848               Voluntary non-profit - Private               true
## 849                           Government - State              false
## 850                                  Proprietary               true
## 851               Voluntary non-profit - Private               true
## 852               Voluntary non-profit - Private               true
## 853               Voluntary non-profit - Private               true
## 854                           Government - Local               true
## 855               Voluntary non-profit - Private               true
## 856                Voluntary non-profit - Church               true
## 857  Government - Hospital District or Authority               true
## 858               Voluntary non-profit - Private               true
## 859                                  Proprietary              false
## 860               Voluntary non-profit - Private               true
## 861                 Voluntary non-profit - Other               true
## 862               Voluntary non-profit - Private               true
## 863                           Government - Local               true
## 864                 Voluntary non-profit - Other              false
## 865                                  Proprietary              false
## 866                                  Proprietary               true
## 867                Voluntary non-profit - Church               true
## 868               Voluntary non-profit - Private               true
## 869               Voluntary non-profit - Private               true
## 870               Voluntary non-profit - Private               true
## 871               Voluntary non-profit - Private               true
## 872                           Government - Local               true
## 873               Voluntary non-profit - Private               true
## 874               Voluntary non-profit - Private               true
## 875               Voluntary non-profit - Private               true
## 876                           Government - Local               true
## 877                                  Proprietary              false
## 878                 Voluntary non-profit - Other               true
## 879               Voluntary non-profit - Private               true
## 880               Voluntary non-profit - Private               true
## 881  Government - Hospital District or Authority               true
## 882                           Government - State              false
## 883               Voluntary non-profit - Private               true
## 884                 Voluntary non-profit - Other               true
## 885                Voluntary non-profit - Church               true
## 886                           Government - Local               true
## 887                                  Proprietary               true
## 888               Voluntary non-profit - Private               true
## 889               Voluntary non-profit - Private               true
## 890  Government - Hospital District or Authority               true
## 891               Voluntary non-profit - Private               true
## 892                           Government - Local               true
## 893                 Voluntary non-profit - Other               true
## 894  Government - Hospital District or Authority               true
## 895                 Voluntary non-profit - Other               true
## 896                                  Proprietary               true
## 897               Voluntary non-profit - Private               true
## 898                                  Proprietary              false
## 899                 Voluntary non-profit - Other               true
## 900                                  Proprietary               true
## 901  Government - Hospital District or Authority               true
## 902                           Government - Local               true
## 903               Voluntary non-profit - Private               true
## 904  Government - Hospital District or Authority               true
## 905                           Government - Local               true
## 906                                  Proprietary              false
## 907  Government - Hospital District or Authority               true
## 908  Government - Hospital District or Authority               true
## 909                           Government - State              false
## 910                                  Proprietary               true
## 911               Voluntary non-profit - Private               true
## 912                                  Proprietary               true
## 913               Voluntary non-profit - Private               true
## 914               Voluntary non-profit - Private              false
## 915                           Government - Local               true
## 916  Government - Hospital District or Authority               true
## 917                           Government - Local               true
## 918               Voluntary non-profit - Private               true
## 919                                  Proprietary               true
## 920               Voluntary non-profit - Private               true
## 921  Government - Hospital District or Authority               true
## 922                           Government - Local               true
## 923                                  Proprietary               true
## 924               Voluntary non-profit - Private               true
## 925                Voluntary non-profit - Church               true
## 926                                  Proprietary               true
## 927                                  Proprietary               true
## 928                Voluntary non-profit - Church               true
## 929               Voluntary non-profit - Private               true
## 930                 Voluntary non-profit - Other               true
## 931               Voluntary non-profit - Private               true
## 932               Voluntary non-profit - Private              false
## 933               Voluntary non-profit - Private               true
## 934                                  Proprietary               true
## 935                 Voluntary non-profit - Other               true
## 936                                  Proprietary               true
## 937                 Voluntary non-profit - Other              false
## 938                                  Proprietary              false
## 939               Voluntary non-profit - Private               true
## 940  Government - Hospital District or Authority               true
## 941                                  Proprietary               true
## 942               Voluntary non-profit - Private               true
## 943                                  Proprietary              false
## 944                Voluntary non-profit - Church               true
## 945               Voluntary non-profit - Private               true
## 946               Voluntary non-profit - Private               true
## 947  Government - Hospital District or Authority               true
## 948                                  Proprietary               true
## 949               Voluntary non-profit - Private              false
## 950               Voluntary non-profit - Private               true
## 951                                  Proprietary               true
## 952               Voluntary non-profit - Private               true
## 953               Voluntary non-profit - Private               true
## 954                Voluntary non-profit - Church               true
## 955                                  Proprietary               true
## 956  Government - Hospital District or Authority               true
## 957               Voluntary non-profit - Private               true
## 958  Government - Hospital District or Authority               true
## 959                                  Proprietary               true
## 960               Voluntary non-profit - Private               true
## 961                Voluntary non-profit - Church               true
## 962                           Government - Local               true
## 963                           Government - Local               true
## 964  Government - Hospital District or Authority               true
## 965                                  Proprietary               true
## 966                           Government - Local               true
## 967               Voluntary non-profit - Private               true
## 968               Voluntary non-profit - Private               true
## 969                                  Proprietary               true
## 970               Voluntary non-profit - Private               true
## 971               Voluntary non-profit - Private               true
## 972               Voluntary non-profit - Private               true
## 973               Voluntary non-profit - Private               true
## 974                           Government - State               true
## 975               Voluntary non-profit - Private               true
## 976               Voluntary non-profit - Private              false
## 977               Voluntary non-profit - Private               true
## 978                Voluntary non-profit - Church               true
## 979                           Government - Local               true
## 980               Voluntary non-profit - Private              false
## 981               Voluntary non-profit - Private               true
## 982                                    Physician              false
## 983               Voluntary non-profit - Private               true
## 984               Voluntary non-profit - Private               true
## 985               Voluntary non-profit - Private               true
## 986               Voluntary non-profit - Private              false
## 987  Government - Hospital District or Authority               true
## 988               Voluntary non-profit - Private               true
## 989                                       Tribal               true
## 990               Voluntary non-profit - Private               true
## 991                           Government - Local               true
## 992                           Government - Local               true
## 993                 Voluntary non-profit - Other               true
## 994                Voluntary non-profit - Church               true
## 995               Voluntary non-profit - Private               true
## 996                 Voluntary non-profit - Other               true
## 997               Voluntary non-profit - Private              false
## 998               Voluntary non-profit - Private               true
## 999               Voluntary non-profit - Private               true
## 1000                                 Proprietary              false
## 1001                                 Proprietary              false
## 1002                          Government - Local               true
## 1003                Voluntary non-profit - Other               true
## 1004              Voluntary non-profit - Private               true
## 1005              Voluntary non-profit - Private               true
## 1006 Government - Hospital District or Authority               true
## 1007              Voluntary non-profit - Private               true
## 1008              Voluntary non-profit - Private               true
## 1009                          Government - Local              false
## 1010               Voluntary non-profit - Church               true
## 1011                                 Proprietary              false
## 1012                          Government - State              false
## 1013              Voluntary non-profit - Private               true
## 1014              Voluntary non-profit - Private               true
## 1015              Voluntary non-profit - Private               true
## 1016                          Government - Local               true
## 1017              Voluntary non-profit - Private               true
## 1018                Voluntary non-profit - Other              false
## 1019                                   Physician              false
## 1020                                 Proprietary               true
## 1021                                 Proprietary              false
## 1022                                 Proprietary               true
## 1023              Voluntary non-profit - Private               true
## 1024                Voluntary non-profit - Other               true
## 1025                                 Proprietary              false
## 1026                          Government - Local              false
## 1027 Government - Hospital District or Authority               true
## 1028                                   Physician              false
## 1029                                 Proprietary               true
## 1030                                 Proprietary               true
## 1031 Government - Hospital District or Authority               true
## 1032              Voluntary non-profit - Private               true
## 1033                Voluntary non-profit - Other               true
## 1034 Government - Hospital District or Authority               true
## 1035 Government - Hospital District or Authority               true
## 1036              Voluntary non-profit - Private              false
## 1037                          Government - Local               true
## 1038                          Government - Local               true
## 1039               Voluntary non-profit - Church               true
## 1040              Voluntary non-profit - Private               true
## 1041                          Government - Local               true
## 1042              Voluntary non-profit - Private               true
## 1043                                 Proprietary               true
## 1044                          Government - Local               true
## 1045                                 Proprietary               true
## 1046              Voluntary non-profit - Private               true
## 1047 Government - Hospital District or Authority               true
## 1048                Voluntary non-profit - Other              false
## 1049                                      Tribal               true
## 1050                          Government - Local              false
## 1051                        Government - Federal              false
## 1052                          Government - Local               true
## 1053               Voluntary non-profit - Church               true
## 1054                          Government - Local               true
## 1055                                 Proprietary               true
## 1056              Voluntary non-profit - Private               true
## 1057                          Government - Local               true
## 1058              Voluntary non-profit - Private               true
## 1059                                 Proprietary               true
## 1060 Government - Hospital District or Authority               true
## 1061 Government - Hospital District or Authority               true
## 1062               Voluntary non-profit - Church               true
## 1063                                 Proprietary               true
## 1064               Voluntary non-profit - Church              false
## 1065              Voluntary non-profit - Private               true
## 1066              Voluntary non-profit - Private              false
## 1067                Voluntary non-profit - Other               true
## 1068               Voluntary non-profit - Church               true
## 1069              Voluntary non-profit - Private               true
## 1070              Voluntary non-profit - Private               true
## 1071              Voluntary non-profit - Private               true
## 1072                                 Proprietary              false
## 1073              Voluntary non-profit - Private               true
## 1074              Voluntary non-profit - Private              false
## 1075 Government - Hospital District or Authority               true
## 1076                Voluntary non-profit - Other               true
## 1077              Voluntary non-profit - Private               true
## 1078                                 Proprietary               true
## 1079              Voluntary non-profit - Private               true
## 1080                Voluntary non-profit - Other               true
## 1081              Voluntary non-profit - Private               true
## 1082              Voluntary non-profit - Private               true
## 1083              Voluntary non-profit - Private               true
## 1084              Voluntary non-profit - Private               true
## 1085                          Government - Local               true
## 1086              Voluntary non-profit - Private               true
## 1087                          Government - Local               true
## 1088               Voluntary non-profit - Church               true
## 1089               Voluntary non-profit - Church               true
## 1090                                 Proprietary              false
## 1091                                 Proprietary               true
## 1092              Voluntary non-profit - Private               true
## 1093              Voluntary non-profit - Private               true
## 1094                                 Proprietary               true
## 1095                                 Proprietary               true
## 1096 Government - Hospital District or Authority               true
## 1097              Voluntary non-profit - Private               true
## 1098              Voluntary non-profit - Private               true
## 1099 Government - Hospital District or Authority               true
## 1100              Voluntary non-profit - Private               true
## 1101              Voluntary non-profit - Private               true
## 1102 Government - Hospital District or Authority               true
## 1103              Voluntary non-profit - Private              false
## 1104              Voluntary non-profit - Private               true
## 1105 Government - Hospital District or Authority               true
## 1106              Voluntary non-profit - Private               true
## 1107                                 Proprietary               true
## 1108              Voluntary non-profit - Private               true
## 1109                                 Proprietary               true
## 1110                          Government - Local               true
## 1111               Voluntary non-profit - Church               true
## 1112                                 Proprietary              false
## 1113                                 Proprietary               true
## 1114                                 Proprietary              false
## 1115               Voluntary non-profit - Church               true
## 1116               Voluntary non-profit - Church               true
## 1117              Voluntary non-profit - Private               true
## 1118                                 Proprietary              false
## 1119              Voluntary non-profit - Private               true
## 1120                                      Tribal              false
## 1121               Voluntary non-profit - Church               true
## 1122              Voluntary non-profit - Private               true
## 1123                Voluntary non-profit - Other               true
## 1124                                 Proprietary              false
## 1125                                 Proprietary               true
## 1126                          Government - Local               true
## 1127               Voluntary non-profit - Church               true
## 1128              Voluntary non-profit - Private               true
## 1129              Voluntary non-profit - Private               true
## 1130 Government - Hospital District or Authority               true
## 1131              Voluntary non-profit - Private               true
## 1132               Voluntary non-profit - Church               true
## 1133 Government - Hospital District or Authority               true
## 1134              Voluntary non-profit - Private               true
## 1135                Voluntary non-profit - Other               true
## 1136                Voluntary non-profit - Other               true
## 1137                                 Proprietary              false
## 1138              Voluntary non-profit - Private               true
## 1139                          Government - State              false
## 1140              Voluntary non-profit - Private               true
## 1141 Government - Hospital District or Authority               true
## 1142              Voluntary non-profit - Private               true
## 1143              Voluntary non-profit - Private               true
## 1144                                      Tribal               true
## 1145                          Government - Local               true
## 1146                                 Proprietary               true
## 1147              Voluntary non-profit - Private               true
## 1148                          Government - Local               true
## 1149                                 Proprietary              false
## 1150              Voluntary non-profit - Private              false
## 1151 Government - Hospital District or Authority               true
## 1152                                 Proprietary               true
## 1153                                 Proprietary               true
## 1154              Voluntary non-profit - Private               true
## 1155                                 Proprietary               true
## 1156                                 Proprietary               true
## 1157 Government - Hospital District or Authority               true
## 1158                                 Proprietary               true
## 1159 Government - Hospital District or Authority               true
## 1160              Voluntary non-profit - Private               true
## 1161                          Government - State               true
## 1162              Voluntary non-profit - Private              false
## 1163               Voluntary non-profit - Church               true
## 1164              Voluntary non-profit - Private               true
## 1165              Voluntary non-profit - Private               true
## 1166 Government - Hospital District or Authority               true
## 1167              Voluntary non-profit - Private               true
## 1168                                 Proprietary               true
## 1169 Government - Hospital District or Authority               true
## 1170                                 Proprietary               true
## 1171                          Government - Local               true
## 1172              Voluntary non-profit - Private               true
## 1173                Voluntary non-profit - Other               true
## 1174                                 Proprietary               true
## 1175 Government - Hospital District or Authority               true
## 1176              Voluntary non-profit - Private               true
## 1177              Voluntary non-profit - Private               true
## 1178                          Government - State              false
## 1179 Government - Hospital District or Authority               true
## 1180              Voluntary non-profit - Private               true
## 1181              Voluntary non-profit - Private               true
## 1182               Voluntary non-profit - Church               true
## 1183              Voluntary non-profit - Private               true
## 1184                                 Proprietary              false
## 1185                          Government - State              false
## 1186              Voluntary non-profit - Private               true
## 1187              Voluntary non-profit - Private               true
## 1188                          Government - Local               true
## 1189                Voluntary non-profit - Other               true
## 1190              Voluntary non-profit - Private               true
## 1191               Voluntary non-profit - Church               true
## 1192              Voluntary non-profit - Private               true
## 1193              Voluntary non-profit - Private               true
## 1194                          Government - Local               true
## 1195                                 Proprietary               true
## 1196              Voluntary non-profit - Private               true
## 1197 Government - Hospital District or Authority               true
## 1198              Voluntary non-profit - Private               true
## 1199                          Government - Local               true
## 1200                                 Proprietary              false
## 1201                                 Proprietary              false
## 1202                Voluntary non-profit - Other               true
## 1203              Voluntary non-profit - Private               true
## 1204                          Government - Local               true
## 1205              Voluntary non-profit - Private               true
## 1206                                 Proprietary               true
## 1207 Government - Hospital District or Authority               true
## 1208                          Government - State              false
## 1209              Voluntary non-profit - Private               true
## 1210              Voluntary non-profit - Private               true
## 1211               Voluntary non-profit - Church               true
## 1212                                 Proprietary              false
## 1213                                      Tribal               true
## 1214              Voluntary non-profit - Private               true
## 1215              Voluntary non-profit - Private               true
## 1216 Government - Hospital District or Authority               true
## 1217                                 Proprietary               true
## 1218              Voluntary non-profit - Private               true
## 1219                          Government - Local               true
## 1220                Voluntary non-profit - Other               true
## 1221               Voluntary non-profit - Church               true
## 1222              Voluntary non-profit - Private               true
## 1223 Government - Hospital District or Authority               true
## 1224              Voluntary non-profit - Private               true
## 1225                          Government - Local               true
## 1226                                 Proprietary               true
## 1227              Voluntary non-profit - Private               true
## 1228                                 Proprietary               true
## 1229              Voluntary non-profit - Private               true
## 1230 Government - Hospital District or Authority               true
## 1231                                 Proprietary               true
## 1232              Voluntary non-profit - Private               true
## 1233              Voluntary non-profit - Private               true
## 1234                          Government - Local               true
## 1235              Voluntary non-profit - Private              false
## 1236               Voluntary non-profit - Church               true
## 1237                                 Proprietary               true
## 1238              Voluntary non-profit - Private               true
## 1239               Voluntary non-profit - Church               true
## 1240              Voluntary non-profit - Private               true
## 1241                                 Proprietary               true
## 1242                                 Proprietary              false
## 1243              Voluntary non-profit - Private              false
## 1244              Voluntary non-profit - Private               true
## 1245                Voluntary non-profit - Other               true
## 1246                Voluntary non-profit - Other               true
## 1247 Government - Hospital District or Authority               true
## 1248                          Government - Local              false
## 1249              Voluntary non-profit - Private               true
## 1250                                 Proprietary               true
## 1251                                 Proprietary               true
## 1252              Voluntary non-profit - Private              false
## 1253                                 Proprietary              false
## 1254                          Government - Local               true
## 1255              Voluntary non-profit - Private               true
## 1256                Voluntary non-profit - Other               true
## 1257                                 Proprietary               true
## 1258 Government - Hospital District or Authority              false
## 1259                          Government - Local               true
## 1260                                 Proprietary               true
## 1261                                 Proprietary              false
## 1262                          Government - State              false
## 1263                          Government - Local               true
## 1264                          Government - State              false
## 1265                                 Proprietary               true
## 1266                                 Proprietary               true
## 1267                                 Proprietary              false
## 1268               Voluntary non-profit - Church               true
## 1269 Government - Hospital District or Authority               true
## 1270              Voluntary non-profit - Private               true
## 1271                Voluntary non-profit - Other               true
## 1272              Voluntary non-profit - Private               true
## 1273              Voluntary non-profit - Private               true
## 1274              Voluntary non-profit - Private               true
## 1275              Voluntary non-profit - Private               true
## 1276                Voluntary non-profit - Other               true
## 1277              Voluntary non-profit - Private               true
## 1278              Voluntary non-profit - Private               true
## 1279              Voluntary non-profit - Private               true
## 1280              Voluntary non-profit - Private               true
## 1281              Voluntary non-profit - Private               true
## 1282                                 Proprietary               true
## 1283                          Government - Local               true
## 1284              Voluntary non-profit - Private               true
## 1285              Voluntary non-profit - Private               true
## 1286              Voluntary non-profit - Private               true
## 1287              Voluntary non-profit - Private               true
## 1288              Voluntary non-profit - Private               true
## 1289              Voluntary non-profit - Private               true
## 1290                Voluntary non-profit - Other               true
## 1291              Voluntary non-profit - Private               true
## 1292               Voluntary non-profit - Church               true
## 1293              Voluntary non-profit - Private               true
## 1294                                 Proprietary              false
## 1295              Voluntary non-profit - Private               true
## 1296              Voluntary non-profit - Private               true
## 1297              Voluntary non-profit - Private               true
## 1298                                 Proprietary               true
## 1299               Voluntary non-profit - Church               true
## 1300                Voluntary non-profit - Other              false
## 1301              Voluntary non-profit - Private              false
## 1302                          Government - State               true
## 1303              Voluntary non-profit - Private               true
## 1304                Voluntary non-profit - Other               true
## 1305 Government - Hospital District or Authority               true
## 1306               Voluntary non-profit - Church              false
## 1307                                 Proprietary               true
## 1308               Voluntary non-profit - Church               true
## 1309                          Government - Local               true
## 1310               Voluntary non-profit - Church               true
## 1311                                 Proprietary              false
## 1312                Voluntary non-profit - Other               true
## 1313              Voluntary non-profit - Private               true
## 1314              Voluntary non-profit - Private               true
## 1315              Voluntary non-profit - Private               true
## 1316                                 Proprietary               true
## 1317                          Government - Local               true
## 1318 Government - Hospital District or Authority               true
## 1319              Voluntary non-profit - Private               true
## 1320               Voluntary non-profit - Church               true
## 1321              Voluntary non-profit - Private               true
## 1322               Voluntary non-profit - Church               true
## 1323              Voluntary non-profit - Private               true
## 1324                Voluntary non-profit - Other               true
## 1325 Government - Hospital District or Authority               true
## 1326              Voluntary non-profit - Private               true
## 1327                          Government - State              false
## 1328              Voluntary non-profit - Private               true
## 1329               Voluntary non-profit - Church               true
## 1330                                 Proprietary               true
## 1331                                 Proprietary               true
## 1332                                 Proprietary               true
## 1333 Government - Hospital District or Authority               true
## 1334                          Government - Local               true
## 1335              Voluntary non-profit - Private               true
## 1336 Government - Hospital District or Authority               true
## 1337              Voluntary non-profit - Private               true
## 1338              Voluntary non-profit - Private               true
## 1339 Government - Hospital District or Authority               true
## 1340                                 Proprietary              false
## 1341              Voluntary non-profit - Private               true
## 1342                Voluntary non-profit - Other               true
## 1343                Voluntary non-profit - Other              false
## 1344              Voluntary non-profit - Private              false
## 1345              Voluntary non-profit - Private               true
## 1346              Voluntary non-profit - Private               true
## 1347                        Government - Federal               true
## 1348 Government - Hospital District or Authority              false
## 1349                          Government - Local               true
## 1350              Voluntary non-profit - Private               true
## 1351                Voluntary non-profit - Other              false
## 1352               Voluntary non-profit - Church               true
## 1353                          Government - Local               true
## 1354                Voluntary non-profit - Other               true
## 1355              Voluntary non-profit - Private               true
## 1356              Voluntary non-profit - Private               true
## 1357                          Government - State              false
## 1358                                 Proprietary               true
## 1359              Voluntary non-profit - Private               true
## 1360               Voluntary non-profit - Church               true
## 1361                          Government - Local               true
## 1362                Voluntary non-profit - Other               true
## 1363                Voluntary non-profit - Other               true
## 1364 Government - Hospital District or Authority               true
## 1365 Government - Hospital District or Authority               true
## 1366 Government - Hospital District or Authority               true
## 1367              Voluntary non-profit - Private               true
## 1368              Voluntary non-profit - Private               true
## 1369 Government - Hospital District or Authority               true
## 1370              Voluntary non-profit - Private               true
## 1371              Voluntary non-profit - Private               true
## 1372 Government - Hospital District or Authority               true
## 1373              Voluntary non-profit - Private               true
## 1374              Voluntary non-profit - Private               true
## 1375              Voluntary non-profit - Private               true
## 1376               Voluntary non-profit - Church               true
## 1377                                 Proprietary              false
## 1378              Voluntary non-profit - Private               true
## 1379                          Government - Local               true
## 1380                                   Physician               true
## 1381              Voluntary non-profit - Private               true
## 1382               Voluntary non-profit - Church               true
## 1383                                 Proprietary               true
## 1384                          Government - Local               true
## 1385                Voluntary non-profit - Other               true
## 1386                                 Proprietary               true
## 1387              Voluntary non-profit - Private               true
## 1388              Voluntary non-profit - Private               true
## 1389              Voluntary non-profit - Private               true
## 1390                          Government - Local               true
## 1391              Voluntary non-profit - Private               true
## 1392              Voluntary non-profit - Private               true
## 1393              Voluntary non-profit - Private               true
## 1394                Voluntary non-profit - Other               true
## 1395              Voluntary non-profit - Private               true
## 1396                                 Proprietary               true
## 1397              Voluntary non-profit - Private               true
## 1398               Voluntary non-profit - Church               true
## 1399                          Government - Local               true
## 1400 Government - Hospital District or Authority               true
## 1401              Voluntary non-profit - Private               true
## 1402              Voluntary non-profit - Private               true
## 1403                                 Proprietary               true
## 1404                                 Proprietary               true
## 1405                                 Proprietary               true
## 1406              Voluntary non-profit - Private               true
## 1407              Voluntary non-profit - Private               true
## 1408              Voluntary non-profit - Private               true
## 1409                                 Proprietary               true
## 1410              Voluntary non-profit - Private               true
## 1411              Voluntary non-profit - Private               true
## 1412              Voluntary non-profit - Private               true
## 1413              Voluntary non-profit - Private               true
## 1414                Voluntary non-profit - Other               true
## 1415              Voluntary non-profit - Private              false
## 1416 Government - Hospital District or Authority               true
## 1417                                   Physician               true
## 1418               Voluntary non-profit - Church               true
## 1419              Voluntary non-profit - Private               true
## 1420              Voluntary non-profit - Private               true
## 1421              Voluntary non-profit - Private               true
## 1422              Voluntary non-profit - Private               true
## 1423              Voluntary non-profit - Private               true
## 1424              Voluntary non-profit - Private               true
## 1425              Voluntary non-profit - Private               true
## 1426              Voluntary non-profit - Private               true
## 1427                          Government - Local               true
## 1428              Voluntary non-profit - Private              false
## 1429               Voluntary non-profit - Church               true
## 1430                                 Proprietary               true
## 1431              Voluntary non-profit - Private               true
## 1432              Voluntary non-profit - Private               true
## 1433                                 Proprietary               true
## 1434              Voluntary non-profit - Private               true
## 1435              Voluntary non-profit - Private               true
## 1436 Government - Hospital District or Authority               true
## 1437              Voluntary non-profit - Private               true
## 1438               Voluntary non-profit - Church               true
## 1439              Voluntary non-profit - Private              false
## 1440                          Government - State               true
## 1441                                 Proprietary              false
## 1442                                 Proprietary               true
## 1443                Voluntary non-profit - Other               true
## 1444               Voluntary non-profit - Church               true
## 1445              Voluntary non-profit - Private               true
## 1446              Voluntary non-profit - Private               true
## 1447                                 Proprietary               true
## 1448              Voluntary non-profit - Private               true
## 1449 Government - Hospital District or Authority               true
## 1450              Voluntary non-profit - Private               true
## 1451              Voluntary non-profit - Private               true
## 1452              Voluntary non-profit - Private               true
## 1453                                 Proprietary               true
## 1454                                 Proprietary               true
## 1455 Government - Hospital District or Authority               true
## 1456 Government - Hospital District or Authority               true
## 1457              Voluntary non-profit - Private               true
## 1458                Voluntary non-profit - Other              false
## 1459              Voluntary non-profit - Private               true
## 1460 Government - Hospital District or Authority               true
## 1461                Voluntary non-profit - Other              false
## 1462                Voluntary non-profit - Other               true
## 1463 Government - Hospital District or Authority               true
## 1464                                 Proprietary               true
## 1465              Voluntary non-profit - Private               true
## 1466              Voluntary non-profit - Private               true
## 1467              Voluntary non-profit - Private               true
## 1468                                 Proprietary               true
## 1469                                 Proprietary              false
## 1470                          Government - Local               true
## 1471                          Government - State               true
## 1472                                 Proprietary               true
## 1473                          Government - Local               true
## 1474              Voluntary non-profit - Private               true
## 1475                                 Proprietary              false
## 1476              Voluntary non-profit - Private               true
## 1477                Voluntary non-profit - Other               true
## 1478              Voluntary non-profit - Private               true
## 1479              Voluntary non-profit - Private               true
## 1480              Voluntary non-profit - Private               true
## 1481              Voluntary non-profit - Private               true
## 1482              Voluntary non-profit - Private               true
## 1483 Government - Hospital District or Authority               true
## 1484               Voluntary non-profit - Church               true
## 1485              Voluntary non-profit - Private               true
## 1486              Voluntary non-profit - Private               true
## 1487                          Government - Local               true
## 1488                                 Proprietary               true
## 1489                                 Proprietary               true
## 1490                                 Proprietary               true
## 1491                Voluntary non-profit - Other               true
## 1492 Government - Hospital District or Authority               true
## 1493 Government - Hospital District or Authority               true
## 1494              Voluntary non-profit - Private               true
## 1495                                   Physician               true
## 1496              Voluntary non-profit - Private               true
## 1497                          Government - Local               true
## 1498                          Government - State              false
## 1499                          Government - Local               true
## 1500                Voluntary non-profit - Other               true
## 1501                                 Proprietary               true
## 1502                                 Proprietary               true
## 1503                Voluntary non-profit - Other              false
## 1504              Voluntary non-profit - Private               true
## 1505               Voluntary non-profit - Church               true
## 1506              Voluntary non-profit - Private               true
## 1507              Voluntary non-profit - Private               true
## 1508                Voluntary non-profit - Other              false
## 1509                                 Proprietary               true
## 1510                          Government - Local               true
## 1511 Government - Hospital District or Authority               true
## 1512               Voluntary non-profit - Church               true
## 1513                          Government - Local               true
## 1514              Voluntary non-profit - Private              false
## 1515              Voluntary non-profit - Private               true
## 1516                          Government - Local               true
## 1517 Government - Hospital District or Authority               true
## 1518              Voluntary non-profit - Private               true
## 1519                          Government - Local               true
## 1520 Government - Hospital District or Authority               true
## 1521               Voluntary non-profit - Church               true
## 1522                                 Proprietary               true
## 1523              Voluntary non-profit - Private               true
## 1524                                   Physician              false
## 1525                          Government - Local               true
## 1526                Voluntary non-profit - Other               true
## 1527              Voluntary non-profit - Private              false
## 1528              Voluntary non-profit - Private               true
## 1529                Voluntary non-profit - Other               true
## 1530                                 Proprietary               true
## 1531              Voluntary non-profit - Private               true
## 1532              Voluntary non-profit - Private               true
## 1533                                 Proprietary               true
## 1534               Voluntary non-profit - Church               true
## 1535                          Government - Local               true
## 1536                                 Proprietary               true
## 1537               Voluntary non-profit - Church               true
## 1538                          Government - State               true
## 1539              Voluntary non-profit - Private               true
## 1540                                 Proprietary               true
## 1541                                 Proprietary               true
## 1542               Voluntary non-profit - Church               true
## 1543                Voluntary non-profit - Other               true
## 1544                                 Proprietary               true
## 1545                                 Proprietary               true
## 1546              Voluntary non-profit - Private               true
## 1547                                   Physician               true
## 1548              Voluntary non-profit - Private               true
## 1549               Voluntary non-profit - Church               true
## 1550 Government - Hospital District or Authority               true
## 1551               Voluntary non-profit - Church               true
## 1552              Voluntary non-profit - Private               true
## 1553                Voluntary non-profit - Other               true
## 1554                          Government - Local               true
## 1555                          Government - State              false
## 1556                        Government - Federal              false
## 1557              Voluntary non-profit - Private               true
## 1558              Voluntary non-profit - Private               true
## 1559              Voluntary non-profit - Private               true
## 1560                                 Proprietary               true
## 1561                        Government - Federal              false
## 1562                                 Proprietary              false
## 1563              Voluntary non-profit - Private               true
## 1564                Voluntary non-profit - Other               true
## 1565                Voluntary non-profit - Other               true
## 1566               Voluntary non-profit - Church               true
## 1567                                 Proprietary               true
## 1568                        Government - Federal               true
## 1569                                 Proprietary               true
## 1570              Voluntary non-profit - Private               true
## 1571 Government - Hospital District or Authority               true
## 1572               Voluntary non-profit - Church               true
## 1573                                 Proprietary               true
## 1574                          Government - Local               true
## 1575              Voluntary non-profit - Private               true
## 1576                Voluntary non-profit - Other               true
## 1577              Voluntary non-profit - Private               true
## 1578              Voluntary non-profit - Private               true
## 1579              Voluntary non-profit - Private               true
## 1580              Voluntary non-profit - Private               true
## 1581                                 Proprietary              false
## 1582 Government - Hospital District or Authority               true
## 1583              Voluntary non-profit - Private               true
## 1584              Voluntary non-profit - Private               true
## 1585                Voluntary non-profit - Other               true
## 1586                Voluntary non-profit - Other               true
## 1587                                 Proprietary               true
## 1588                Voluntary non-profit - Other               true
## 1589              Voluntary non-profit - Private               true
## 1590              Voluntary non-profit - Private               true
## 1591                                 Proprietary               true
## 1592 Government - Hospital District or Authority               true
## 1593              Voluntary non-profit - Private               true
## 1594               Voluntary non-profit - Church               true
## 1595              Voluntary non-profit - Private               true
## 1596              Voluntary non-profit - Private               true
## 1597                          Government - Local               true
## 1598              Voluntary non-profit - Private               true
## 1599                                 Proprietary               true
## 1600                          Government - Local               true
## 1601                                 Proprietary               true
## 1602                                 Proprietary               true
## 1603               Voluntary non-profit - Church               true
## 1604                                 Proprietary               true
## 1605              Voluntary non-profit - Private               true
## 1606              Voluntary non-profit - Private               true
## 1607                                 Proprietary              false
## 1608                          Government - Local               true
## 1609                                 Proprietary              false
## 1610              Voluntary non-profit - Private              false
## 1611                                 Proprietary               true
## 1612              Voluntary non-profit - Private               true
## 1613 Government - Hospital District or Authority              false
## 1614 Government - Hospital District or Authority               true
## 1615                                 Proprietary               true
## 1616 Government - Hospital District or Authority               true
## 1617                                 Proprietary               true
## 1618                          Government - Local               true
## 1619              Voluntary non-profit - Private               true
## 1620                                   Physician               true
## 1621                          Government - State               true
## 1622              Voluntary non-profit - Private               true
## 1623                          Government - Local               true
## 1624                                 Proprietary               true
## 1625               Voluntary non-profit - Church              false
## 1626                                 Proprietary               true
## 1627 Government - Hospital District or Authority               true
## 1628              Voluntary non-profit - Private               true
## 1629              Voluntary non-profit - Private               true
## 1630                          Government - State              false
## 1631              Voluntary non-profit - Private               true
## 1632              Voluntary non-profit - Private               true
## 1633              Voluntary non-profit - Private               true
## 1634                                 Proprietary               true
## 1635              Voluntary non-profit - Private               true
## 1636                                 Proprietary              false
## 1637               Voluntary non-profit - Church               true
## 1638 Government - Hospital District or Authority               true
## 1639                          Government - State              false
## 1640              Voluntary non-profit - Private               true
## 1641              Voluntary non-profit - Private               true
## 1642              Voluntary non-profit - Private               true
## 1643                                 Proprietary               true
## 1644              Voluntary non-profit - Private               true
## 1645 Government - Hospital District or Authority               true
## 1646              Voluntary non-profit - Private              false
## 1647 Government - Hospital District or Authority               true
## 1648 Government - Hospital District or Authority               true
## 1649              Voluntary non-profit - Private               true
## 1650              Voluntary non-profit - Private               true
## 1651                          Government - Local               true
## 1652                                 Proprietary               true
## 1653                Voluntary non-profit - Other               true
## 1654                          Government - Local               true
## 1655                          Government - Local               true
## 1656              Voluntary non-profit - Private               true
## 1657 Government - Hospital District or Authority              false
## 1658               Voluntary non-profit - Church              false
## 1659               Voluntary non-profit - Church               true
## 1660              Voluntary non-profit - Private               true
## 1661              Voluntary non-profit - Private               true
## 1662              Voluntary non-profit - Private               true
## 1663                                 Proprietary               true
## 1664              Voluntary non-profit - Private               true
## 1665              Voluntary non-profit - Private               true
## 1666              Voluntary non-profit - Private               true
## 1667                          Government - Local               true
## 1668 Government - Hospital District or Authority               true
## 1669              Voluntary non-profit - Private               true
## 1670                                 Proprietary              false
## 1671              Voluntary non-profit - Private               true
## 1672                                 Proprietary               true
## 1673              Voluntary non-profit - Private               true
## 1674                                 Proprietary               true
## 1675              Voluntary non-profit - Private               true
## 1676                                 Proprietary               true
## 1677              Voluntary non-profit - Private               true
## 1678              Voluntary non-profit - Private               true
## 1679                                 Proprietary              false
## 1680                Voluntary non-profit - Other               true
## 1681 Government - Hospital District or Authority               true
## 1682                                 Proprietary               true
## 1683              Voluntary non-profit - Private              false
## 1684                          Government - Local               true
## 1685 Government - Hospital District or Authority               true
## 1686              Voluntary non-profit - Private               true
## 1687                                 Proprietary               true
## 1688                Voluntary non-profit - Other               true
## 1689 Government - Hospital District or Authority               true
## 1690 Government - Hospital District or Authority               true
## 1691               Voluntary non-profit - Church               true
## 1692                Voluntary non-profit - Other               true
## 1693 Government - Hospital District or Authority               true
## 1694 Government - Hospital District or Authority               true
## 1695              Voluntary non-profit - Private              false
## 1696              Voluntary non-profit - Private               true
## 1697              Voluntary non-profit - Private               true
## 1698 Government - Hospital District or Authority               true
## 1699              Voluntary non-profit - Private               true
## 1700              Voluntary non-profit - Private               true
## 1701              Voluntary non-profit - Private               true
## 1702              Voluntary non-profit - Private               true
## 1703              Voluntary non-profit - Private               true
## 1704              Voluntary non-profit - Private              false
## 1705                                 Proprietary              false
## 1706                                 Proprietary               true
## 1707                          Government - Local               true
## 1708              Voluntary non-profit - Private              false
## 1709               Voluntary non-profit - Church               true
## 1710                Voluntary non-profit - Other               true
## 1711              Voluntary non-profit - Private               true
## 1712              Voluntary non-profit - Private               true
## 1713                                 Proprietary              false
## 1714                                 Proprietary              false
## 1715               Voluntary non-profit - Church               true
## 1716                Voluntary non-profit - Other               true
## 1717                          Government - Local               true
## 1718                                 Proprietary              false
## 1719              Voluntary non-profit - Private               true
## 1720                Voluntary non-profit - Other               true
## 1721              Voluntary non-profit - Private               true
## 1722              Voluntary non-profit - Private               true
## 1723                Voluntary non-profit - Other               true
## 1724              Voluntary non-profit - Private               true
## 1725              Voluntary non-profit - Private               true
## 1726                                 Proprietary               true
## 1727                        Government - Federal               true
## 1728                                 Proprietary              false
## 1729                                 Proprietary               true
## 1730              Voluntary non-profit - Private               true
## 1731                                 Proprietary              false
## 1732              Voluntary non-profit - Private               true
## 1733                                 Proprietary               true
## 1734              Voluntary non-profit - Private               true
## 1735                                 Proprietary               true
## 1736                          Government - State               true
## 1737 Government - Hospital District or Authority               true
## 1738                Voluntary non-profit - Other               true
## 1739 Government - Hospital District or Authority               true
## 1740               Voluntary non-profit - Church              false
## 1741                Voluntary non-profit - Other               true
## 1742                                 Proprietary               true
## 1743              Voluntary non-profit - Private               true
## 1744              Voluntary non-profit - Private               true
## 1745              Voluntary non-profit - Private               true
## 1746                                   Physician              false
## 1747 Government - Hospital District or Authority               true
## 1748              Voluntary non-profit - Private               true
## 1749                          Government - State              false
## 1750                Voluntary non-profit - Other               true
## 1751              Voluntary non-profit - Private               true
## 1752              Voluntary non-profit - Private               true
## 1753              Voluntary non-profit - Private               true
## 1754                          Government - State              false
## 1755              Voluntary non-profit - Private               true
## 1756               Voluntary non-profit - Church               true
## 1757               Voluntary non-profit - Church               true
## 1758               Voluntary non-profit - Church               true
## 1759              Voluntary non-profit - Private               true
## 1760                                 Proprietary               true
## 1761              Voluntary non-profit - Private               true
## 1762 Government - Hospital District or Authority               true
## 1763 Government - Hospital District or Authority               true
## 1764                          Government - Local               true
## 1765                                 Proprietary               true
## 1766              Voluntary non-profit - Private               true
## 1767              Voluntary non-profit - Private               true
## 1768              Voluntary non-profit - Private               true
## 1769                          Government - Local               true
## 1770              Voluntary non-profit - Private               true
## 1771                          Government - Local               true
## 1772              Voluntary non-profit - Private               true
## 1773                          Government - Local               true
## 1774                                 Proprietary               true
## 1775 Government - Hospital District or Authority               true
## 1776              Voluntary non-profit - Private               true
## 1777                                 Proprietary               true
## 1778                                 Proprietary              false
## 1779              Voluntary non-profit - Private              false
## 1780              Voluntary non-profit - Private               true
## 1781 Government - Hospital District or Authority               true
## 1782              Voluntary non-profit - Private               true
## 1783              Voluntary non-profit - Private               true
## 1784                                 Proprietary               true
## 1785              Voluntary non-profit - Private               true
## 1786              Voluntary non-profit - Private               true
## 1787              Voluntary non-profit - Private               true
## 1788              Voluntary non-profit - Private               true
## 1789 Government - Hospital District or Authority               true
## 1790               Voluntary non-profit - Church               true
## 1791              Voluntary non-profit - Private               true
## 1792                Voluntary non-profit - Other               true
## 1793                                 Proprietary               true
## 1794                                 Proprietary               true
## 1795                                 Proprietary               true
## 1796                                 Proprietary               true
## 1797                Voluntary non-profit - Other               true
## 1798                          Government - State               true
## 1799              Voluntary non-profit - Private               true
## 1800              Voluntary non-profit - Private               true
## 1801                Voluntary non-profit - Other              false
## 1802               Voluntary non-profit - Church               true
## 1803 Government - Hospital District or Authority               true
## 1804               Voluntary non-profit - Church               true
## 1805                                   Physician               true
## 1806                        Government - Federal               true
## 1807                                 Proprietary              false
## 1808                          Government - Local               true
## 1809                        Government - Federal              false
## 1810              Voluntary non-profit - Private               true
## 1811 Government - Hospital District or Authority               true
## 1812              Voluntary non-profit - Private               true
## 1813               Voluntary non-profit - Church               true
## 1814                                 Proprietary              false
## 1815               Voluntary non-profit - Church               true
## 1816                                 Proprietary               true
## 1817                          Government - Local               true
## 1818                                 Proprietary              false
## 1819                                 Proprietary              false
## 1820 Government - Hospital District or Authority               true
## 1821              Voluntary non-profit - Private               true
## 1822              Voluntary non-profit - Private               true
## 1823                                 Proprietary              false
## 1824              Voluntary non-profit - Private               true
## 1825                Voluntary non-profit - Other               true
## 1826              Voluntary non-profit - Private               true
## 1827              Voluntary non-profit - Private               true
## 1828                                 Proprietary               true
## 1829 Government - Hospital District or Authority               true
## 1830                                 Proprietary               true
## 1831              Voluntary non-profit - Private               true
## 1832              Voluntary non-profit - Private               true
## 1833              Voluntary non-profit - Private               true
## 1834                Voluntary non-profit - Other               true
## 1835                                 Proprietary               true
## 1836                          Government - Local               true
## 1837                                 Proprietary               true
## 1838                                 Proprietary               true
## 1839                          Government - Local               true
## 1840                                 Proprietary               true
## 1841                          Government - State               true
## 1842              Voluntary non-profit - Private               true
## 1843              Voluntary non-profit - Private               true
## 1844              Voluntary non-profit - Private               true
## 1845                          Government - Local               true
## 1846                          Government - Local               true
## 1847              Voluntary non-profit - Private               true
## 1848                                 Proprietary               true
## 1849                                 Proprietary              false
## 1850                                 Proprietary               true
## 1851              Voluntary non-profit - Private               true
## 1852              Voluntary non-profit - Private               true
## 1853               Voluntary non-profit - Church               true
## 1854              Voluntary non-profit - Private               true
## 1855              Voluntary non-profit - Private               true
## 1856                                 Proprietary               true
## 1857                          Government - Local               true
## 1858              Voluntary non-profit - Private               true
## 1859                          Government - State              false
## 1860              Voluntary non-profit - Private               true
## 1861                                   Physician              false
## 1862              Voluntary non-profit - Private              false
## 1863                                 Proprietary               true
## 1864                                 Proprietary               true
## 1865               Voluntary non-profit - Church               true
## 1866              Voluntary non-profit - Private               true
## 1867 Government - Hospital District or Authority               true
## 1868              Voluntary non-profit - Private               true
## 1869                                 Proprietary               true
## 1870                          Government - Local               true
## 1871              Voluntary non-profit - Private               true
## 1872               Voluntary non-profit - Church               true
## 1873                          Government - State               true
## 1874                Voluntary non-profit - Other               true
## 1875              Voluntary non-profit - Private               true
## 1876              Voluntary non-profit - Private               true
## 1877              Voluntary non-profit - Private               true
## 1878              Voluntary non-profit - Private               true
## 1879                          Government - State              false
## 1880                                 Proprietary               true
## 1881 Government - Hospital District or Authority               true
## 1882                          Government - Local               true
## 1883              Voluntary non-profit - Private               true
## 1884 Government - Hospital District or Authority               true
## 1885 Government - Hospital District or Authority              false
## 1886              Voluntary non-profit - Private               true
## 1887                          Government - Local               true
## 1888 Government - Hospital District or Authority               true
## 1889                Voluntary non-profit - Other               true
## 1890              Voluntary non-profit - Private               true
## 1891              Voluntary non-profit - Private               true
## 1892                                 Proprietary               true
## 1893              Voluntary non-profit - Private               true
## 1894 Government - Hospital District or Authority               true
## 1895              Voluntary non-profit - Private              false
## 1896                          Government - State              false
## 1897                                 Proprietary              false
## 1898                                 Proprietary               true
## 1899 Government - Hospital District or Authority               true
## 1900              Voluntary non-profit - Private               true
## 1901              Voluntary non-profit - Private               true
## 1902               Voluntary non-profit - Church               true
## 1903 Government - Hospital District or Authority               true
## 1904              Voluntary non-profit - Private               true
## 1905              Voluntary non-profit - Private              false
## 1906               Voluntary non-profit - Church               true
## 1907              Voluntary non-profit - Private               true
## 1908                                 Proprietary               true
## 1909              Voluntary non-profit - Private               true
## 1910              Voluntary non-profit - Private               true
## 1911 Government - Hospital District or Authority               true
## 1912                Voluntary non-profit - Other               true
## 1913              Voluntary non-profit - Private               true
## 1914                                 Proprietary               true
## 1915              Voluntary non-profit - Private               true
## 1916               Voluntary non-profit - Church               true
## 1917              Voluntary non-profit - Private               true
## 1918              Voluntary non-profit - Private               true
## 1919                          Government - Local              false
## 1920                                 Proprietary              false
## 1921                                 Proprietary               true
## 1922 Government - Hospital District or Authority               true
## 1923                                   Physician              false
## 1924              Voluntary non-profit - Private               true
## 1925                                 Proprietary               true
## 1926              Voluntary non-profit - Private               true
## 1927               Voluntary non-profit - Church               true
## 1928              Voluntary non-profit - Private               true
## 1929              Voluntary non-profit - Private              false
## 1930               Voluntary non-profit - Church               true
## 1931              Voluntary non-profit - Private               true
## 1932                          Government - Local               true
## 1933              Voluntary non-profit - Private               true
## 1934                Voluntary non-profit - Other               true
## 1935              Voluntary non-profit - Private               true
## 1936 Government - Hospital District or Authority               true
## 1937                                 Proprietary               true
## 1938              Voluntary non-profit - Private               true
## 1939              Voluntary non-profit - Private               true
## 1940              Voluntary non-profit - Private               true
## 1941                                 Proprietary              false
## 1942                          Government - Local               true
## 1943                          Government - Local               true
## 1944              Voluntary non-profit - Private               true
## 1945 Government - Hospital District or Authority               true
## 1946                                 Proprietary               true
## 1947              Voluntary non-profit - Private               true
## 1948                Voluntary non-profit - Other               true
## 1949              Voluntary non-profit - Private              false
## 1950                                 Proprietary               true
## 1951              Voluntary non-profit - Private               true
## 1952                                 Proprietary               true
## 1953                                 Proprietary               true
## 1954               Voluntary non-profit - Church               true
## 1955              Voluntary non-profit - Private               true
## 1956 Government - Hospital District or Authority               true
## 1957                                 Proprietary              false
## 1958 Government - Hospital District or Authority               true
## 1959                                 Proprietary              false
## 1960               Voluntary non-profit - Church               true
## 1961                                 Proprietary               true
## 1962                                 Proprietary               true
## 1963              Voluntary non-profit - Private              false
## 1964              Voluntary non-profit - Private               true
## 1965              Voluntary non-profit - Private               true
## 1966                          Government - Local               true
## 1967                                 Proprietary              false
## 1968                          Government - Local               true
## 1969                          Government - State              false
## 1970                          Government - Local               true
## 1971                          Government - State              false
## 1972              Voluntary non-profit - Private               true
## 1973              Voluntary non-profit - Private               true
## 1974              Voluntary non-profit - Private               true
## 1975              Voluntary non-profit - Private               true
## 1976                          Government - State               true
## 1977              Voluntary non-profit - Private               true
## 1978              Voluntary non-profit - Private               true
## 1979              Voluntary non-profit - Private               true
## 1980                          Government - Local               true
## 1981                          Government - State               true
## 1982              Voluntary non-profit - Private               true
## 1983                                 Proprietary               true
## 1984                                 Proprietary               true
## 1985              Voluntary non-profit - Private               true
## 1986                                 Proprietary              false
## 1987                                 Proprietary               true
## 1988              Voluntary non-profit - Private               true
## 1989              Voluntary non-profit - Private               true
## 1990                        Government - Federal               true
## 1991                                 Proprietary               true
## 1992                                 Proprietary               true
## 1993              Voluntary non-profit - Private               true
## 1994              Voluntary non-profit - Private               true
## 1995               Voluntary non-profit - Church               true
## 1996              Voluntary non-profit - Private               true
## 1997                          Government - Local               true
## 1998                                 Proprietary               true
## 1999                                 Proprietary               true
## 2000              Voluntary non-profit - Private               true
## 2001                          Government - Local               true
## 2002                                   Physician               true
## 2003                                 Proprietary               true
## 2004                                 Proprietary               true
## 2005 Government - Hospital District or Authority               true
## 2006                                 Proprietary              false
## 2007              Voluntary non-profit - Private              false
## 2008                                 Proprietary               true
## 2009              Voluntary non-profit - Private               true
## 2010               Voluntary non-profit - Church               true
## 2011              Voluntary non-profit - Private              false
## 2012                          Government - Local               true
## 2013 Government - Hospital District or Authority               true
## 2014              Voluntary non-profit - Private               true
## 2015              Voluntary non-profit - Private               true
## 2016              Voluntary non-profit - Private               true
## 2017                                 Proprietary               true
## 2018              Voluntary non-profit - Private               true
## 2019                          Government - State              false
## 2020              Voluntary non-profit - Private               true
## 2021              Voluntary non-profit - Private               true
## 2022                          Government - Local               true
## 2023                                 Proprietary               true
## 2024              Voluntary non-profit - Private               true
## 2025                          Government - Local               true
## 2026 Government - Hospital District or Authority               true
## 2027                          Government - Local               true
## 2028              Voluntary non-profit - Private               true
## 2029              Voluntary non-profit - Private               true
## 2030              Voluntary non-profit - Private               true
## 2031                                 Proprietary               true
## 2032                                 Proprietary               true
## 2033                          Government - Local               true
## 2034              Voluntary non-profit - Private               true
## 2035              Voluntary non-profit - Private               true
## 2036                                 Proprietary              false
## 2037                                 Proprietary               true
## 2038              Voluntary non-profit - Private               true
## 2039               Voluntary non-profit - Church               true
## 2040              Voluntary non-profit - Private               true
## 2041                Voluntary non-profit - Other               true
## 2042                Voluntary non-profit - Other               true
## 2043                          Government - Local               true
## 2044 Government - Hospital District or Authority               true
## 2045 Government - Hospital District or Authority               true
## 2046                                 Proprietary               true
## 2047                          Government - Local               true
## 2048                Voluntary non-profit - Other               true
## 2049              Voluntary non-profit - Private              false
## 2050                        Government - Federal               true
## 2051              Voluntary non-profit - Private               true
## 2052              Voluntary non-profit - Private               true
## 2053              Voluntary non-profit - Private               true
## 2054              Voluntary non-profit - Private               true
## 2055 Government - Hospital District or Authority               true
## 2056              Voluntary non-profit - Private               true
## 2057                                 Proprietary              false
## 2058              Voluntary non-profit - Private               true
## 2059                          Government - Local               true
## 2060              Voluntary non-profit - Private               true
## 2061              Voluntary non-profit - Private               true
## 2062              Voluntary non-profit - Private              false
## 2063              Voluntary non-profit - Private               true
## 2064              Voluntary non-profit - Private               true
## 2065                                 Proprietary               true
## 2066                          Government - Local               true
## 2067              Voluntary non-profit - Private               true
## 2068 Government - Hospital District or Authority               true
## 2069                                 Proprietary               true
## 2070              Voluntary non-profit - Private               true
## 2071                          Government - Local               true
## 2072              Voluntary non-profit - Private               true
## 2073              Voluntary non-profit - Private               true
## 2074              Voluntary non-profit - Private               true
## 2075                                 Proprietary              false
## 2076                          Government - State               true
## 2077                                 Proprietary               true
## 2078                          Government - Local               true
## 2079              Voluntary non-profit - Private               true
## 2080              Voluntary non-profit - Private               true
## 2081              Voluntary non-profit - Private               true
## 2082              Voluntary non-profit - Private               true
## 2083 Government - Hospital District or Authority               true
## 2084              Voluntary non-profit - Private               true
## 2085                                 Proprietary               true
## 2086                                 Proprietary               true
## 2087                Voluntary non-profit - Other               true
## 2088              Voluntary non-profit - Private               true
## 2089              Voluntary non-profit - Private               true
## 2090              Voluntary non-profit - Private               true
## 2091              Voluntary non-profit - Private               true
## 2092              Voluntary non-profit - Private               true
## 2093                          Government - Local               true
## 2094                                 Proprietary              false
## 2095                Voluntary non-profit - Other               true
## 2096                          Government - Local               true
## 2097              Voluntary non-profit - Private               true
## 2098 Government - Hospital District or Authority               true
## 2099              Voluntary non-profit - Private               true
## 2100              Voluntary non-profit - Private               true
## 2101                                 Proprietary               true
## 2102              Voluntary non-profit - Private               true
## 2103 Government - Hospital District or Authority               true
## 2104              Voluntary non-profit - Private               true
## 2105               Voluntary non-profit - Church               true
## 2106                          Government - Local               true
## 2107                                   Physician              false
## 2108                          Government - Local               true
## 2109                          Government - State              false
## 2110 Government - Hospital District or Authority               true
## 2111              Voluntary non-profit - Private              false
## 2112              Voluntary non-profit - Private               true
## 2113                          Government - Local               true
## 2114              Voluntary non-profit - Private               true
## 2115              Voluntary non-profit - Private               true
## 2116              Voluntary non-profit - Private               true
## 2117               Voluntary non-profit - Church               true
## 2118                                 Proprietary               true
## 2119              Voluntary non-profit - Private               true
## 2120               Voluntary non-profit - Church               true
## 2121 Government - Hospital District or Authority               true
## 2122              Voluntary non-profit - Private              false
## 2123              Voluntary non-profit - Private               true
## 2124              Voluntary non-profit - Private               true
## 2125               Voluntary non-profit - Church               true
## 2126                                 Proprietary              false
## 2127                                   Physician              false
## 2128              Voluntary non-profit - Private               true
## 2129 Government - Hospital District or Authority               true
## 2130                          Government - Local               true
## 2131                                 Proprietary               true
## 2132              Voluntary non-profit - Private              false
## 2133              Voluntary non-profit - Private               true
## 2134                                 Proprietary               true
## 2135                Voluntary non-profit - Other               true
## 2136                Voluntary non-profit - Other               true
## 2137                          Government - State               true
## 2138                                 Proprietary               true
## 2139                          Government - State              false
## 2140                          Government - Local               true
## 2141                          Government - State              false
## 2142              Voluntary non-profit - Private               true
## 2143                          Government - Local               true
## 2144                                 Proprietary              false
## 2145                                 Proprietary              false
## 2146                          Government - Local               true
## 2147              Voluntary non-profit - Private               true
## 2148                Voluntary non-profit - Other               true
## 2149 Government - Hospital District or Authority               true
## 2150              Voluntary non-profit - Private               true
## 2151              Voluntary non-profit - Private               true
## 2152                          Government - State              false
## 2153                          Government - Local               true
## 2154               Voluntary non-profit - Church               true
## 2155              Voluntary non-profit - Private               true
## 2156              Voluntary non-profit - Private               true
## 2157              Voluntary non-profit - Private              false
## 2158                Voluntary non-profit - Other               true
## 2159              Voluntary non-profit - Private               true
## 2160                Voluntary non-profit - Other               true
## 2161              Voluntary non-profit - Private               true
## 2162              Voluntary non-profit - Private              false
## 2163              Voluntary non-profit - Private               true
## 2164                Voluntary non-profit - Other              false
## 2165              Voluntary non-profit - Private               true
## 2166              Voluntary non-profit - Private               true
## 2167                          Government - Local               true
## 2168              Voluntary non-profit - Private               true
## 2169                                 Proprietary              false
## 2170 Government - Hospital District or Authority               true
## 2171               Voluntary non-profit - Church               true
## 2172                                 Proprietary               true
## 2173               Voluntary non-profit - Church               true
## 2174              Voluntary non-profit - Private               true
## 2175 Government - Hospital District or Authority               true
## 2176               Voluntary non-profit - Church              false
## 2177                                 Proprietary               true
## 2178              Voluntary non-profit - Private               true
## 2179 Government - Hospital District or Authority               true
## 2180                                 Proprietary               true
## 2181               Voluntary non-profit - Church               true
## 2182                          Government - Local               true
## 2183                                 Proprietary               true
## 2184                          Government - State               true
## 2185                                 Proprietary              false
## 2186                Voluntary non-profit - Other               true
## 2187               Voluntary non-profit - Church               true
## 2188 Government - Hospital District or Authority               true
## 2189              Voluntary non-profit - Private               true
## 2190              Voluntary non-profit - Private               true
## 2191                          Government - Local               true
## 2192                          Government - Local               true
## 2193              Voluntary non-profit - Private               true
## 2194                        Government - Federal               true
## 2195                Voluntary non-profit - Other               true
## 2196                          Government - State              false
## 2197                                 Proprietary               true
## 2198 Government - Hospital District or Authority               true
## 2199                Voluntary non-profit - Other               true
## 2200              Voluntary non-profit - Private              false
## 2201                Voluntary non-profit - Other               true
## 2202 Government - Hospital District or Authority               true
## 2203                                 Proprietary              false
## 2204                Voluntary non-profit - Other              false
## 2205              Voluntary non-profit - Private               true
## 2206                                 Proprietary              false
## 2207                                 Proprietary               true
## 2208                                 Proprietary               true
## 2209                                 Proprietary               true
## 2210                                 Proprietary              false
## 2211               Voluntary non-profit - Church              false
## 2212              Voluntary non-profit - Private               true
## 2213                                 Proprietary               true
## 2214                Voluntary non-profit - Other              false
## 2215              Voluntary non-profit - Private               true
## 2216                          Government - Local               true
## 2217                          Government - Local               true
## 2218 Government - Hospital District or Authority               true
## 2219              Voluntary non-profit - Private               true
## 2220                                 Proprietary               true
## 2221                          Government - Local              false
## 2222                                 Proprietary               true
## 2223 Government - Hospital District or Authority               true
## 2224              Voluntary non-profit - Private               true
## 2225                                 Proprietary              false
## 2226 Government - Hospital District or Authority               true
## 2227              Voluntary non-profit - Private               true
## 2228              Voluntary non-profit - Private               true
## 2229              Voluntary non-profit - Private               true
## 2230                Voluntary non-profit - Other               true
## 2231              Voluntary non-profit - Private               true
## 2232                Voluntary non-profit - Other               true
## 2233              Voluntary non-profit - Private               true
## 2234              Voluntary non-profit - Private               true
## 2235                          Government - Local               true
## 2236                                   Physician               true
## 2237               Voluntary non-profit - Church               true
## 2238 Government - Hospital District or Authority               true
## 2239              Voluntary non-profit - Private               true
## 2240              Voluntary non-profit - Private               true
## 2241              Voluntary non-profit - Private              false
## 2242                                 Proprietary               true
## 2243 Government - Hospital District or Authority               true
## 2244              Voluntary non-profit - Private               true
## 2245              Voluntary non-profit - Private               true
## 2246              Voluntary non-profit - Private               true
## 2247                                 Proprietary               true
## 2248                Voluntary non-profit - Other               true
## 2249                          Government - State               true
## 2250                                 Proprietary              false
## 2251              Voluntary non-profit - Private               true
## 2252              Voluntary non-profit - Private               true
## 2253              Voluntary non-profit - Private               true
## 2254              Voluntary non-profit - Private               true
## 2255                                 Proprietary              false
## 2256              Voluntary non-profit - Private               true
## 2257              Voluntary non-profit - Private               true
## 2258 Government - Hospital District or Authority               true
## 2259                                 Proprietary               true
## 2260                                 Proprietary               true
## 2261                                 Proprietary               true
## 2262              Voluntary non-profit - Private               true
## 2263              Voluntary non-profit - Private               true
## 2264 Government - Hospital District or Authority               true
## 2265              Voluntary non-profit - Private               true
## 2266              Voluntary non-profit - Private              false
## 2267              Voluntary non-profit - Private               true
## 2268              Voluntary non-profit - Private               true
## 2269              Voluntary non-profit - Private               true
## 2270              Voluntary non-profit - Private              false
## 2271                          Government - State               true
## 2272              Voluntary non-profit - Private               true
## 2273                                 Proprietary               true
## 2274                                 Proprietary               true
## 2275                                 Proprietary              false
## 2276                                 Proprietary              false
## 2277              Voluntary non-profit - Private               true
## 2278               Voluntary non-profit - Church               true
## 2279                                 Proprietary               true
## 2280 Government - Hospital District or Authority               true
## 2281 Government - Hospital District or Authority               true
## 2282              Voluntary non-profit - Private               true
## 2283              Voluntary non-profit - Private               true
## 2284               Voluntary non-profit - Church               true
## 2285                          Government - Local               true
## 2286                Voluntary non-profit - Other               true
## 2287                                 Proprietary              false
## 2288                Voluntary non-profit - Other               true
## 2289              Voluntary non-profit - Private               true
## 2290              Voluntary non-profit - Private               true
## 2291              Voluntary non-profit - Private               true
## 2292 Government - Hospital District or Authority               true
## 2293 Government - Hospital District or Authority               true
## 2294                                 Proprietary               true
## 2295 Government - Hospital District or Authority               true
## 2296 Government - Hospital District or Authority               true
## 2297                                 Proprietary               true
## 2298                                 Proprietary               true
## 2299                          Government - Local               true
## 2300                          Government - Local               true
## 2301              Voluntary non-profit - Private               true
## 2302              Voluntary non-profit - Private               true
## 2303              Voluntary non-profit - Private               true
## 2304              Voluntary non-profit - Private               true
## 2305                                 Proprietary              false
## 2306              Voluntary non-profit - Private              false
## 2307              Voluntary non-profit - Private              false
## 2308              Voluntary non-profit - Private               true
## 2309               Voluntary non-profit - Church               true
## 2310              Voluntary non-profit - Private               true
## 2311                                 Proprietary               true
## 2312                                 Proprietary               true
## 2313              Voluntary non-profit - Private               true
## 2314              Voluntary non-profit - Private               true
## 2315              Voluntary non-profit - Private              false
## 2316                          Government - Local               true
## 2317              Voluntary non-profit - Private               true
## 2318                                 Proprietary              false
## 2319 Government - Hospital District or Authority               true
## 2320                        Government - Federal               true
## 2321              Voluntary non-profit - Private               true
## 2322              Voluntary non-profit - Private               true
## 2323 Government - Hospital District or Authority               true
## 2324 Government - Hospital District or Authority               true
## 2325              Voluntary non-profit - Private               true
## 2326              Voluntary non-profit - Private               true
## 2327                                 Proprietary               true
## 2328                Voluntary non-profit - Other               true
## 2329                Voluntary non-profit - Other              false
## 2330                          Government - State               true
## 2331                          Government - Local               true
## 2332                          Government - State               true
## 2333              Voluntary non-profit - Private               true
## 2334              Voluntary non-profit - Private               true
## 2335              Voluntary non-profit - Private               true
## 2336 Government - Hospital District or Authority               true
## 2337                                 Proprietary              false
## 2338              Voluntary non-profit - Private               true
## 2339                        Government - Federal              false
## 2340               Voluntary non-profit - Church               true
## 2341               Voluntary non-profit - Church               true
## 2342                          Government - Local               true
## 2343                          Government - Local               true
## 2344              Voluntary non-profit - Private               true
## 2345                          Government - State              false
## 2346               Voluntary non-profit - Church               true
## 2347              Voluntary non-profit - Private               true
## 2348 Government - Hospital District or Authority               true
## 2349              Voluntary non-profit - Private               true
## 2350              Voluntary non-profit - Private               true
## 2351              Voluntary non-profit - Private               true
## 2352              Voluntary non-profit - Private               true
## 2353                          Government - Local               true
## 2354               Voluntary non-profit - Church               true
## 2355              Voluntary non-profit - Private              false
## 2356              Voluntary non-profit - Private               true
## 2357                          Government - State               true
## 2358               Voluntary non-profit - Church               true
## 2359              Voluntary non-profit - Private               true
## 2360                          Government - State              false
## 2361              Voluntary non-profit - Private               true
## 2362              Voluntary non-profit - Private               true
## 2363 Government - Hospital District or Authority               true
## 2364                Voluntary non-profit - Other               true
## 2365              Voluntary non-profit - Private               true
## 2366                                 Proprietary              false
## 2367              Voluntary non-profit - Private               true
## 2368              Voluntary non-profit - Private               true
## 2369                          Government - State              false
## 2370               Voluntary non-profit - Church               true
## 2371              Voluntary non-profit - Private               true
## 2372              Voluntary non-profit - Private               true
## 2373              Voluntary non-profit - Private               true
## 2374              Voluntary non-profit - Private              false
## 2375              Voluntary non-profit - Private               true
## 2376                          Government - Local               true
## 2377                Voluntary non-profit - Other               true
## 2378              Voluntary non-profit - Private               true
## 2379 Government - Hospital District or Authority               true
## 2380               Voluntary non-profit - Church               true
## 2381                Voluntary non-profit - Other               true
## 2382              Voluntary non-profit - Private               true
## 2383                Voluntary non-profit - Other              false
## 2384                Voluntary non-profit - Other               true
## 2385                Voluntary non-profit - Other               true
## 2386 Government - Hospital District or Authority               true
## 2387                                 Proprietary               true
## 2388              Voluntary non-profit - Private               true
## 2389                          Government - Local               true
## 2390                                 Proprietary              false
## 2391               Voluntary non-profit - Church               true
## 2392              Voluntary non-profit - Private               true
## 2393              Voluntary non-profit - Private               true
## 2394              Voluntary non-profit - Private               true
## 2395              Voluntary non-profit - Private               true
## 2396              Voluntary non-profit - Private              false
## 2397                        Government - Federal               true
## 2398               Voluntary non-profit - Church               true
## 2399              Voluntary non-profit - Private               true
## 2400                                   Physician              false
## 2401              Voluntary non-profit - Private               true
## 2402                                 Proprietary              false
## 2403                                 Proprietary               true
## 2404                Voluntary non-profit - Other              false
## 2405 Government - Hospital District or Authority               true
## 2406                                 Proprietary               true
## 2407               Voluntary non-profit - Church               true
## 2408              Voluntary non-profit - Private               true
## 2409 Government - Hospital District or Authority               true
## 2410                Voluntary non-profit - Other              false
## 2411                                 Proprietary               true
## 2412              Voluntary non-profit - Private              false
## 2413              Voluntary non-profit - Private               true
## 2414                          Government - Local               true
## 2415                Voluntary non-profit - Other               true
## 2416              Voluntary non-profit - Private               true
## 2417               Voluntary non-profit - Church               true
## 2418              Voluntary non-profit - Private               true
## 2419              Voluntary non-profit - Private              false
## 2420              Voluntary non-profit - Private               true
## 2421              Voluntary non-profit - Private               true
## 2422              Voluntary non-profit - Private               true
## 2423              Voluntary non-profit - Private               true
## 2424              Voluntary non-profit - Private               true
## 2425              Voluntary non-profit - Private               true
## 2426              Voluntary non-profit - Private              false
## 2427              Voluntary non-profit - Private               true
## 2428                          Government - State              false
## 2429              Voluntary non-profit - Private               true
## 2430                                 Proprietary              false
## 2431                                 Proprietary               true
## 2432                                 Proprietary              false
## 2433 Government - Hospital District or Authority               true
## 2434 Government - Hospital District or Authority               true
## 2435                          Government - Local               true
## 2436               Voluntary non-profit - Church               true
## 2437              Voluntary non-profit - Private               true
## 2438                          Government - State              false
## 2439 Government - Hospital District or Authority               true
## 2440                          Government - State              false
## 2441                          Government - Local               true
## 2442                          Government - State               true
## 2443              Voluntary non-profit - Private               true
## 2444                        Government - Federal              false
## 2445               Voluntary non-profit - Church               true
## 2446              Voluntary non-profit - Private               true
## 2447 Government - Hospital District or Authority               true
## 2448                          Government - Local               true
## 2449              Voluntary non-profit - Private              false
## 2450 Government - Hospital District or Authority               true
## 2451                                 Proprietary               true
## 2452              Voluntary non-profit - Private               true
## 2453              Voluntary non-profit - Private               true
## 2454                          Government - Local               true
## 2455                                 Proprietary               true
## 2456              Voluntary non-profit - Private               true
## 2457                                   Physician               true
## 2458                Voluntary non-profit - Other               true
## 2459              Voluntary non-profit - Private               true
## 2460              Voluntary non-profit - Private               true
## 2461              Voluntary non-profit - Private               true
## 2462                                 Proprietary               true
## 2463              Voluntary non-profit - Private               true
## 2464 Government - Hospital District or Authority               true
## 2465              Voluntary non-profit - Private               true
## 2466                          Government - Local               true
## 2467              Voluntary non-profit - Private               true
## 2468                                 Proprietary              false
## 2469              Voluntary non-profit - Private               true
## 2470              Voluntary non-profit - Private               true
## 2471              Voluntary non-profit - Private               true
## 2472                                 Proprietary              false
## 2473                                      Tribal               true
## 2474                                 Proprietary              false
## 2475               Voluntary non-profit - Church               true
## 2476               Voluntary non-profit - Church               true
## 2477              Voluntary non-profit - Private               true
## 2478               Voluntary non-profit - Church               true
## 2479              Voluntary non-profit - Private               true
## 2480              Voluntary non-profit - Private               true
## 2481               Voluntary non-profit - Church               true
## 2482              Voluntary non-profit - Private               true
## 2483                                 Proprietary               true
## 2484                                 Proprietary               true
## 2485                          Government - State               true
## 2486              Voluntary non-profit - Private               true
## 2487                        Government - Federal               true
## 2488 Government - Hospital District or Authority               true
## 2489                                 Proprietary              false
## 2490                Voluntary non-profit - Other               true
## 2491               Voluntary non-profit - Church               true
## 2492                          Government - Local               true
## 2493              Voluntary non-profit - Private              false
## 2494                          Government - State              false
## 2495               Voluntary non-profit - Church               true
## 2496                          Government - Local               true
## 2497                          Government - Local              false
## 2498              Voluntary non-profit - Private               true
## 2499                                 Proprietary              false
## 2500               Voluntary non-profit - Church               true
## 2501 Government - Hospital District or Authority               true
## 2502              Voluntary non-profit - Private               true
## 2503              Voluntary non-profit - Private              false
## 2504              Voluntary non-profit - Private               true
## 2505 Government - Hospital District or Authority               true
## 2506                                 Proprietary               true
## 2507              Voluntary non-profit - Private               true
## 2508                Voluntary non-profit - Other               true
## 2509                          Government - Local               true
## 2510                                 Proprietary               true
## 2511                                 Proprietary               true
## 2512              Voluntary non-profit - Private               true
## 2513              Voluntary non-profit - Private               true
## 2514              Voluntary non-profit - Private               true
## 2515              Voluntary non-profit - Private               true
## 2516                          Government - State               true
## 2517              Voluntary non-profit - Private               true
## 2518              Voluntary non-profit - Private               true
## 2519                                 Proprietary               true
## 2520                                 Proprietary              false
## 2521                                   Physician               true
## 2522              Voluntary non-profit - Private               true
## 2523              Voluntary non-profit - Private               true
## 2524                                 Proprietary              false
## 2525               Voluntary non-profit - Church               true
## 2526              Voluntary non-profit - Private               true
## 2527                          Government - Local               true
## 2528              Voluntary non-profit - Private               true
## 2529               Voluntary non-profit - Church               true
## 2530                                 Proprietary               true
## 2531                          Government - Local               true
## 2532                                   Physician               true
## 2533                Voluntary non-profit - Other               true
## 2534              Voluntary non-profit - Private               true
## 2535              Voluntary non-profit - Private               true
## 2536              Voluntary non-profit - Private               true
## 2537                Voluntary non-profit - Other               true
## 2538              Voluntary non-profit - Private              false
## 2539                          Government - State              false
## 2540                                 Proprietary              false
## 2541                Voluntary non-profit - Other               true
## 2542              Voluntary non-profit - Private               true
## 2543              Voluntary non-profit - Private              false
## 2544              Voluntary non-profit - Private               true
## 2545              Voluntary non-profit - Private               true
## 2546                Voluntary non-profit - Other               true
## 2547              Voluntary non-profit - Private              false
## 2548                                 Proprietary              false
## 2549              Voluntary non-profit - Private               true
## 2550                          Government - State              false
## 2551              Voluntary non-profit - Private               true
## 2552                          Government - Local              false
## 2553                          Government - Local               true
## 2554                          Government - Local               true
## 2555              Voluntary non-profit - Private               true
## 2556                                 Proprietary               true
## 2557                                 Proprietary               true
## 2558                                 Proprietary              false
## 2559                                 Proprietary              false
## 2560              Voluntary non-profit - Private               true
## 2561              Voluntary non-profit - Private               true
## 2562              Voluntary non-profit - Private               true
## 2563              Voluntary non-profit - Private               true
## 2564              Voluntary non-profit - Private               true
## 2565              Voluntary non-profit - Private               true
## 2566              Voluntary non-profit - Private               true
## 2567              Voluntary non-profit - Private               true
## 2568              Voluntary non-profit - Private               true
## 2569                          Government - Local               true
## 2570              Voluntary non-profit - Private               true
## 2571                                 Proprietary               true
## 2572              Voluntary non-profit - Private               true
## 2573                          Government - Local               true
## 2574              Voluntary non-profit - Private               true
## 2575              Voluntary non-profit - Private               true
## 2576               Voluntary non-profit - Church              false
## 2577                                 Proprietary               true
## 2578              Voluntary non-profit - Private               true
## 2579              Voluntary non-profit - Private               true
## 2580                Voluntary non-profit - Other               true
## 2581              Voluntary non-profit - Private               true
## 2582                          Government - Local               true
## 2583                Voluntary non-profit - Other              false
## 2584                Voluntary non-profit - Other               true
## 2585                                 Proprietary              false
## 2586                Voluntary non-profit - Other               true
## 2587                          Government - State               true
## 2588              Voluntary non-profit - Private              false
## 2589                          Government - Local               true
## 2590                                 Proprietary               true
## 2591                                 Proprietary               true
## 2592                Voluntary non-profit - Other               true
## 2593               Voluntary non-profit - Church               true
## 2594 Government - Hospital District or Authority               true
## 2595               Voluntary non-profit - Church               true
## 2596                                 Proprietary               true
## 2597 Government - Hospital District or Authority               true
## 2598              Voluntary non-profit - Private               true
## 2599                          Government - Local               true
## 2600              Voluntary non-profit - Private               true
## 2601                                 Proprietary               true
## 2602              Voluntary non-profit - Private               true
## 2603                          Government - Local               true
## 2604              Voluntary non-profit - Private               true
## 2605              Voluntary non-profit - Private               true
## 2606              Voluntary non-profit - Private              false
## 2607                          Government - Local              false
## 2608              Voluntary non-profit - Private               true
## 2609                                 Proprietary               true
## 2610                                 Proprietary               true
## 2611                Voluntary non-profit - Other               true
## 2612              Voluntary non-profit - Private               true
## 2613                          Government - Local               true
## 2614              Voluntary non-profit - Private               true
## 2615               Voluntary non-profit - Church               true
## 2616              Voluntary non-profit - Private               true
## 2617                                   Physician              false
## 2618              Voluntary non-profit - Private               true
## 2619               Voluntary non-profit - Church               true
## 2620              Voluntary non-profit - Private               true
## 2621                                 Proprietary              false
## 2622                Voluntary non-profit - Other              false
## 2623              Voluntary non-profit - Private               true
## 2624                          Government - State               true
## 2625                          Government - State              false
## 2626               Voluntary non-profit - Church               true
## 2627              Voluntary non-profit - Private               true
## 2628              Voluntary non-profit - Private               true
## 2629              Voluntary non-profit - Private               true
## 2630              Voluntary non-profit - Private               true
## 2631               Voluntary non-profit - Church              false
## 2632                                 Proprietary              false
## 2633              Voluntary non-profit - Private               true
## 2634                                 Proprietary               true
## 2635              Voluntary non-profit - Private               true
## 2636 Government - Hospital District or Authority               true
## 2637                                 Proprietary               true
## 2638              Voluntary non-profit - Private               true
## 2639               Voluntary non-profit - Church               true
## 2640              Voluntary non-profit - Private               true
## 2641                                 Proprietary               true
## 2642 Government - Hospital District or Authority               true
## 2643              Voluntary non-profit - Private               true
## 2644              Voluntary non-profit - Private               true
## 2645                          Government - State               true
## 2646                        Government - Federal               true
## 2647                                 Proprietary               true
## 2648                          Government - Local               true
## 2649                                 Proprietary               true
## 2650                Voluntary non-profit - Other               true
## 2651              Voluntary non-profit - Private               true
## 2652              Voluntary non-profit - Private               true
## 2653                                 Proprietary               true
## 2654                                 Proprietary               true
## 2655                                 Proprietary              false
## 2656              Voluntary non-profit - Private               true
## 2657 Government - Hospital District or Authority               true
## 2658              Voluntary non-profit - Private               true
## 2659              Voluntary non-profit - Private               true
## 2660                                   Physician               true
## 2661                          Government - Local               true
## 2662                                 Proprietary               true
## 2663                                 Proprietary               true
## 2664                          Government - Local               true
## 2665 Government - Hospital District or Authority               true
## 2666              Voluntary non-profit - Private               true
## 2667                          Government - Local               true
## 2668              Voluntary non-profit - Private               true
## 2669                                 Proprietary               true
## 2670              Voluntary non-profit - Private              false
## 2671                Voluntary non-profit - Other               true
## 2672              Voluntary non-profit - Private               true
## 2673                Voluntary non-profit - Other               true
## 2674              Voluntary non-profit - Private               true
## 2675              Voluntary non-profit - Private               true
## 2676              Voluntary non-profit - Private               true
## 2677              Voluntary non-profit - Private               true
## 2678              Voluntary non-profit - Private              false
## 2679                                 Proprietary               true
## 2680                                 Proprietary               true
## 2681                          Government - State              false
## 2682              Voluntary non-profit - Private               true
## 2683                Voluntary non-profit - Other              false
## 2684              Voluntary non-profit - Private               true
## 2685              Voluntary non-profit - Private               true
## 2686              Voluntary non-profit - Private               true
## 2687              Voluntary non-profit - Private               true
## 2688              Voluntary non-profit - Private               true
## 2689                                 Proprietary              false
## 2690                                 Proprietary               true
## 2691                Voluntary non-profit - Other              false
## 2692                                   Physician               true
## 2693                          Government - Local               true
## 2694                                 Proprietary               true
## 2695              Voluntary non-profit - Private               true
## 2696                                 Proprietary               true
## 2697              Voluntary non-profit - Private               true
## 2698                          Government - State              false
## 2699              Voluntary non-profit - Private               true
## 2700                                 Proprietary               true
## 2701                                 Proprietary               true
## 2702                Voluntary non-profit - Other               true
## 2703                                 Proprietary              false
## 2704              Voluntary non-profit - Private               true
## 2705               Voluntary non-profit - Church               true
## 2706              Voluntary non-profit - Private               true
## 2707              Voluntary non-profit - Private               true
## 2708                                 Proprietary              false
## 2709              Voluntary non-profit - Private               true
## 2710              Voluntary non-profit - Private               true
## 2711                                 Proprietary               true
## 2712              Voluntary non-profit - Private               true
## 2713 Government - Hospital District or Authority               true
## 2714               Voluntary non-profit - Church               true
## 2715                                 Proprietary               true
## 2716              Voluntary non-profit - Private              false
## 2717                          Government - Local               true
## 2718                                 Proprietary               true
## 2719                Voluntary non-profit - Other               true
## 2720               Voluntary non-profit - Church               true
## 2721              Voluntary non-profit - Private               true
## 2722              Voluntary non-profit - Private               true
## 2723              Voluntary non-profit - Private               true
## 2724              Voluntary non-profit - Private               true
## 2725                                 Proprietary              false
## 2726                                 Proprietary               true
## 2727                          Government - Local               true
## 2728              Voluntary non-profit - Private               true
## 2729                          Government - Local               true
## 2730                          Government - Local               true
## 2731              Voluntary non-profit - Private               true
## 2732 Government - Hospital District or Authority               true
## 2733              Voluntary non-profit - Private               true
## 2734 Government - Hospital District or Authority               true
## 2735              Voluntary non-profit - Private               true
## 2736              Voluntary non-profit - Private               true
## 2737              Voluntary non-profit - Private               true
## 2738              Voluntary non-profit - Private               true
## 2739              Voluntary non-profit - Private               true
## 2740 Government - Hospital District or Authority               true
## 2741              Voluntary non-profit - Private               true
## 2742              Voluntary non-profit - Private               true
## 2743                          Government - Local              false
## 2744              Voluntary non-profit - Private               true
## 2745              Voluntary non-profit - Private               true
## 2746 Government - Hospital District or Authority               true
## 2747                          Government - Local              false
## 2748              Voluntary non-profit - Private               true
## 2749              Voluntary non-profit - Private               true
## 2750                                 Proprietary               true
## 2751                                 Proprietary              false
## 2752                          Government - Local               true
## 2753                                 Proprietary              false
## 2754                          Government - Local               true
## 2755                Voluntary non-profit - Other               true
## 2756              Voluntary non-profit - Private               true
## 2757                                 Proprietary               true
## 2758              Voluntary non-profit - Private               true
## 2759 Government - Hospital District or Authority               true
## 2760                                 Proprietary               true
## 2761                Voluntary non-profit - Other              false
## 2762                                 Proprietary               true
## 2763                Voluntary non-profit - Other              false
## 2764                          Government - Local               true
## 2765                Voluntary non-profit - Other               true
## 2766               Voluntary non-profit - Church               true
## 2767               Voluntary non-profit - Church               true
## 2768                          Government - Local               true
## 2769              Voluntary non-profit - Private               true
## 2770                                 Proprietary              false
## 2771 Government - Hospital District or Authority               true
## 2772              Voluntary non-profit - Private               true
## 2773                                 Proprietary               true
## 2774              Voluntary non-profit - Private               true
## 2775              Voluntary non-profit - Private              false
## 2776 Government - Hospital District or Authority               true
## 2777              Voluntary non-profit - Private               true
## 2778                Voluntary non-profit - Other               true
## 2779              Voluntary non-profit - Private               true
## 2780              Voluntary non-profit - Private               true
## 2781              Voluntary non-profit - Private               true
## 2782              Voluntary non-profit - Private               true
## 2783                Voluntary non-profit - Other               true
## 2784              Voluntary non-profit - Private               true
## 2785              Voluntary non-profit - Private               true
## 2786                          Government - State              false
## 2787               Voluntary non-profit - Church               true
## 2788                                 Proprietary               true
## 2789                                 Proprietary              false
## 2790                                 Proprietary               true
## 2791 Government - Hospital District or Authority               true
## 2792                                 Proprietary               true
## 2793                                 Proprietary               true
## 2794                                   Physician              false
## 2795 Government - Hospital District or Authority               true
## 2796              Voluntary non-profit - Private               true
## 2797              Voluntary non-profit - Private               true
## 2798              Voluntary non-profit - Private               true
## 2799              Voluntary non-profit - Private               true
## 2800              Voluntary non-profit - Private               true
## 2801                                 Proprietary               true
## 2802                                 Proprietary              false
## 2803 Government - Hospital District or Authority               true
## 2804               Voluntary non-profit - Church               true
## 2805                Voluntary non-profit - Other               true
## 2806              Voluntary non-profit - Private               true
## 2807              Voluntary non-profit - Private               true
## 2808              Voluntary non-profit - Private               true
## 2809                          Government - Local               true
## 2810              Voluntary non-profit - Private               true
## 2811              Voluntary non-profit - Private               true
## 2812                Voluntary non-profit - Other               true
## 2813              Voluntary non-profit - Private               true
## 2814                                 Proprietary               true
## 2815 Government - Hospital District or Authority               true
## 2816              Voluntary non-profit - Private               true
## 2817                                 Proprietary              false
## 2818                Voluntary non-profit - Other               true
## 2819               Voluntary non-profit - Church               true
## 2820                          Government - State              false
## 2821              Voluntary non-profit - Private              false
## 2822 Government - Hospital District or Authority               true
## 2823              Voluntary non-profit - Private               true
## 2824              Voluntary non-profit - Private               true
## 2825              Voluntary non-profit - Private               true
## 2826                          Government - Local               true
## 2827                          Government - State              false
## 2828              Voluntary non-profit - Private              false
## 2829                                 Proprietary              false
## 2830                Voluntary non-profit - Other               true
## 2831              Voluntary non-profit - Private               true
## 2832              Voluntary non-profit - Private               true
## 2833              Voluntary non-profit - Private               true
## 2834              Voluntary non-profit - Private               true
## 2835                                 Proprietary              false
## 2836              Voluntary non-profit - Private               true
## 2837              Voluntary non-profit - Private               true
## 2838                Voluntary non-profit - Other               true
## 2839                          Government - Local              false
## 2840 Government - Hospital District or Authority               true
## 2841              Voluntary non-profit - Private               true
## 2842              Voluntary non-profit - Private               true
## 2843                                 Proprietary               true
## 2844              Voluntary non-profit - Private               true
## 2845                                 Proprietary              false
## 2846                Voluntary non-profit - Other               true
## 2847              Voluntary non-profit - Private              false
## 2848              Voluntary non-profit - Private               true
## 2849                                 Proprietary               true
## 2850              Voluntary non-profit - Private               true
## 2851 Government - Hospital District or Authority               true
## 2852              Voluntary non-profit - Private               true
## 2853              Voluntary non-profit - Private               true
## 2854                          Government - Local              false
## 2855              Voluntary non-profit - Private               true
## 2856 Government - Hospital District or Authority               true
## 2857                Voluntary non-profit - Other               true
## 2858              Voluntary non-profit - Private               true
## 2859              Voluntary non-profit - Private               true
## 2860              Voluntary non-profit - Private               true
## 2861                Voluntary non-profit - Other               true
## 2862 Government - Hospital District or Authority               true
## 2863                                 Proprietary               true
## 2864              Voluntary non-profit - Private               true
## 2865              Voluntary non-profit - Private               true
## 2866                                 Proprietary               true
## 2867 Government - Hospital District or Authority               true
## 2868              Voluntary non-profit - Private               true
## 2869              Voluntary non-profit - Private               true
## 2870              Voluntary non-profit - Private               true
## 2871              Voluntary non-profit - Private               true
## 2872               Voluntary non-profit - Church               true
## 2873              Voluntary non-profit - Private               true
## 2874              Voluntary non-profit - Private               true
## 2875                                 Proprietary               true
## 2876 Government - Hospital District or Authority               true
## 2877                          Government - Local               true
## 2878              Voluntary non-profit - Private               true
## 2879 Government - Hospital District or Authority               true
## 2880                          Government - State              false
## 2881 Government - Hospital District or Authority               true
## 2882                                 Proprietary               true
## 2883                          Government - Local               true
## 2884                                 Proprietary              false
## 2885 Government - Hospital District or Authority               true
## 2886                                 Proprietary               true
## 2887                          Government - Local               true
## 2888                                 Proprietary               true
## 2889                                 Proprietary               true
## 2890                Voluntary non-profit - Other               true
## 2891               Voluntary non-profit - Church               true
## 2892              Voluntary non-profit - Private               true
## 2893              Voluntary non-profit - Private               true
## 2894                Voluntary non-profit - Other               true
## 2895              Voluntary non-profit - Private              false
## 2896                Voluntary non-profit - Other               true
## 2897 Government - Hospital District or Authority               true
## 2898              Voluntary non-profit - Private               true
## 2899 Government - Hospital District or Authority               true
## 2900 Government - Hospital District or Authority               true
## 2901                          Government - Local               true
## 2902                                 Proprietary               true
## 2903              Voluntary non-profit - Private               true
## 2904                          Government - Local               true
## 2905                                 Proprietary              false
## 2906                Voluntary non-profit - Other              false
## 2907               Voluntary non-profit - Church               true
## 2908                                 Proprietary               true
## 2909              Voluntary non-profit - Private               true
## 2910              Voluntary non-profit - Private               true
## 2911                                 Proprietary               true
## 2912              Voluntary non-profit - Private               true
## 2913 Government - Hospital District or Authority               true
## 2914               Voluntary non-profit - Church               true
## 2915              Voluntary non-profit - Private               true
## 2916                Voluntary non-profit - Other              false
## 2917                          Government - State               true
## 2918              Voluntary non-profit - Private               true
## 2919                                 Proprietary               true
## 2920                Voluntary non-profit - Other               true
## 2921              Voluntary non-profit - Private               true
## 2922              Voluntary non-profit - Private               true
## 2923 Government - Hospital District or Authority               true
## 2924               Voluntary non-profit - Church               true
## 2925              Voluntary non-profit - Private               true
## 2926                          Government - State              false
## 2927 Government - Hospital District or Authority               true
## 2928              Voluntary non-profit - Private               true
## 2929              Voluntary non-profit - Private               true
## 2930                Voluntary non-profit - Other               true
## 2931                                 Proprietary               true
## 2932              Voluntary non-profit - Private               true
## 2933                Voluntary non-profit - Other               true
## 2934                                 Proprietary              false
## 2935 Government - Hospital District or Authority               true
## 2936              Voluntary non-profit - Private               true
## 2937              Voluntary non-profit - Private               true
## 2938              Voluntary non-profit - Private               true
## 2939                                 Proprietary               true
## 2940                                 Proprietary               true
## 2941              Voluntary non-profit - Private               true
## 2942                                 Proprietary              false
## 2943                Voluntary non-profit - Other               true
## 2944                                   Physician              false
## 2945                                 Proprietary               true
## 2946 Government - Hospital District or Authority               true
## 2947                                 Proprietary               true
## 2948              Voluntary non-profit - Private               true
## 2949               Voluntary non-profit - Church              false
## 2950                                 Proprietary              false
## 2951              Voluntary non-profit - Private               true
## 2952 Government - Hospital District or Authority               true
## 2953              Voluntary non-profit - Private               true
## 2954              Voluntary non-profit - Private               true
## 2955              Voluntary non-profit - Private               true
## 2956                                      Tribal               true
## 2957                                 Proprietary              false
## 2958                Voluntary non-profit - Other               true
## 2959              Voluntary non-profit - Private               true
## 2960              Voluntary non-profit - Private               true
## 2961                                 Proprietary               true
## 2962              Voluntary non-profit - Private               true
## 2963 Government - Hospital District or Authority               true
## 2964              Voluntary non-profit - Private               true
## 2965                Voluntary non-profit - Other               true
## 2966              Voluntary non-profit - Private              false
## 2967               Voluntary non-profit - Church               true
## 2968                                 Proprietary              false
## 2969                          Government - Local               true
## 2970              Voluntary non-profit - Private               true
## 2971                Voluntary non-profit - Other               true
## 2972                                 Proprietary               true
## 2973              Voluntary non-profit - Private               true
## 2974                          Government - State               true
## 2975              Voluntary non-profit - Private               true
## 2976 Government - Hospital District or Authority               true
## 2977                                 Proprietary               true
## 2978                          Government - Local               true
## 2979              Voluntary non-profit - Private               true
## 2980                                 Proprietary               true
## 2981              Voluntary non-profit - Private               true
## 2982                Voluntary non-profit - Other               true
## 2983                                 Proprietary               true
## 2984 Government - Hospital District or Authority               true
## 2985              Voluntary non-profit - Private               true
## 2986 Government - Hospital District or Authority               true
## 2987              Voluntary non-profit - Private               true
## 2988                                   Physician              false
## 2989                                 Proprietary               true
## 2990              Voluntary non-profit - Private               true
## 2991                Voluntary non-profit - Other               true
## 2992               Voluntary non-profit - Church               true
## 2993                                 Proprietary               true
## 2994 Government - Hospital District or Authority               true
## 2995              Voluntary non-profit - Private               true
## 2996              Voluntary non-profit - Private               true
## 2997                                 Proprietary              false
## 2998              Voluntary non-profit - Private               true
## 2999              Voluntary non-profit - Private               true
## 3000               Voluntary non-profit - Church               true
## 3001              Voluntary non-profit - Private              false
## 3002                Voluntary non-profit - Other               true
## 3003               Voluntary non-profit - Church               true
## 3004 Government - Hospital District or Authority               true
## 3005 Government - Hospital District or Authority               true
## 3006                Voluntary non-profit - Other               true
## 3007                                 Proprietary              false
## 3008 Government - Hospital District or Authority               true
## 3009                                 Proprietary               true
## 3010              Voluntary non-profit - Private               true
## 3011 Government - Hospital District or Authority               true
## 3012 Government - Hospital District or Authority               true
## 3013 Government - Hospital District or Authority               true
## 3014                Voluntary non-profit - Other               true
## 3015              Voluntary non-profit - Private              false
## 3016              Voluntary non-profit - Private               true
## 3017                                   Physician              false
## 3018              Voluntary non-profit - Private               true
## 3019              Voluntary non-profit - Private               true
## 3020              Voluntary non-profit - Private               true
## 3021              Voluntary non-profit - Private               true
## 3022                        Government - Federal               true
## 3023                          Government - Local               true
## 3024                Voluntary non-profit - Other               true
## 3025                          Government - Local               true
## 3026              Voluntary non-profit - Private               true
## 3027                                 Proprietary               true
## 3028               Voluntary non-profit - Church              false
## 3029              Voluntary non-profit - Private               true
## 3030                                   Physician              false
## 3031              Voluntary non-profit - Private               true
## 3032              Voluntary non-profit - Private               true
## 3033              Voluntary non-profit - Private               true
## 3034                Voluntary non-profit - Other               true
## 3035              Voluntary non-profit - Private               true
## 3036                                 Proprietary               true
## 3037              Voluntary non-profit - Private              false
## 3038                                 Proprietary               true
## 3039                Voluntary non-profit - Other               true
## 3040              Voluntary non-profit - Private               true
## 3041                                 Proprietary               true
## 3042                                 Proprietary               true
## 3043                                 Proprietary               true
## 3044              Voluntary non-profit - Private               true
## 3045                          Government - State               true
## 3046              Voluntary non-profit - Private               true
## 3047              Voluntary non-profit - Private               true
## 3048 Government - Hospital District or Authority              false
## 3049                                 Proprietary              false
## 3050              Voluntary non-profit - Private               true
## 3051                                 Proprietary               true
## 3052              Voluntary non-profit - Private               true
## 3053               Voluntary non-profit - Church               true
## 3054              Voluntary non-profit - Private               true
## 3055               Voluntary non-profit - Church               true
## 3056              Voluntary non-profit - Private               true
## 3057                                 Proprietary              false
## 3058 Government - Hospital District or Authority               true
## 3059                          Government - Local               true
## 3060                          Government - State              false
## 3061                                 Proprietary              false
## 3062              Voluntary non-profit - Private               true
## 3063               Voluntary non-profit - Church               true
## 3064              Voluntary non-profit - Private               true
## 3065                                 Proprietary               true
## 3066              Voluntary non-profit - Private               true
## 3067              Voluntary non-profit - Private               true
## 3068              Voluntary non-profit - Private              false
## 3069              Voluntary non-profit - Private               true
## 3070              Voluntary non-profit - Private               true
## 3071 Government - Hospital District or Authority               true
## 3072                          Government - Local               true
## 3073                          Government - Local               true
## 3074                                 Proprietary               true
## 3075               Voluntary non-profit - Church               true
## 3076                Voluntary non-profit - Other               true
## 3077                          Government - Local               true
## 3078              Voluntary non-profit - Private               true
## 3079                Voluntary non-profit - Other               true
## 3080                                 Proprietary               true
## 3081              Voluntary non-profit - Private               true
## 3082                          Government - Local               true
## 3083                          Government - Local               true
## 3084              Voluntary non-profit - Private              false
## 3085              Voluntary non-profit - Private               true
## 3086                                 Proprietary               true
## 3087              Voluntary non-profit - Private               true
## 3088                          Government - State              false
## 3089               Voluntary non-profit - Church               true
## 3090               Voluntary non-profit - Church               true
## 3091                Voluntary non-profit - Other               true
## 3092               Voluntary non-profit - Church               true
## 3093              Voluntary non-profit - Private               true
## 3094                          Government - Local               true
## 3095              Voluntary non-profit - Private               true
## 3096                Voluntary non-profit - Other              false
## 3097                                   Physician               true
## 3098 Government - Hospital District or Authority               true
## 3099                                 Proprietary               true
## 3100              Voluntary non-profit - Private               true
## 3101              Voluntary non-profit - Private               true
## 3102              Voluntary non-profit - Private               true
## 3103                          Government - Local               true
## 3104                          Government - Local               true
## 3105                                 Proprietary               true
## 3106              Voluntary non-profit - Private               true
## 3107 Government - Hospital District or Authority               true
## 3108 Government - Hospital District or Authority               true
## 3109                                 Proprietary               true
## 3110                Voluntary non-profit - Other               true
## 3111                                   Physician              false
## 3112                          Government - State               true
## 3113              Voluntary non-profit - Private               true
## 3114 Government - Hospital District or Authority               true
## 3115              Voluntary non-profit - Private               true
## 3116                                 Proprietary              false
## 3117                                 Proprietary              false
## 3118              Voluntary non-profit - Private               true
## 3119              Voluntary non-profit - Private               true
## 3120              Voluntary non-profit - Private               true
## 3121              Voluntary non-profit - Private               true
## 3122              Voluntary non-profit - Private               true
## 3123                          Government - State              false
## 3124              Voluntary non-profit - Private               true
## 3125                          Government - Local               true
## 3126                Voluntary non-profit - Other               true
## 3127              Voluntary non-profit - Private               true
## 3128              Voluntary non-profit - Private               true
## 3129                        Government - Federal               true
## 3130 Government - Hospital District or Authority               true
## 3131              Voluntary non-profit - Private               true
## 3132                                 Proprietary               true
## 3133               Voluntary non-profit - Church              false
## 3134              Voluntary non-profit - Private               true
## 3135                                 Proprietary              false
## 3136                Voluntary non-profit - Other               true
## 3137                          Government - State              false
## 3138                          Government - State               true
## 3139                          Government - State              false
## 3140              Voluntary non-profit - Private               true
## 3141              Voluntary non-profit - Private               true
## 3142                                 Proprietary               true
## 3143               Voluntary non-profit - Church               true
## 3144              Voluntary non-profit - Private               true
## 3145               Voluntary non-profit - Church               true
## 3146              Voluntary non-profit - Private               true
## 3147              Voluntary non-profit - Private               true
## 3148              Voluntary non-profit - Private               true
## 3149              Voluntary non-profit - Private               true
## 3150              Voluntary non-profit - Private               true
## 3151               Voluntary non-profit - Church               true
## 3152              Voluntary non-profit - Private               true
## 3153              Voluntary non-profit - Private               true
## 3154                          Government - Local               true
## 3155 Government - Hospital District or Authority               true
## 3156              Voluntary non-profit - Private               true
## 3157                                 Proprietary              false
## 3158               Voluntary non-profit - Church               true
## 3159                                 Proprietary               true
## 3160              Voluntary non-profit - Private               true
## 3161              Voluntary non-profit - Private               true
## 3162               Voluntary non-profit - Church               true
## 3163                                 Proprietary               true
## 3164                          Government - State               true
## 3165                Voluntary non-profit - Other               true
## 3166              Voluntary non-profit - Private               true
## 3167               Voluntary non-profit - Church               true
## 3168              Voluntary non-profit - Private               true
## 3169              Voluntary non-profit - Private               true
## 3170              Voluntary non-profit - Private               true
## 3171              Voluntary non-profit - Private               true
## 3172                                 Proprietary               true
## 3173              Voluntary non-profit - Private               true
## 3174               Voluntary non-profit - Church               true
## 3175                          Government - State               true
## 3176                                 Proprietary               true
## 3177                                 Proprietary               true
## 3178                          Government - Local               true
## 3179              Voluntary non-profit - Private               true
## 3180                                   Physician               true
## 3181              Voluntary non-profit - Private               true
## 3182              Voluntary non-profit - Private               true
## 3183                                 Proprietary               true
## 3184                                 Proprietary              false
## 3185              Voluntary non-profit - Private               true
## 3186              Voluntary non-profit - Private               true
## 3187              Voluntary non-profit - Private               true
## 3188                Voluntary non-profit - Other               true
## 3189              Voluntary non-profit - Private               true
## 3190               Voluntary non-profit - Church               true
## 3191                          Government - Local               true
## 3192              Voluntary non-profit - Private               true
## 3193              Voluntary non-profit - Private               true
## 3194 Government - Hospital District or Authority               true
## 3195              Voluntary non-profit - Private               true
## 3196              Voluntary non-profit - Private               true
## 3197                                 Proprietary               true
## 3198 Government - Hospital District or Authority               true
## 3199              Voluntary non-profit - Private               true
## 3200              Voluntary non-profit - Private               true
## 3201                                 Proprietary              false
## 3202              Voluntary non-profit - Private               true
## 3203              Voluntary non-profit - Private               true
## 3204              Voluntary non-profit - Private               true
## 3205                Voluntary non-profit - Other               true
## 3206              Voluntary non-profit - Private               true
## 3207                                 Proprietary              false
## 3208                                 Proprietary               true
## 3209 Government - Hospital District or Authority               true
## 3210 Government - Hospital District or Authority               true
## 3211              Voluntary non-profit - Private               true
## 3212              Voluntary non-profit - Private               true
## 3213                                 Proprietary               true
## 3214                Voluntary non-profit - Other               true
## 3215 Government - Hospital District or Authority               true
## 3216              Voluntary non-profit - Private               true
## 3217 Government - Hospital District or Authority               true
## 3218              Voluntary non-profit - Private               true
## 3219               Voluntary non-profit - Church               true
## 3220 Government - Hospital District or Authority               true
## 3221              Voluntary non-profit - Private               true
## 3222                Voluntary non-profit - Other               true
## 3223              Voluntary non-profit - Private               true
## 3224              Voluntary non-profit - Private               true
## 3225 Government - Hospital District or Authority               true
## 3226              Voluntary non-profit - Private               true
## 3227                Voluntary non-profit - Other               true
## 3228                                 Proprietary               true
## 3229               Voluntary non-profit - Church               true
## 3230              Voluntary non-profit - Private              false
## 3231               Voluntary non-profit - Church               true
## 3232              Voluntary non-profit - Private               true
## 3233               Voluntary non-profit - Church               true
## 3234                                 Proprietary               true
## 3235              Voluntary non-profit - Private               true
## 3236                                   Physician               true
## 3237 Government - Hospital District or Authority               true
## 3238              Voluntary non-profit - Private               true
## 3239               Voluntary non-profit - Church               true
## 3240                                 Proprietary               true
## 3241              Voluntary non-profit - Private               true
## 3242              Voluntary non-profit - Private               true
## 3243              Voluntary non-profit - Private              false
## 3244              Voluntary non-profit - Private               true
## 3245                          Government - State              false
## 3246 Government - Hospital District or Authority               true
## 3247              Voluntary non-profit - Private               true
## 3248              Voluntary non-profit - Private              false
## 3249                                 Proprietary              false
## 3250                                 Proprietary               true
## 3251 Government - Hospital District or Authority               true
## 3252 Government - Hospital District or Authority               true
## 3253                                 Proprietary               true
## 3254 Government - Hospital District or Authority               true
## 3255 Government - Hospital District or Authority               true
## 3256              Voluntary non-profit - Private               true
## 3257                          Government - State              false
## 3258                                 Proprietary               true
## 3259 Government - Hospital District or Authority               true
## 3260                                 Proprietary               true
## 3261              Voluntary non-profit - Private               true
## 3262              Voluntary non-profit - Private              false
## 3263 Government - Hospital District or Authority               true
## 3264              Voluntary non-profit - Private              false
## 3265              Voluntary non-profit - Private              false
## 3266                Voluntary non-profit - Other               true
## 3267                Voluntary non-profit - Other               true
## 3268                          Government - State               true
## 3269                          Government - Local               true
## 3270                                 Proprietary              false
## 3271              Voluntary non-profit - Private               true
## 3272              Voluntary non-profit - Private              false
## 3273                                 Proprietary               true
## 3274                                 Proprietary               true
## 3275 Government - Hospital District or Authority               true
## 3276              Voluntary non-profit - Private               true
## 3277 Government - Hospital District or Authority               true
## 3278              Voluntary non-profit - Private               true
## 3279                        Government - Federal              false
## 3280                          Government - Local               true
## 3281              Voluntary non-profit - Private              false
## 3282              Voluntary non-profit - Private               true
## 3283                          Government - Local               true
## 3284              Voluntary non-profit - Private               true
## 3285                                 Proprietary               true
## 3286 Government - Hospital District or Authority               true
## 3287                                 Proprietary              false
## 3288                Voluntary non-profit - Other               true
## 3289                                 Proprietary               true
## 3290              Voluntary non-profit - Private               true
## 3291              Voluntary non-profit - Private               true
## 3292              Voluntary non-profit - Private               true
## 3293              Voluntary non-profit - Private               true
## 3294               Voluntary non-profit - Church               true
## 3295              Voluntary non-profit - Private               true
## 3296                                 Proprietary              false
## 3297              Voluntary non-profit - Private              false
## 3298              Voluntary non-profit - Private               true
## 3299               Voluntary non-profit - Church               true
## 3300               Voluntary non-profit - Church               true
## 3301              Voluntary non-profit - Private               true
## 3302              Voluntary non-profit - Private               true
## 3303                Voluntary non-profit - Other               true
## 3304              Voluntary non-profit - Private               true
## 3305                                 Proprietary               true
## 3306 Government - Hospital District or Authority               true
## 3307                                 Proprietary               true
## 3308 Government - Hospital District or Authority               true
## 3309              Voluntary non-profit - Private              false
## 3310              Voluntary non-profit - Private               true
## 3311              Voluntary non-profit - Private               true
## 3312              Voluntary non-profit - Private               true
## 3313              Voluntary non-profit - Private               true
## 3314              Voluntary non-profit - Private               true
## 3315              Voluntary non-profit - Private               true
## 3316                          Government - State              false
## 3317              Voluntary non-profit - Private               true
## 3318                                 Proprietary               true
## 3319                                 Proprietary              false
## 3320              Voluntary non-profit - Private               true
## 3321              Voluntary non-profit - Private               true
## 3322              Voluntary non-profit - Private               true
## 3323                                 Proprietary              false
## 3324              Voluntary non-profit - Private               true
## 3325                                 Proprietary               true
## 3326                                 Proprietary               true
## 3327              Voluntary non-profit - Private               true
## 3328              Voluntary non-profit - Private               true
## 3329              Voluntary non-profit - Private               true
## 3330               Voluntary non-profit - Church               true
## 3331              Voluntary non-profit - Private               true
## 3332              Voluntary non-profit - Private               true
## 3333               Voluntary non-profit - Church               true
## 3334                          Government - State               true
## 3335              Voluntary non-profit - Private               true
## 3336               Voluntary non-profit - Church               true
## 3337              Voluntary non-profit - Private               true
## 3338              Voluntary non-profit - Private               true
## 3339                          Government - Local               true
## 3340              Voluntary non-profit - Private               true
## 3341              Voluntary non-profit - Private               true
## 3342                                 Proprietary               true
## 3343                                   Physician               true
## 3344              Voluntary non-profit - Private               true
## 3345               Voluntary non-profit - Church               true
## 3346              Voluntary non-profit - Private               true
## 3347                                 Proprietary               true
## 3348                Voluntary non-profit - Other              false
## 3349                Voluntary non-profit - Other               true
## 3350              Voluntary non-profit - Private               true
## 3351              Voluntary non-profit - Private              false
## 3352                Voluntary non-profit - Other               true
## 3353              Voluntary non-profit - Private              false
## 3354              Voluntary non-profit - Private               true
## 3355              Voluntary non-profit - Private              false
## 3356              Voluntary non-profit - Private               true
## 3357                          Government - Local               true
## 3358                                 Proprietary               true
## 3359              Voluntary non-profit - Private               true
## 3360                          Government - State              false
## 3361              Voluntary non-profit - Private               true
## 3362                Voluntary non-profit - Other               true
## 3363               Voluntary non-profit - Church               true
## 3364                                 Proprietary               true
## 3365              Voluntary non-profit - Private               true
## 3366                          Government - Local              false
## 3367              Voluntary non-profit - Private               true
## 3368              Voluntary non-profit - Private               true
## 3369              Voluntary non-profit - Private               true
## 3370              Voluntary non-profit - Private               true
## 3371              Voluntary non-profit - Private               true
## 3372              Voluntary non-profit - Private               true
## 3373              Voluntary non-profit - Private               true
## 3374                          Government - Local               true
## 3375 Government - Hospital District or Authority               true
## 3376                          Government - State              false
## 3377                                   Physician              false
## 3378                          Government - Local              false
## 3379              Voluntary non-profit - Private               true
## 3380                Voluntary non-profit - Other              false
## 3381 Government - Hospital District or Authority               true
## 3382                          Government - Local               true
## 3383              Voluntary non-profit - Private              false
## 3384 Government - Hospital District or Authority               true
## 3385              Voluntary non-profit - Private               true
## 3386 Government - Hospital District or Authority               true
## 3387 Government - Hospital District or Authority               true
## 3388              Voluntary non-profit - Private               true
## 3389              Voluntary non-profit - Private               true
## 3390              Voluntary non-profit - Private               true
## 3391              Voluntary non-profit - Private               true
## 3392 Government - Hospital District or Authority               true
## 3393                          Government - Local               true
## 3394                                 Proprietary               true
## 3395 Government - Hospital District or Authority               true
## 3396                          Government - Local               true
## 3397                          Government - Local               true
## 3398                          Government - Local              false
## 3399              Voluntary non-profit - Private               true
## 3400              Voluntary non-profit - Private               true
## 3401                Voluntary non-profit - Other               true
## 3402                          Government - Local               true
## 3403              Voluntary non-profit - Private               true
## 3404              Voluntary non-profit - Private               true
## 3405              Voluntary non-profit - Private               true
## 3406              Voluntary non-profit - Private               true
## 3407              Voluntary non-profit - Private               true
## 3408                Voluntary non-profit - Other               true
## 3409               Voluntary non-profit - Church               true
## 3410              Voluntary non-profit - Private               true
## 3411 Government - Hospital District or Authority               true
## 3412 Government - Hospital District or Authority              false
## 3413               Voluntary non-profit - Church               true
## 3414                          Government - Local               true
## 3415               Voluntary non-profit - Church               true
## 3416 Government - Hospital District or Authority               true
## 3417                          Government - Local               true
## 3418 Government - Hospital District or Authority               true
## 3419              Voluntary non-profit - Private               true
## 3420              Voluntary non-profit - Private               true
## 3421              Voluntary non-profit - Private               true
## 3422                                 Proprietary               true
## 3423                          Government - Local               true
## 3424              Voluntary non-profit - Private               true
## 3425              Voluntary non-profit - Private               true
## 3426 Government - Hospital District or Authority               true
## 3427                Voluntary non-profit - Other               true
## 3428 Government - Hospital District or Authority               true
## 3429                                   Physician               true
## 3430              Voluntary non-profit - Private               true
## 3431              Voluntary non-profit - Private               true
## 3432              Voluntary non-profit - Private               true
## 3433 Government - Hospital District or Authority               true
## 3434                Voluntary non-profit - Other               true
## 3435                                 Proprietary               true
## 3436              Voluntary non-profit - Private               true
## 3437                Voluntary non-profit - Other               true
## 3438                                 Proprietary               true
## 3439              Voluntary non-profit - Private               true
## 3440              Voluntary non-profit - Private               true
## 3441              Voluntary non-profit - Private               true
## 3442               Voluntary non-profit - Church               true
## 3443                          Government - State              false
## 3444                                 Proprietary               true
## 3445              Voluntary non-profit - Private               true
## 3446                          Government - State              false
## 3447                Voluntary non-profit - Other               true
## 3448                                 Proprietary              false
##      Meets_criteria_for_meaningful_use_of_EHRs Hospital_overall_rating
## 1                                                                    1
## 2                                                        Not Available
## 3                                                        Not Available
## 4                                         true                       3
## 5                                                        Not Available
## 6                                                                    3
## 7                                                        Not Available
## 8                                         true           Not Available
## 9                                                        Not Available
## 10                                                       Not Available
## 11                                                       Not Available
## 12                                        true                       4
## 13                                                       Not Available
## 14                                                       Not Available
## 15                                        true                       5
## 16                                                       Not Available
## 17                                        true           Not Available
## 18                                        true           Not Available
## 19                                                       Not Available
## 20                                                       Not Available
## 21                                                       Not Available
## 22                                        true           Not Available
## 23                                                       Not Available
## 24                                                       Not Available
## 25                                                       Not Available
## 26                                                       Not Available
## 27                                                       Not Available
## 28                                        true           Not Available
## 29                                                       Not Available
## 30                                                                   3
## 31                                        true           Not Available
## 32                                                       Not Available
## 33                                                       Not Available
## 34                                                       Not Available
## 35                                                       Not Available
## 36                                                       Not Available
## 37                                                       Not Available
## 38                                                       Not Available
## 39                                                                   5
## 40                                                       Not Available
## 41                                                       Not Available
## 42                                        true           Not Available
## 43                                        true                       3
## 44                                                       Not Available
## 45                                                       Not Available
## 46                                                       Not Available
## 47                                        true           Not Available
## 48                                                       Not Available
## 49                                                       Not Available
## 50                                                       Not Available
## 51                                                       Not Available
## 52                                                       Not Available
## 53                                                       Not Available
## 54                                                       Not Available
## 55                                                       Not Available
## 56                                                                   4
## 57                                        true                       4
## 58                                                       Not Available
## 59                                                       Not Available
## 60                                                                   4
## 61                                                       Not Available
## 62                                        true           Not Available
## 63                                                       Not Available
## 64                                        true                       3
## 65                                        true                       2
## 66                                        true           Not Available
## 67                                        true                       2
## 68                                        true           Not Available
## 69                                        true                       2
## 70                                        true                       3
## 71                                        true                       5
## 72                                        true                       2
## 73                                        true                       3
## 74                                                       Not Available
## 75                                        true           Not Available
## 76                                        true                       3
## 77                                                       Not Available
## 78                                        true                       3
## 79                                        true                       4
## 80                                        true                       4
## 81                                                       Not Available
## 82                                        true           Not Available
## 83                                                       Not Available
## 84                                        true                       3
## 85                                                       Not Available
## 86                                                       Not Available
## 87                                        true                       3
## 88                                                       Not Available
## 89                                                                   3
## 90                                        true                       3
## 91                                        true                       2
## 92                                        true                       2
## 93                                        true                       5
## 94                                        true                       4
## 95                                        true                       3
## 96                                        true           Not Available
## 97                                        true                       3
## 98                                                                   2
## 99                                        true           Not Available
## 100                                       true                       4
## 101                                       true           Not Available
## 102                                       true                       3
## 103                                                                  3
## 104                                       true                       2
## 105                                       true                       3
## 106                                       true                       2
## 107                                       true                       4
## 108                                       true                       1
## 109                                       true                       5
## 110                                                      Not Available
## 111                                       true                       4
## 112                                       true                       4
## 113                                       true                       3
## 114                                       true                       2
## 115                                                                  2
## 116                                                      Not Available
## 117                                       true           Not Available
## 118                                       true                       4
## 119                                                      Not Available
## 120                                                      Not Available
## 121                                       true                       4
## 122                                                      Not Available
## 123                                       true                       2
## 124                                       true                       4
## 125                                       true           Not Available
## 126                                                      Not Available
## 127                                                      Not Available
## 128                                       true                       3
## 129                                                      Not Available
## 130                                       true                       4
## 131                                       true                       1
## 132                                                                  3
## 133                                       true                       2
## 134                                       true                       3
## 135                                       true                       4
## 136                                       true                       4
## 137                                       true           Not Available
## 138                                                      Not Available
## 139                                       true                       2
## 140                                       true                       3
## 141                                       true                       3
## 142                                                      Not Available
## 143                                                      Not Available
## 144                                       true                       4
## 145                                       true                       3
## 146                                       true           Not Available
## 147                                       true                       4
## 148                                       true                       2
## 149                                       true                       2
## 150                                       true                       2
## 151                                       true                       3
## 152                                                      Not Available
## 153                                       true                       4
## 154                                       true                       4
## 155                                                                  1
## 156                                       true                       2
## 157                                       true           Not Available
## 158                                       true                       5
## 159                                       true           Not Available
## 160                                       true                       4
## 161                                                      Not Available
## 162                                       true                       4
## 163                                       true                       4
## 164                                       true                       2
## 165                                       true                       3
## 166                                                      Not Available
## 167                                       true                       3
## 168                                       true                       3
## 169                                       true           Not Available
## 170                                       true                       2
## 171                                       true           Not Available
## 172                                       true                       2
## 173                                       true           Not Available
## 174                                                                  1
## 175                                                                  3
## 176                                                                  2
## 177                                       true                       3
## 178                                       true                       5
## 179                                                                  4
## 180                                       true                       4
## 181                                       true           Not Available
## 182                                       true                       3
## 183                                       true                       1
## 184                                                      Not Available
## 185                                       true                       3
## 186                                       true                       4
## 187                                       true                       2
## 188                                       true                       3
## 189                                       true                       4
## 190                                       true                       4
## 191                                       true           Not Available
## 192                                       true                       3
## 193                                                      Not Available
## 194                                       true                       1
## 195                                                      Not Available
## 196                                       true                       4
## 197                                                      Not Available
## 198                                       true                       5
## 199                                       true                       2
## 200                                                      Not Available
## 201                                                      Not Available
## 202                                       true                       3
## 203                                                      Not Available
## 204                                       true                       3
## 205                                                      Not Available
## 206                                       true           Not Available
## 207                                       true                       3
## 208                                       true                       5
## 209                                       true                       5
## 210                                       true                       3
## 211                                                      Not Available
## 212                                       true                       3
## 213                                       true           Not Available
## 214                                                                  3
## 215                                                      Not Available
## 216                                       true                       3
## 217                                       true                       4
## 218                                                                  1
## 219                                       true           Not Available
## 220                                                      Not Available
## 221                                                                  4
## 222                                       true                       4
## 223                                       true                       2
## 224                                                      Not Available
## 225                                       true                       1
## 226                                                                  3
## 227                                       true           Not Available
## 228                                       true                       2
## 229                                       true                       3
## 230                                                      Not Available
## 231                                       true           Not Available
## 232                                       true                       2
## 233                                       true                       3
## 234                                       true                       4
## 235                                       true                       2
## 236                                       true                       4
## 237                                       true                       3
## 238                                       true                       5
## 239                                       true                       4
## 240                                       true                       2
## 241                                       true                       4
## 242                                       true                       3
## 243                                       true                       5
## 244                                       true                       1
## 245                                       true                       1
## 246                                       true                       4
## 247                                       true                       2
## 248                                                      Not Available
## 249                                                      Not Available
## 250                                                      Not Available
## 251                                       true                       4
## 252                                                      Not Available
## 253                                                                  1
## 254                                       true           Not Available
## 255                                       true                       4
## 256                                                                  3
## 257                                       true                       2
## 258                                       true                       1
## 259                                       true                       2
## 260                                       true                       1
## 261                                                      Not Available
## 262                                                      Not Available
## 263                                       true                       4
## 264                                       true                       3
## 265                                       true                       2
## 266                                                      Not Available
## 267                                       true                       5
## 268                                                      Not Available
## 269                                       true                       4
## 270                                       true                       3
## 271                                       true                       3
## 272                                       true                       1
## 273                                                      Not Available
## 274                                       true           Not Available
## 275                                                      Not Available
## 276                                       true                       2
## 277                                       true                       4
## 278                                       true           Not Available
## 279                                       true                       2
## 280                                                                  3
## 281                                       true                       3
## 282                                       true                       4
## 283                                                                  3
## 284                                                      Not Available
## 285                                       true           Not Available
## 286                                       true                       3
## 287                                                      Not Available
## 288                                       true                       2
## 289                                                                  3
## 290                                       true                       2
## 291                                       true           Not Available
## 292                                       true                       3
## 293                                                                  2
## 294                                                      Not Available
## 295                                                      Not Available
## 296                                                      Not Available
## 297                                       true                       5
## 298                                       true                       2
## 299                                                      Not Available
## 300                                       true                       4
## 301                                                      Not Available
## 302                                       true                       3
## 303                                       true                       2
## 304                                                      Not Available
## 305                                                      Not Available
## 306                                                      Not Available
## 307                                       true           Not Available
## 308                                       true                       4
## 309                                                      Not Available
## 310                                                      Not Available
## 311                                       true                       2
## 312                                       true                       4
## 313                                       true                       2
## 314                                       true                       3
## 315                                                      Not Available
## 316                                                                  4
## 317                                       true                       3
## 318                                       true                       3
## 319                                                                  4
## 320                                       true                       2
## 321                                       true                       2
## 322                                       true                       4
## 323                                       true                       2
## 324                                                      Not Available
## 325                                       true                       2
## 326                                                      Not Available
## 327                                       true                       1
## 328                                                                  2
## 329                                       true                       3
## 330                                                      Not Available
## 331                                       true                       3
## 332                                       true                       4
## 333                                       true                       2
## 334                                       true                       4
## 335                                       true                       4
## 336                                                      Not Available
## 337                                       true                       2
## 338                                                      Not Available
## 339                                       true                       4
## 340                                                                  2
## 341                                       true                       4
## 342                                       true           Not Available
## 343                                       true                       5
## 344                                                      Not Available
## 345                                       true                       5
## 346                                       true                       3
## 347                                                      Not Available
## 348                                                                  4
## 349                                       true                       5
## 350                                       true                       5
## 351                                       true                       3
## 352                                       true                       3
## 353                                                      Not Available
## 354                                       true                       1
## 355                                                                  3
## 356                                       true                       4
## 357                                                                  3
## 358                                       true                       4
## 359                                       true                       2
## 360                                       true           Not Available
## 361                                                                  3
## 362                                       true                       3
## 363                                       true                       2
## 364                                       true                       4
## 365                                       true                       2
## 366                                       true                       4
## 367                                                                  3
## 368                                       true                       2
## 369                                       true                       2
## 370                                       true                       3
## 371                                       true                       3
## 372                                                                  4
## 373                                       true                       4
## 374                                       true                       1
## 375                                                      Not Available
## 376                                       true                       4
## 377                                                      Not Available
## 378                                       true                       3
## 379                                                      Not Available
## 380                                                                  4
## 381                                       true                       3
## 382                                                      Not Available
## 383                                       true                       4
## 384                                                      Not Available
## 385                                                      Not Available
## 386                                                      Not Available
## 387                                       true                       5
## 388                                       true           Not Available
## 389                                       true                       3
## 390                                       true                       2
## 391                                       true                       2
## 392                                                                  3
## 393                                       true           Not Available
## 394                                       true                       3
## 395                                       true                       3
## 396                                       true                       3
## 397                                       true           Not Available
## 398                                       true                       4
## 399                                       true                       2
## 400                                       true                       5
## 401                                                      Not Available
## 402                                       true                       4
## 403                                                      Not Available
## 404                                       true                       1
## 405                                                      Not Available
## 406                                       true                       3
## 407                                                      Not Available
## 408                                       true                       3
## 409                                       true                       4
## 410                                       true           Not Available
## 411                                       true                       3
## 412                                       true                       5
## 413                                       true                       4
## 414                                       true                       5
## 415                                       true           Not Available
## 416                                       true                       4
## 417                                                      Not Available
## 418                                                      Not Available
## 419                                       true                       4
## 420                                       true           Not Available
## 421                                                      Not Available
## 422                                       true                       2
## 423                                       true                       5
## 424                                                      Not Available
## 425                                       true                       2
## 426                                       true                       4
## 427                                                                  3
## 428                                       true                       4
## 429                                                      Not Available
## 430                                       true                       2
## 431                                       true                       3
## 432                                       true                       3
## 433                                       true                       5
## 434                                       true                       5
## 435                                       true           Not Available
## 436                                       true                       5
## 437                                       true                       4
## 438                                                                  3
## 439                                       true                       1
## 440                                                      Not Available
## 441                                       true                       4
## 442                                       true           Not Available
## 443                                       true                       4
## 444                                       true                       2
## 445                                       true                       4
## 446                                       true                       2
## 447                                       true                       4
## 448                                                      Not Available
## 449                                       true                       3
## 450                                       true                       2
## 451                                                      Not Available
## 452                                       true           Not Available
## 453                                                                  2
## 454                                       true                       4
## 455                                       true                       3
## 456                                       true                       3
## 457                                       true           Not Available
## 458                                                                  2
## 459                                       true                       4
## 460                                       true                       2
## 461                                       true                       4
## 462                                       true                       3
## 463                                       true                       4
## 464                                       true                       2
## 465                                                                  2
## 466                                       true                       3
## 467                                       true                       1
## 468                                       true                       3
## 469                                       true                       4
## 470                                       true                       1
## 471                                       true                       3
## 472                                                                  3
## 473                                       true                       3
## 474                                       true                       2
## 475                                                      Not Available
## 476                                       true           Not Available
## 477                                       true                       5
## 478                                                                  4
## 479                                                                  1
## 480                                       true                       3
## 481                                       true                       3
## 482                                                                  5
## 483                                       true                       4
## 484                                       true                       2
## 485                                       true                       4
## 486                                       true           Not Available
## 487                                       true                       3
## 488                                                                  2
## 489                                       true                       2
## 490                                                                  5
## 491                                       true                       3
## 492                                       true                       4
## 493                                                                  5
## 494                                       true                       3
## 495                                       true                       2
## 496                                       true                       1
## 497                                       true                       1
## 498                                       true                       4
## 499                                                      Not Available
## 500                                       true           Not Available
## 501                                                      Not Available
## 502                                                      Not Available
## 503                                       true                       5
## 504                                       true                       3
## 505                                       true                       3
## 506                                                      Not Available
## 507                                                      Not Available
## 508                                       true           Not Available
## 509                                                      Not Available
## 510                                       true                       3
## 511                                                      Not Available
## 512                                       true                       4
## 513                                       true                       3
## 514                                       true                       5
## 515                                       true                       3
## 516                                                                  4
## 517                                                      Not Available
## 518                                       true                       2
## 519                                       true                       3
## 520                                       true                       4
## 521                                       true                       4
## 522                                       true                       4
## 523                                       true                       2
## 524                                       true                       2
## 525                                       true                       2
## 526                                       true                       5
## 527                                       true                       4
## 528                                                      Not Available
## 529                                       true                       5
## 530                                       true                       4
## 531                                       true           Not Available
## 532                                       true           Not Available
## 533                                       true                       5
## 534                                       true                       4
## 535                                       true           Not Available
## 536                                       true                       3
## 537                                       true                       3
## 538                                       true           Not Available
## 539                                       true                       4
## 540                                       true                       4
## 541                                       true                       1
## 542                                       true           Not Available
## 543                                                      Not Available
## 544                                                                  3
## 545                                       true                       2
## 546                                       true                       2
## 547                                       true                       3
## 548                                                      Not Available
## 549                                       true                       4
## 550                                       true                       2
## 551                                       true                       3
## 552                                       true                       1
## 553                                                      Not Available
## 554                                       true           Not Available
## 555                                       true                       4
## 556                                       true                       3
## 557                                       true                       3
## 558                                                                  3
## 559                                       true                       3
## 560                                       true                       3
## 561                                                                  2
## 562                                       true                       2
## 563                                       true           Not Available
## 564                                       true                       4
## 565                                                                  4
## 566                                       true                       4
## 567                                                                  3
## 568                                       true                       4
## 569                                                      Not Available
## 570                                       true           Not Available
## 571                                       true                       4
## 572                                       true                       3
## 573                                       true                       4
## 574                                       true                       2
## 575                                                      Not Available
## 576                                       true                       1
## 577                                       true                       1
## 578                                       true                       2
## 579                                                      Not Available
## 580                                       true                       1
## 581                                                      Not Available
## 582                                       true                       3
## 583                                       true                       3
## 584                                       true                       1
## 585                                       true                       4
## 586                                       true                       3
## 587                                       true                       4
## 588                                       true                       3
## 589                                                      Not Available
## 590                                                      Not Available
## 591                                       true                       3
## 592                                                      Not Available
## 593                                                                  3
## 594                                                      Not Available
## 595                                       true                       3
## 596                                                                  4
## 597                                       true                       5
## 598                                                      Not Available
## 599                                                      Not Available
## 600                                       true                       5
## 601                                       true                       3
## 602                                       true                       1
## 603                                       true                       1
## 604                                       true                       3
## 605                                                      Not Available
## 606                                       true                       3
## 607                                                      Not Available
## 608                                       true                       4
## 609                                                      Not Available
## 610                                       true           Not Available
## 611                                                      Not Available
## 612                                       true                       3
## 613                                       true                       1
## 614                                       true                       4
## 615                                       true                       1
## 616                                       true                       2
## 617                                                      Not Available
## 618                                       true                       2
## 619                                       true                       4
## 620                                                                  2
## 621                                                                  3
## 622                                       true                       3
## 623                                                      Not Available
## 624                                       true           Not Available
## 625                                       true                       2
## 626                                                                  4
## 627                                                                  2
## 628                                       true           Not Available
## 629                                       true                       3
## 630                                       true           Not Available
## 631                                       true                       4
## 632                                                                  3
## 633                                       true                       2
## 634                                       true                       3
## 635                                       true                       4
## 636                                       true           Not Available
## 637                                                                  4
## 638                                                      Not Available
## 639                                                                  3
## 640                                       true                       1
## 641                                                                  4
## 642                                       true                       3
## 643                                                                  2
## 644                                       true                       2
## 645                                       true           Not Available
## 646                                                      Not Available
## 647                                       true           Not Available
## 648                                       true                       4
## 649                                                      Not Available
## 650                                       true                       2
## 651                                                      Not Available
## 652                                       true           Not Available
## 653                                       true                       4
## 654                                       true                       3
## 655                                                                  3
## 656                                                                  4
## 657                                       true                       3
## 658                                       true                       3
## 659                                       true                       3
## 660                                       true                       2
## 661                                                                  4
## 662                                                                  5
## 663                                       true                       4
## 664                                       true           Not Available
## 665                                                      Not Available
## 666                                       true                       3
## 667                                       true                       3
## 668                                                      Not Available
## 669                                       true           Not Available
## 670                                       true                       3
## 671                                       true                       4
## 672                                       true                       1
## 673                                                      Not Available
## 674                                       true                       4
## 675                                       true                       2
## 676                                       true                       1
## 677                                       true           Not Available
## 678                                       true                       1
## 679                                                      Not Available
## 680                                                                  4
## 681                                       true                       3
## 682                                       true                       3
## 683                                       true                       3
## 684                                                      Not Available
## 685                                       true                       4
## 686                                       true                       4
## 687                                       true                       4
## 688                                                      Not Available
## 689                                       true                       5
## 690                                       true                       4
## 691                                       true                       3
## 692                                                                  5
## 693                                                                  1
## 694                                       true                       2
## 695                                       true                       1
## 696                                       true                       4
## 697                                                                  3
## 698                                       true                       4
## 699                                                                  2
## 700                                                                  4
## 701                                       true                       4
## 702                                                      Not Available
## 703                                       true           Not Available
## 704                                       true                       4
## 705                                       true                       4
## 706                                                      Not Available
## 707                                       true                       2
## 708                                       true                       2
## 709                                                      Not Available
## 710                                                      Not Available
## 711                                       true           Not Available
## 712                                                                  2
## 713                                                                  3
## 714                                                      Not Available
## 715                                       true                       2
## 716                                       true                       3
## 717                                                                  4
## 718                                       true                       1
## 719                                       true                       4
## 720                                       true                       4
## 721                                       true                       3
## 722                                       true                       3
## 723                                       true                       1
## 724                                       true                       3
## 725                                       true                       3
## 726                                                      Not Available
## 727                                       true                       1
## 728                                       true                       3
## 729                                       true                       5
## 730                                                      Not Available
## 731                                       true                       3
## 732                                       true                       3
## 733                                       true                       3
## 734                                                      Not Available
## 735                                                                  2
## 736                                       true                       3
## 737                                       true                       2
## 738                                       true                       4
## 739                                                                  3
## 740                                                      Not Available
## 741                                                      Not Available
## 742                                                                  3
## 743                                       true                       3
## 744                                       true                       4
## 745                                                      Not Available
## 746                                       true                       2
## 747                                                                  3
## 748                                       true                       4
## 749                                                      Not Available
## 750                                                                  2
## 751                                                      Not Available
## 752                                                                  1
## 753                                       true                       2
## 754                                       true                       4
## 755                                       true                       3
## 756                                       true                       4
## 757                                       true                       2
## 758                                       true                       4
## 759                                                      Not Available
## 760                                       true                       3
## 761                                                      Not Available
## 762                                       true                       4
## 763                                                      Not Available
## 764                                       true                       4
## 765                                       true                       3
## 766                                       true                       3
## 767                                       true                       3
## 768                                                      Not Available
## 769                                                                  2
## 770                                       true                       3
## 771                                                      Not Available
## 772                                       true                       4
## 773                                       true                       1
## 774                                       true                       4
## 775                                       true                       5
## 776                                                                  2
## 777                                       true                       4
## 778                                       true                       3
## 779                                       true                       4
## 780                                       true                       3
## 781                                       true                       3
## 782                                       true                       3
## 783                                                      Not Available
## 784                                       true                       2
## 785                                       true                       4
## 786                                       true                       2
## 787                                       true                       2
## 788                                       true                       2
## 789                                       true                       3
## 790                                       true                       4
## 791                                       true           Not Available
## 792                                                      Not Available
## 793                                                      Not Available
## 794                                       true                       2
## 795                                       true                       4
## 796                                       true                       4
## 797                                       true                       5
## 798                                                      Not Available
## 799                                                                  4
## 800                                       true                       2
## 801                                                                  2
## 802                                       true                       4
## 803                                                      Not Available
## 804                                       true                       5
## 805                                       true                       1
## 806                                                                  2
## 807                                                      Not Available
## 808                                       true                       3
## 809                                                                  4
## 810                                       true           Not Available
## 811                                       true                       4
## 812                                       true                       1
## 813                                                      Not Available
## 814                                       true                       3
## 815                                       true                       3
## 816                                       true           Not Available
## 817                                                      Not Available
## 818                                       true                       3
## 819                                       true                       5
## 820                                       true                       4
## 821                                       true                       3
## 822                                                                  3
## 823                                                                  3
## 824                                       true                       3
## 825                                       true           Not Available
## 826                                       true                       1
## 827                                       true                       5
## 828                                       true                       2
## 829                                       true                       2
## 830                                       true                       3
## 831                                       true                       3
## 832                                       true                       3
## 833                                       true                       2
## 834                                       true                       4
## 835                                       true           Not Available
## 836                                       true                       1
## 837                                                      Not Available
## 838                                       true                       1
## 839                                       true                       4
## 840                                                                  4
## 841                                                                  3
## 842                                                      Not Available
## 843                                                      Not Available
## 844                                       true                       2
## 845                                       true                       3
## 846                                       true                       4
## 847                                       true                       4
## 848                                       true                       3
## 849                                                      Not Available
## 850                                                      Not Available
## 851                                       true                       3
## 852                                       true                       5
## 853                                       true           Not Available
## 854                                       true                       2
## 855                                       true                       1
## 856                                       true                       3
## 857                                       true           Not Available
## 858                                       true                       3
## 859                                                      Not Available
## 860                                                                  1
## 861                                       true                       4
## 862                                       true                       4
## 863                                       true                       4
## 864                                                      Not Available
## 865                                                      Not Available
## 866                                       true                       3
## 867                                       true                       2
## 868                                       true                       2
## 869                                       true                       3
## 870                                       true                       2
## 871                                       true                       5
## 872                                                                  4
## 873                                       true                       3
## 874                                       true                       4
## 875                                                                  3
## 876                                       true                       3
## 877                                                      Not Available
## 878                                       true           Not Available
## 879                                       true                       4
## 880                                       true                       5
## 881                                       true                       3
## 882                                                      Not Available
## 883                                       true                       4
## 884                                       true                       3
## 885                                       true                       3
## 886                                       true                       3
## 887                                       true                       2
## 888                                                                  2
## 889                                       true                       3
## 890                                                      Not Available
## 891                                       true                       4
## 892                                       true                       1
## 893                                       true                       3
## 894                                       true                       5
## 895                                       true                       1
## 896                                       true                       2
## 897                                       true                       2
## 898                                                      Not Available
## 899                                       true                       3
## 900                                                      Not Available
## 901                                                                  2
## 902                                       true                       3
## 903                                                      Not Available
## 904                                       true                       4
## 905                                       true                       1
## 906                                       true                       5
## 907                                       true                       2
## 908                                       true                       4
## 909                                                      Not Available
## 910                                                      Not Available
## 911                                       true                       4
## 912                                       true           Not Available
## 913                                       true                       3
## 914                                                      Not Available
## 915                                       true           Not Available
## 916                                                      Not Available
## 917                                                      Not Available
## 918                                       true                       4
## 919                                       true                       2
## 920                                                      Not Available
## 921                                                      Not Available
## 922                                       true                       3
## 923                                       true                       3
## 924                                       true                       3
## 925                                       true                       4
## 926                                       true                       1
## 927                                       true                       2
## 928                                       true                       3
## 929                                       true           Not Available
## 930                                       true                       3
## 931                                       true                       4
## 932                                                      Not Available
## 933                                                      Not Available
## 934                                       true                       2
## 935                                       true                       4
## 936                                                      Not Available
## 937                                       true                       4
## 938                                                      Not Available
## 939                                       true                       4
## 940                                       true                       4
## 941                                       true                       3
## 942                                       true                       4
## 943                                                      Not Available
## 944                                       true                       5
## 945                                       true                       4
## 946                                       true                       2
## 947                                       true                       3
## 948                                       true           Not Available
## 949                                                      Not Available
## 950                                       true                       5
## 951                                       true                       1
## 952                                       true                       4
## 953                                       true           Not Available
## 954                                       true                       5
## 955                                       true                       2
## 956                                       true                       4
## 957                                       true                       3
## 958                                       true           Not Available
## 959                                       true                       3
## 960                                       true                       1
## 961                                                                  3
## 962                                       true                       4
## 963                                       true           Not Available
## 964                                                      Not Available
## 965                                       true                       1
## 966                                       true                       1
## 967                                       true                       2
## 968                                       true                       5
## 969                                       true                       3
## 970                                       true                       1
## 971                                       true                       3
## 972                                       true                       3
## 973                                                      Not Available
## 974                                       true                       4
## 975                                       true                       4
## 976                                       true           Not Available
## 977                                       true                       3
## 978                                       true                       3
## 979                                                      Not Available
## 980                                                      Not Available
## 981                                       true                       5
## 982                                                      Not Available
## 983                                       true                       4
## 984                                       true                       2
## 985                                       true                       5
## 986                                                      Not Available
## 987                                       true                       3
## 988                                       true                       4
## 989                                       true                       3
## 990                                       true                       4
## 991                                                                  3
## 992                                       true                       4
## 993                                       true           Not Available
## 994                                                                  4
## 995                                       true                       4
## 996                                       true                       2
## 997                                                      Not Available
## 998                                       true                       1
## 999                                       true                       4
## 1000                                                     Not Available
## 1001                                                     Not Available
## 1002                                      true           Not Available
## 1003                                      true                       2
## 1004                                                                 4
## 1005                                      true           Not Available
## 1006                                      true                       2
## 1007                                      true                       4
## 1008                                      true                       3
## 1009                                                     Not Available
## 1010                                      true                       2
## 1011                                                     Not Available
## 1012                                                     Not Available
## 1013                                      true                       5
## 1014                                      true                       2
## 1015                                                     Not Available
## 1016                                      true                       3
## 1017                                      true                       1
## 1018                                                     Not Available
## 1019                                      true           Not Available
## 1020                                      true           Not Available
## 1021                                      true           Not Available
## 1022                                      true                       4
## 1023                                                                 3
## 1024                                      true                       2
## 1025                                                     Not Available
## 1026                                      true                       3
## 1027                                                     Not Available
## 1028                                                                 5
## 1029                                                                 3
## 1030                                      true                       3
## 1031                                                     Not Available
## 1032                                      true                       2
## 1033                                      true                       3
## 1034                                      true                       1
## 1035                                      true           Not Available
## 1036                                                     Not Available
## 1037                                      true                       3
## 1038                                      true           Not Available
## 1039                                      true           Not Available
## 1040                                      true                       5
## 1041                                                     Not Available
## 1042                                      true                       3
## 1043                                      true                       3
## 1044                                      true                       2
## 1045                                      true                       3
## 1046                                                                 4
## 1047                                      true                       5
## 1048                                                     Not Available
## 1049                                      true                       3
## 1050                                                     Not Available
## 1051                                                     Not Available
## 1052                                      true           Not Available
## 1053                                                                 1
## 1054                                                                 3
## 1055                                      true                       1
## 1056                                      true                       3
## 1057                                      true                       1
## 1058                                      true                       1
## 1059                                      true                       4
## 1060                                      true                       3
## 1061                                      true           Not Available
## 1062                                      true                       4
## 1063                                      true                       4
## 1064                                      true                       4
## 1065                                                                 1
## 1066                                      true                       4
## 1067                                      true                       2
## 1068                                      true           Not Available
## 1069                                                                 1
## 1070                                      true                       4
## 1071                                      true                       3
## 1072                                                     Not Available
## 1073                                      true                       4
## 1074                                                     Not Available
## 1075                                      true                       2
## 1076                                                     Not Available
## 1077                                      true                       3
## 1078                                      true                       4
## 1079                                      true                       1
## 1080                                      true           Not Available
## 1081                                      true                       2
## 1082                                      true                       4
## 1083                                      true                       3
## 1084                                      true                       4
## 1085                                      true                       3
## 1086                                      true                       4
## 1087                                                     Not Available
## 1088                                      true                       4
## 1089                                      true                       2
## 1090                                                     Not Available
## 1091                                      true                       1
## 1092                                      true                       3
## 1093                                                                 3
## 1094                                      true                       4
## 1095                                                     Not Available
## 1096                                      true                       3
## 1097                                      true                       4
## 1098                                      true                       3
## 1099                                                                 1
## 1100                                      true                       4
## 1101                                      true                       2
## 1102                                      true                       2
## 1103                                                     Not Available
## 1104                                      true                       3
## 1105                                      true                       3
## 1106                                      true                       3
## 1107                                      true           Not Available
## 1108                                      true                       4
## 1109                                                     Not Available
## 1110                                      true                       1
## 1111                                      true           Not Available
## 1112                                                     Not Available
## 1113                                      true                       4
## 1114                                      true                       5
## 1115                                      true                       4
## 1116                                      true                       4
## 1117                                                     Not Available
## 1118                                                     Not Available
## 1119                                      true                       3
## 1120                                                     Not Available
## 1121                                      true                       2
## 1122                                      true                       4
## 1123                                      true                       4
## 1124                                                     Not Available
## 1125                                      true                       1
## 1126                                      true                       3
## 1127                                      true                       4
## 1128                                      true                       4
## 1129                                                                 3
## 1130                                      true           Not Available
## 1131                                      true                       4
## 1132                                      true                       1
## 1133                                                     Not Available
## 1134                                      true                       4
## 1135                                      true                       4
## 1136                                      true                       1
## 1137                                                     Not Available
## 1138                                      true                       2
## 1139                                                     Not Available
## 1140                                      true                       2
## 1141                                      true           Not Available
## 1142                                      true                       2
## 1143                                      true                       3
## 1144                                      true                       3
## 1145                                      true           Not Available
## 1146                                                     Not Available
## 1147                                      true           Not Available
## 1148                                      true           Not Available
## 1149                                      true           Not Available
## 1150                                                     Not Available
## 1151                                      true                       2
## 1152                                      true                       3
## 1153                                      true           Not Available
## 1154                                      true                       3
## 1155                                      true                       2
## 1156                                      true           Not Available
## 1157                                      true                       2
## 1158                                                                 2
## 1159                                      true                       2
## 1160                                      true                       5
## 1161                                                     Not Available
## 1162                                                     Not Available
## 1163                                                                 3
## 1164                                      true                       2
## 1165                                      true           Not Available
## 1166                                      true                       3
## 1167                                      true                       3
## 1168                                                     Not Available
## 1169                                                                 4
## 1170                                      true                       1
## 1171                                      true                       3
## 1172                                                                 3
## 1173                                      true           Not Available
## 1174                                      true                       2
## 1175                                      true           Not Available
## 1176                                      true                       4
## 1177                                      true                       2
## 1178                                                     Not Available
## 1179                                      true                       3
## 1180                                      true           Not Available
## 1181                                      true                       4
## 1182                                      true                       3
## 1183                                      true                       3
## 1184                                                     Not Available
## 1185                                                     Not Available
## 1186                                      true                       5
## 1187                                      true                       4
## 1188                                                     Not Available
## 1189                                      true                       3
## 1190                                      true                       2
## 1191                                                                 4
## 1192                                      true                       3
## 1193                                      true                       4
## 1194                                      true                       4
## 1195                                      true           Not Available
## 1196                                      true                       2
## 1197                                      true                       4
## 1198                                      true                       3
## 1199                                      true           Not Available
## 1200                                                     Not Available
## 1201                                                     Not Available
## 1202                                                     Not Available
## 1203                                      true                       4
## 1204                                                     Not Available
## 1205                                      true                       4
## 1206                                                     Not Available
## 1207                                      true           Not Available
## 1208                                                     Not Available
## 1209                                      true                       4
## 1210                                      true                       2
## 1211                                      true                       2
## 1212                                      true           Not Available
## 1213                                      true           Not Available
## 1214                                      true                       4
## 1215                                      true                       3
## 1216                                      true                       2
## 1217                                      true                       4
## 1218                                      true                       2
## 1219                                      true           Not Available
## 1220                                      true                       1
## 1221                                      true           Not Available
## 1222                                      true                       3
## 1223                                                                 2
## 1224                                      true                       3
## 1225                                      true                       3
## 1226                                      true                       3
## 1227                                      true                       4
## 1228                                      true                       4
## 1229                                      true                       5
## 1230                                      true           Not Available
## 1231                                                     Not Available
## 1232                                      true           Not Available
## 1233                                      true           Not Available
## 1234                                      true           Not Available
## 1235                                                     Not Available
## 1236                                      true                       2
## 1237                                      true                       2
## 1238                                      true                       3
## 1239                                      true                       3
## 1240                                      true                       2
## 1241                                                     Not Available
## 1242                                                     Not Available
## 1243                                      true                       4
## 1244                                      true                       3
## 1245                                      true                       3
## 1246                                      true                       2
## 1247                                                                 3
## 1248                                                     Not Available
## 1249                                      true                       3
## 1250                                      true                       3
## 1251                                                                 2
## 1252                                                     Not Available
## 1253                                                                 4
## 1254                                      true           Not Available
## 1255                                      true           Not Available
## 1256                                      true                       3
## 1257                                      true                       2
## 1258                                                                 4
## 1259                                      true                       2
## 1260                                                                 1
## 1261                                                     Not Available
## 1262                                                     Not Available
## 1263                                      true                       2
## 1264                                                     Not Available
## 1265                                      true                       4
## 1266                                      true                       2
## 1267                                                     Not Available
## 1268                                      true                       2
## 1269                                                     Not Available
## 1270                                      true                       2
## 1271                                      true                       1
## 1272                                      true                       4
## 1273                                      true                       1
## 1274                                      true                       3
## 1275                                      true                       3
## 1276                                                     Not Available
## 1277                                      true                       4
## 1278                                      true                       4
## 1279                                      true                       2
## 1280                                      true                       1
## 1281                                      true                       1
## 1282                                      true                       3
## 1283                                      true                       2
## 1284                                      true                       2
## 1285                                      true                       3
## 1286                                      true                       4
## 1287                                      true                       4
## 1288                                      true           Not Available
## 1289                                      true                       4
## 1290                                                                 2
## 1291                                      true                       2
## 1292                                      true                       2
## 1293                                      true                       3
## 1294                                                     Not Available
## 1295                                      true                       3
## 1296                                      true                       2
## 1297                                      true                       3
## 1298                                      true                       3
## 1299                                      true           Not Available
## 1300                                      true                       4
## 1301                                                     Not Available
## 1302                                      true                       3
## 1303                                      true           Not Available
## 1304                                      true                       2
## 1305                                      true                       4
## 1306                                                     Not Available
## 1307                                      true                       3
## 1308                                      true                       2
## 1309                                      true                       3
## 1310                                      true                       3
## 1311                                      true           Not Available
## 1312                                      true                       5
## 1313                                      true                       3
## 1314                                      true                       4
## 1315                                      true                       4
## 1316                                      true                       3
## 1317                                      true                       1
## 1318                                      true                       3
## 1319                                      true                       2
## 1320                                      true                       3
## 1321                                      true                       3
## 1322                                      true                       4
## 1323                                                                 3
## 1324                                                                 4
## 1325                                      true                       3
## 1326                                                                 2
## 1327                                                     Not Available
## 1328                                      true                       3
## 1329                                      true                       5
## 1330                                                     Not Available
## 1331                                                                 4
## 1332                                      true                       2
## 1333                                      true                       4
## 1334                                      true                       2
## 1335                                                                 2
## 1336                                                                 3
## 1337                                      true                       1
## 1338                                                     Not Available
## 1339                                                                 3
## 1340                                                     Not Available
## 1341                                      true           Not Available
## 1342                                      true                       4
## 1343                                                     Not Available
## 1344                                                     Not Available
## 1345                                      true                       2
## 1346                                      true                       3
## 1347                                                     Not Available
## 1348                                      true                       4
## 1349                                      true                       3
## 1350                                      true                       3
## 1351                                      true                       4
## 1352                                      true                       4
## 1353                                      true           Not Available
## 1354                                                     Not Available
## 1355                                      true                       2
## 1356                                                     Not Available
## 1357                                                     Not Available
## 1358                                      true                       4
## 1359                                      true                       4
## 1360                                      true                       3
## 1361                                      true                       4
## 1362                                      true                       2
## 1363                                      true                       3
## 1364                                      true                       4
## 1365                                      true           Not Available
## 1366                                                                 3
## 1367                                      true                       2
## 1368                                      true                       4
## 1369                                      true                       2
## 1370                                      true                       3
## 1371                                                                 4
## 1372                                      true                       2
## 1373                                                                 3
## 1374                                      true                       4
## 1375                                      true                       3
## 1376                                      true                       3
## 1377                                                                 2
## 1378                                      true                       3
## 1379                                      true           Not Available
## 1380                                                                 5
## 1381                                                     Not Available
## 1382                                      true                       3
## 1383                                      true           Not Available
## 1384                                      true                       3
## 1385                                      true                       3
## 1386                                      true                       3
## 1387                                      true                       2
## 1388                                      true                       5
## 1389                                      true                       3
## 1390                                      true                       3
## 1391                                      true                       3
## 1392                                      true                       5
## 1393                                      true                       2
## 1394                                      true                       2
## 1395                                      true                       4
## 1396                                      true                       2
## 1397                                      true                       3
## 1398                                      true                       5
## 1399                                      true           Not Available
## 1400                                                     Not Available
## 1401                                      true                       3
## 1402                                      true                       3
## 1403                                                     Not Available
## 1404                                      true                       1
## 1405                                      true                       4
## 1406                                                                 3
## 1407                                      true                       3
## 1408                                      true                       1
## 1409                                      true                       2
## 1410                                      true                       4
## 1411                                      true                       2
## 1412                                      true                       3
## 1413                                      true                       3
## 1414                                      true                       3
## 1415                                                                 2
## 1416                                      true           Not Available
## 1417                                      true                       3
## 1418                                                                 5
## 1419                                      true                       4
## 1420                                      true                       2
## 1421                                      true           Not Available
## 1422                                      true                       4
## 1423                                                                 3
## 1424                                      true                       4
## 1425                                      true                       4
## 1426                                      true                       3
## 1427                                      true                       3
## 1428                                      true                       2
## 1429                                      true                       4
## 1430                                      true                       4
## 1431                                      true                       3
## 1432                                      true                       5
## 1433                                      true                       3
## 1434                                      true                       4
## 1435                                      true                       4
## 1436                                      true           Not Available
## 1437                                      true                       4
## 1438                                      true                       4
## 1439                                      true                       1
## 1440                                                     Not Available
## 1441                                                     Not Available
## 1442                                                     Not Available
## 1443                                      true                       2
## 1444                                      true                       3
## 1445                                      true                       4
## 1446                                      true                       4
## 1447                                      true                       1
## 1448                                      true                       4
## 1449                                      true                       4
## 1450                                      true                       4
## 1451                                                                 3
## 1452                                      true                       2
## 1453                                      true                       4
## 1454                                      true                       5
## 1455                                      true                       3
## 1456                                      true           Not Available
## 1457                                      true                       3
## 1458                                                     Not Available
## 1459                                      true           Not Available
## 1460                                      true           Not Available
## 1461                                                     Not Available
## 1462                                      true           Not Available
## 1463                                                     Not Available
## 1464                                      true                       3
## 1465                                      true                       3
## 1466                                                                 5
## 1467                                                     Not Available
## 1468                                      true                       1
## 1469                                                     Not Available
## 1470                                                                 2
## 1471                                      true                       3
## 1472                                                                 4
## 1473                                                     Not Available
## 1474                                      true           Not Available
## 1475                                                     Not Available
## 1476                                      true                       3
## 1477                                      true                       2
## 1478                                      true           Not Available
## 1479                                      true                       3
## 1480                                      true           Not Available
## 1481                                      true                       2
## 1482                                      true           Not Available
## 1483                                      true                       1
## 1484                                      true                       4
## 1485                                                     Not Available
## 1486                                      true                       2
## 1487                                      true                       3
## 1488                                                                 3
## 1489                                                     Not Available
## 1490                                      true                       3
## 1491                                      true                       3
## 1492                                      true                       3
## 1493                                      true           Not Available
## 1494                                      true           Not Available
## 1495                                      true                       4
## 1496                                      true                       3
## 1497                                      true                       2
## 1498                                                     Not Available
## 1499                                      true           Not Available
## 1500                                      true                       3
## 1501                                      true                       3
## 1502                                      true                       3
## 1503                                      true                       3
## 1504                                                                 2
## 1505                                      true                       2
## 1506                                      true                       3
## 1507                                      true                       4
## 1508                                      true                       4
## 1509                                      true                       3
## 1510                                                                 3
## 1511                                      true                       3
## 1512                                                                 3
## 1513                                      true                       4
## 1514                                                     Not Available
## 1515                                      true                       2
## 1516                                      true                       3
## 1517                                      true                       4
## 1518                                      true                       2
## 1519                                                                 4
## 1520                                      true                       4
## 1521                                      true           Not Available
## 1522                                      true                       2
## 1523                                      true                       4
## 1524                                      true                       5
## 1525                                      true                       3
## 1526                                      true                       3
## 1527                                                     Not Available
## 1528                                      true                       4
## 1529                                      true                       2
## 1530                                      true                       1
## 1531                                      true                       4
## 1532                                      true                       3
## 1533                                      true                       4
## 1534                                      true                       4
## 1535                                      true                       4
## 1536                                      true                       5
## 1537                                      true                       3
## 1538                                      true                       1
## 1539                                      true                       4
## 1540                                      true                       4
## 1541                                      true                       3
## 1542                                      true                       1
## 1543                                      true                       4
## 1544                                      true                       4
## 1545                                      true                       3
## 1546                                      true                       4
## 1547                                                     Not Available
## 1548                                      true           Not Available
## 1549                                      true                       1
## 1550                                                     Not Available
## 1551                                                     Not Available
## 1552                                                                 2
## 1553                                      true                       4
## 1554                                                     Not Available
## 1555                                                     Not Available
## 1556                                                     Not Available
## 1557                                      true                       2
## 1558                                                                 5
## 1559                                      true                       3
## 1560                                      true                       4
## 1561                                                     Not Available
## 1562                                                     Not Available
## 1563                                      true                       5
## 1564                                      true                       3
## 1565                                                                 4
## 1566                                                                 4
## 1567                                      true                       2
## 1568                                                     Not Available
## 1569                                                                 4
## 1570                                                                 2
## 1571                                                     Not Available
## 1572                                      true                       1
## 1573                                      true                       3
## 1574                                      true           Not Available
## 1575                                      true                       3
## 1576                                      true                       3
## 1577                                      true                       2
## 1578                                      true                       3
## 1579                                      true                       5
## 1580                                      true                       3
## 1581                                                     Not Available
## 1582                                                                 1
## 1583                                      true                       3
## 1584                                      true                       3
## 1585                                      true                       3
## 1586                                      true                       4
## 1587                                      true                       3
## 1588                                                                 3
## 1589                                                                 4
## 1590                                      true                       2
## 1591                                      true                       2
## 1592                                      true                       3
## 1593                                      true                       2
## 1594                                      true                       4
## 1595                                                     Not Available
## 1596                                      true                       3
## 1597                                      true                       4
## 1598                                                     Not Available
## 1599                                      true                       1
## 1600                                      true                       1
## 1601                                      true                       3
## 1602                                                     Not Available
## 1603                                      true                       1
## 1604                                                                 2
## 1605                                                     Not Available
## 1606                                      true                       4
## 1607                                                     Not Available
## 1608                                      true                       1
## 1609                                      true                       3
## 1610                                      true                       3
## 1611                                      true                       2
## 1612                                      true                       4
## 1613                                                     Not Available
## 1614                                                                 4
## 1615                                      true                       1
## 1616                                      true                       2
## 1617                                                     Not Available
## 1618                                                     Not Available
## 1619                                      true                       2
## 1620                                      true           Not Available
## 1621                                      true                       1
## 1622                                      true                       4
## 1623                                                                 3
## 1624                                                     Not Available
## 1625                                      true                       4
## 1626                                      true                       2
## 1627                                                                 3
## 1628                                      true                       4
## 1629                                      true                       3
## 1630                                      true                       3
## 1631                                      true                       5
## 1632                                                                 4
## 1633                                      true                       4
## 1634                                      true                       4
## 1635                                      true                       3
## 1636                                                     Not Available
## 1637                                      true                       5
## 1638                                      true                       1
## 1639                                                     Not Available
## 1640                                      true                       2
## 1641                                      true           Not Available
## 1642                                                     Not Available
## 1643                                                     Not Available
## 1644                                      true                       4
## 1645                                                                 4
## 1646                                      true                       3
## 1647                                                     Not Available
## 1648                                      true           Not Available
## 1649                                      true                       3
## 1650                                      true                       5
## 1651                                      true           Not Available
## 1652                                      true                       4
## 1653                                      true                       5
## 1654                                                     Not Available
## 1655                                      true                       4
## 1656                                      true                       4
## 1657                                      true           Not Available
## 1658                                      true                       3
## 1659                                      true                       3
## 1660                                      true                       2
## 1661                                      true           Not Available
## 1662                                      true                       4
## 1663                                      true                       3
## 1664                                      true                       2
## 1665                                      true                       3
## 1666                                      true                       2
## 1667                                      true                       3
## 1668                                                                 3
## 1669                                                     Not Available
## 1670                                                     Not Available
## 1671                                      true                       4
## 1672                                                     Not Available
## 1673                                      true                       4
## 1674                                      true                       3
## 1675                                      true                       1
## 1676                                      true                       2
## 1677                                      true                       3
## 1678                                      true                       3
## 1679                                                     Not Available
## 1680                                      true                       3
## 1681                                      true                       4
## 1682                                      true                       4
## 1683                                                     Not Available
## 1684                                      true                       3
## 1685                                                     Not Available
## 1686                                      true                       4
## 1687                                      true           Not Available
## 1688                                                                 3
## 1689                                      true                       1
## 1690                                      true           Not Available
## 1691                                      true                       4
## 1692                                      true                       3
## 1693                                                     Not Available
## 1694                                                     Not Available
## 1695                                                     Not Available
## 1696                                      true                       4
## 1697                                      true                       3
## 1698                                      true           Not Available
## 1699                                      true                       3
## 1700                                      true                       4
## 1701                                      true                       2
## 1702                                      true           Not Available
## 1703                                      true                       4
## 1704                                                     Not Available
## 1705                                                     Not Available
## 1706                                      true                       4
## 1707                                      true                       5
## 1708                                      true           Not Available
## 1709                                      true                       4
## 1710                                      true                       3
## 1711                                      true                       3
## 1712                                      true                       4
## 1713                                      true           Not Available
## 1714                                                     Not Available
## 1715                                      true                       1
## 1716                                      true                       1
## 1717                                                                 4
## 1718                                                     Not Available
## 1719                                      true                       2
## 1720                                      true                       2
## 1721                                                     Not Available
## 1722                                      true                       3
## 1723                                      true                       5
## 1724                                      true                       3
## 1725                                      true           Not Available
## 1726                                                                 3
## 1727                                                     Not Available
## 1728                                                     Not Available
## 1729                                      true                       2
## 1730                                      true                       3
## 1731                                      true                       3
## 1732                                      true                       1
## 1733                                      true                       2
## 1734                                      true                       5
## 1735                                      true                       3
## 1736                                                     Not Available
## 1737                                                     Not Available
## 1738                                                                 1
## 1739                                                     Not Available
## 1740                                      true                       3
## 1741                                                     Not Available
## 1742                                      true                       3
## 1743                                      true                       4
## 1744                                      true                       5
## 1745                                      true                       5
## 1746                                      true           Not Available
## 1747                                      true                       3
## 1748                                      true                       2
## 1749                                                     Not Available
## 1750                                      true           Not Available
## 1751                                      true                       1
## 1752                                      true                       4
## 1753                                      true           Not Available
## 1754                                                     Not Available
## 1755                                      true                       3
## 1756                                      true                       3
## 1757                                      true                       3
## 1758                                      true                       2
## 1759                                      true                       3
## 1760                                                     Not Available
## 1761                                      true                       1
## 1762                                      true                       2
## 1763                                      true           Not Available
## 1764                                                     Not Available
## 1765                                      true                       2
## 1766                                                     Not Available
## 1767                                      true                       5
## 1768                                      true                       3
## 1769                                      true           Not Available
## 1770                                      true                       3
## 1771                                      true           Not Available
## 1772                                      true           Not Available
## 1773                                      true           Not Available
## 1774                                      true                       1
## 1775                                      true                       3
## 1776                                      true                       4
## 1777                                      true                       4
## 1778                                                     Not Available
## 1779                                                     Not Available
## 1780                                      true           Not Available
## 1781                                      true                       3
## 1782                                      true                       2
## 1783                                      true                       3
## 1784                                      true                       4
## 1785                                      true           Not Available
## 1786                                      true                       4
## 1787                                                     Not Available
## 1788                                      true                       5
## 1789                                                     Not Available
## 1790                                      true                       4
## 1791                                      true                       3
## 1792                                      true                       3
## 1793                                      true                       2
## 1794                                      true                       4
## 1795                                      true                       2
## 1796                                      true                       1
## 1797                                      true                       2
## 1798                                      true                       1
## 1799                                      true                       3
## 1800                                      true                       3
## 1801                                                     Not Available
## 1802                                      true                       4
## 1803                                      true                       3
## 1804                                      true                       4
## 1805                                                     Not Available
## 1806                                                     Not Available
## 1807                                                     Not Available
## 1808                                      true           Not Available
## 1809                                                     Not Available
## 1810                                                                 2
## 1811                                                                 2
## 1812                                      true                       3
## 1813                                                                 4
## 1814                                                     Not Available
## 1815                                      true                       4
## 1816                                                     Not Available
## 1817                                      true                       2
## 1818                                                     Not Available
## 1819                                                     Not Available
## 1820                                      true                       4
## 1821                                      true                       2
## 1822                                                                 4
## 1823                                                     Not Available
## 1824                                      true                       2
## 1825                                      true                       5
## 1826                                      true                       3
## 1827                                      true           Not Available
## 1828                                      true                       2
## 1829                                      true           Not Available
## 1830                                      true                       2
## 1831                                      true                       4
## 1832                                      true                       2
## 1833                                      true                       3
## 1834                                                                 4
## 1835                                                     Not Available
## 1836                                      true                       3
## 1837                                      true                       2
## 1838                                      true                       4
## 1839                                      true                       3
## 1840                                                     Not Available
## 1841                                      true                       2
## 1842                                      true                       4
## 1843                                      true                       3
## 1844                                      true           Not Available
## 1845                                                                 2
## 1846                                      true                       3
## 1847                                                                 4
## 1848                                      true                       3
## 1849                                                     Not Available
## 1850                                                     Not Available
## 1851                                      true           Not Available
## 1852                                      true                       3
## 1853                                      true                       3
## 1854                                      true                       4
## 1855                                                                 4
## 1856                                      true           Not Available
## 1857                                      true                       4
## 1858                                                                 3
## 1859                                                     Not Available
## 1860                                      true                       5
## 1861                                                                 4
## 1862                                      true                       3
## 1863                                      true                       2
## 1864                                      true                       1
## 1865                                      true                       3
## 1866                                      true                       4
## 1867                                      true                       3
## 1868                                      true                       4
## 1869                                      true                       2
## 1870                                                                 5
## 1871                                      true                       1
## 1872                                      true                       3
## 1873                                      true                       2
## 1874                                      true           Not Available
## 1875                                      true                       2
## 1876                                      true           Not Available
## 1877                                      true           Not Available
## 1878                                      true                       4
## 1879                                                     Not Available
## 1880                                      true                       5
## 1881                                      true                       3
## 1882                                      true           Not Available
## 1883                                      true                       4
## 1884                                      true                       4
## 1885                                      true                       2
## 1886                                      true                       4
## 1887                                      true           Not Available
## 1888                                      true           Not Available
## 1889                                      true                       2
## 1890                                      true                       4
## 1891                                                                 2
## 1892                                      true           Not Available
## 1893                                                                 4
## 1894                                                                 4
## 1895                                                                 1
## 1896                                                     Not Available
## 1897                                                     Not Available
## 1898                                      true                       1
## 1899                                      true           Not Available
## 1900                                      true                       4
## 1901                                      true                       4
## 1902                                      true                       4
## 1903                                      true                       4
## 1904                                                                 3
## 1905                                                     Not Available
## 1906                                      true                       4
## 1907                                      true                       2
## 1908                                      true                       3
## 1909                                      true                       3
## 1910                                      true                       1
## 1911                                      true                       3
## 1912                                      true                       3
## 1913                                      true                       4
## 1914                                      true                       3
## 1915                                                                 3
## 1916                                      true                       4
## 1917                                      true                       4
## 1918                                      true                       1
## 1919                                      true           Not Available
## 1920                                                     Not Available
## 1921                                      true                       2
## 1922                                      true           Not Available
## 1923                                      true           Not Available
## 1924                                                     Not Available
## 1925                                      true                       2
## 1926                                      true                       2
## 1927                                      true                       3
## 1928                                      true                       3
## 1929                                      true                       5
## 1930                                      true                       4
## 1931                                      true                       3
## 1932                                                                 4
## 1933                                      true                       3
## 1934                                      true                       4
## 1935                                      true                       3
## 1936                                      true                       1
## 1937                                                     Not Available
## 1938                                      true                       4
## 1939                                      true                       2
## 1940                                                     Not Available
## 1941                                                     Not Available
## 1942                                      true                       3
## 1943                                      true                       3
## 1944                                      true                       2
## 1945                                                                 2
## 1946                                      true                       1
## 1947                                      true                       3
## 1948                                                     Not Available
## 1949                                      true           Not Available
## 1950                                      true                       1
## 1951                                      true           Not Available
## 1952                                                     Not Available
## 1953                                      true                       5
## 1954                                      true                       1
## 1955                                      true                       3
## 1956                                                     Not Available
## 1957                                                     Not Available
## 1958                                      true                       2
## 1959                                                     Not Available
## 1960                                      true                       3
## 1961                                      true                       3
## 1962                                      true                       2
## 1963                                                     Not Available
## 1964                                      true                       3
## 1965                                      true                       4
## 1966                                                     Not Available
## 1967                                                     Not Available
## 1968                                      true                       3
## 1969                                                     Not Available
## 1970                                      true           Not Available
## 1971                                                     Not Available
## 1972                                      true                       3
## 1973                                      true                       4
## 1974                                      true                       5
## 1975                                      true                       2
## 1976                                                     Not Available
## 1977                                      true           Not Available
## 1978                                      true                       4
## 1979                                      true                       5
## 1980                                      true                       1
## 1981                                      true                       3
## 1982                                      true           Not Available
## 1983                                      true                       3
## 1984                                      true                       3
## 1985                                      true                       2
## 1986                                      true                       2
## 1987                                      true           Not Available
## 1988                                      true                       2
## 1989                                      true           Not Available
## 1990                                                                 3
## 1991                                      true                       4
## 1992                                      true                       2
## 1993                                      true                       1
## 1994                                      true                       4
## 1995                                      true                       2
## 1996                                                                 3
## 1997                                      true                       3
## 1998                                      true                       4
## 1999                                      true                       3
## 2000                                      true                       4
## 2001                                                                 4
## 2002                                      true                       3
## 2003                                                                 3
## 2004                                      true                       3
## 2005                                      true           Not Available
## 2006                                                     Not Available
## 2007                                      true                       3
## 2008                                                                 3
## 2009                                      true                       5
## 2010                                      true                       3
## 2011                                                     Not Available
## 2012                                      true                       4
## 2013                                      true                       4
## 2014                                      true                       4
## 2015                                      true                       2
## 2016                                      true                       2
## 2017                                                     Not Available
## 2018                                      true                       2
## 2019                                                     Not Available
## 2020                                      true                       1
## 2021                                      true                       2
## 2022                                      true                       3
## 2023                                      true                       3
## 2024                                      true                       5
## 2025                                      true                       4
## 2026                                      true                       1
## 2027                                      true           Not Available
## 2028                                      true                       5
## 2029                                      true                       3
## 2030                                                                 2
## 2031                                                     Not Available
## 2032                                      true                       1
## 2033                                      true                       4
## 2034                                      true                       2
## 2035                                                                 1
## 2036                                                     Not Available
## 2037                                      true                       2
## 2038                                                                 2
## 2039                                      true                       5
## 2040                                      true                       4
## 2041                                      true                       2
## 2042                                      true                       3
## 2043                                                     Not Available
## 2044                                      true                       3
## 2045                                      true                       3
## 2046                                                                 4
## 2047                                      true                       4
## 2048                                      true                       2
## 2049                                                     Not Available
## 2050                                                     Not Available
## 2051                                      true                       3
## 2052                                      true                       4
## 2053                                      true           Not Available
## 2054                                      true                       4
## 2055                                                                 2
## 2056                                      true                       5
## 2057                                      true           Not Available
## 2058                                      true                       2
## 2059                                      true                       5
## 2060                                      true                       3
## 2061                                                     Not Available
## 2062                                                     Not Available
## 2063                                      true                       4
## 2064                                      true                       1
## 2065                                      true                       2
## 2066                                      true                       2
## 2067                                      true           Not Available
## 2068                                      true                       3
## 2069                                      true                       2
## 2070                                      true                       2
## 2071                                      true           Not Available
## 2072                                      true                       4
## 2073                                      true                       1
## 2074                                      true                       2
## 2075                                                     Not Available
## 2076                                                     Not Available
## 2077                                      true                       1
## 2078                                      true                       4
## 2079                                      true                       2
## 2080                                                     Not Available
## 2081                                      true                       4
## 2082                                      true                       4
## 2083                                                     Not Available
## 2084                                                                 2
## 2085                                      true                       1
## 2086                                      true                       3
## 2087                                      true                       1
## 2088                                      true           Not Available
## 2089                                                                 3
## 2090                                                     Not Available
## 2091                                      true                       2
## 2092                                      true                       3
## 2093                                                                 5
## 2094                                                     Not Available
## 2095                                      true                       2
## 2096                                                                 3
## 2097                                      true                       5
## 2098                                      true           Not Available
## 2099                                      true                       2
## 2100                                      true                       2
## 2101                                      true                       2
## 2102                                      true                       4
## 2103                                                                 4
## 2104                                      true                       4
## 2105                                      true                       2
## 2106                                      true           Not Available
## 2107                                                     Not Available
## 2108                                      true                       3
## 2109                                                     Not Available
## 2110                                                     Not Available
## 2111                                                     Not Available
## 2112                                      true                       4
## 2113                                                                 4
## 2114                                      true           Not Available
## 2115                                      true                       5
## 2116                                                     Not Available
## 2117                                      true                       3
## 2118                                      true                       2
## 2119                                      true                       4
## 2120                                      true                       3
## 2121                                      true                       3
## 2122                                                                 3
## 2123                                      true                       3
## 2124                                      true                       2
## 2125                                      true                       4
## 2126                                                     Not Available
## 2127                                      true           Not Available
## 2128                                      true                       4
## 2129                                      true           Not Available
## 2130                                      true                       3
## 2131                                      true                       3
## 2132                                                     Not Available
## 2133                                                                 1
## 2134                                      true                       4
## 2135                                      true                       4
## 2136                                      true                       3
## 2137                                      true                       4
## 2138                                                     Not Available
## 2139                                                     Not Available
## 2140                                                     Not Available
## 2141                                                     Not Available
## 2142                                                     Not Available
## 2143                                      true                       4
## 2144                                      true           Not Available
## 2145                                                     Not Available
## 2146                                      true                       3
## 2147                                      true                       3
## 2148                                      true                       5
## 2149                                                                 4
## 2150                                      true                       3
## 2151                                      true                       2
## 2152                                                     Not Available
## 2153                                      true                       2
## 2154                                                                 2
## 2155                                      true           Not Available
## 2156                                      true                       4
## 2157                                                     Not Available
## 2158                                      true                       3
## 2159                                      true                       3
## 2160                                      true                       4
## 2161                                      true                       3
## 2162                                                     Not Available
## 2163                                                     Not Available
## 2164                                                                 1
## 2165                                      true           Not Available
## 2166                                                                 2
## 2167                                                     Not Available
## 2168                                      true                       2
## 2169                                                     Not Available
## 2170                                                                 2
## 2171                                      true                       2
## 2172                                      true                       2
## 2173                                      true                       4
## 2174                                      true                       2
## 2175                                      true                       3
## 2176                                                     Not Available
## 2177                                                                 5
## 2178                                      true                       5
## 2179                                      true                       3
## 2180                                      true                       2
## 2181                                      true                       3
## 2182                                      true           Not Available
## 2183                                      true                       2
## 2184                                                     Not Available
## 2185                                                     Not Available
## 2186                                                     Not Available
## 2187                                      true           Not Available
## 2188                                                     Not Available
## 2189                                      true                       2
## 2190                                      true                       4
## 2191                                      true                       3
## 2192                                                     Not Available
## 2193                                      true                       4
## 2194                                                     Not Available
## 2195                                      true                       2
## 2196                                                     Not Available
## 2197                                      true                       2
## 2198                                                     Not Available
## 2199                                      true                       3
## 2200                                                     Not Available
## 2201                                      true                       1
## 2202                                                     Not Available
## 2203                                      true           Not Available
## 2204                                      true                       2
## 2205                                      true                       4
## 2206                                                     Not Available
## 2207                                      true                       4
## 2208                                      true                       3
## 2209                                      true                       2
## 2210                                                     Not Available
## 2211                                      true                       4
## 2212                                      true                       3
## 2213                                                     Not Available
## 2214                                      true                       3
## 2215                                      true                       2
## 2216                                      true                       4
## 2217                                      true                       3
## 2218                                                                 2
## 2219                                      true                       3
## 2220                                                                 2
## 2221                                      true                       1
## 2222                                      true                       4
## 2223                                      true                       3
## 2224                                                                 3
## 2225                                                     Not Available
## 2226                                                                 3
## 2227                                                                 3
## 2228                                                                 3
## 2229                                      true                       4
## 2230                                      true                       4
## 2231                                                     Not Available
## 2232                                      true                       4
## 2233                                      true                       3
## 2234                                                     Not Available
## 2235                                      true           Not Available
## 2236                                                                 2
## 2237                                      true                       3
## 2238                                                     Not Available
## 2239                                      true                       4
## 2240                                      true           Not Available
## 2241                                                     Not Available
## 2242                                      true                       2
## 2243                                                                 4
## 2244                                      true                       2
## 2245                                      true                       4
## 2246                                      true           Not Available
## 2247                                      true                       1
## 2248                                                                 5
## 2249                                      true                       3
## 2250                                                     Not Available
## 2251                                      true                       4
## 2252                                      true                       4
## 2253                                      true                       3
## 2254                                      true                       2
## 2255                                                     Not Available
## 2256                                                     Not Available
## 2257                                      true                       4
## 2258                                      true                       4
## 2259                                                     Not Available
## 2260                                      true                       1
## 2261                                      true                       4
## 2262                                      true                       3
## 2263                                      true                       4
## 2264                                      true                       4
## 2265                                                                 3
## 2266                                                     Not Available
## 2267                                                     Not Available
## 2268                                      true                       3
## 2269                                      true           Not Available
## 2270                                                     Not Available
## 2271                                      true                       3
## 2272                                                                 3
## 2273                                      true                       1
## 2274                                                                 3
## 2275                                                     Not Available
## 2276                                      true                       3
## 2277                                      true                       4
## 2278                                      true                       3
## 2279                                                     Not Available
## 2280                                                                 2
## 2281                                      true           Not Available
## 2282                                      true                       2
## 2283                                      true                       2
## 2284                                      true           Not Available
## 2285                                      true                       5
## 2286                                      true                       4
## 2287                                                     Not Available
## 2288                                                     Not Available
## 2289                                      true                       1
## 2290                                      true                       4
## 2291                                      true                       2
## 2292                                      true                       4
## 2293                                      true                       3
## 2294                                                                 3
## 2295                                      true           Not Available
## 2296                                                     Not Available
## 2297                                      true                       2
## 2298                                                     Not Available
## 2299                                      true                       3
## 2300                                      true           Not Available
## 2301                                      true                       4
## 2302                                      true                       4
## 2303                                      true                       3
## 2304                                      true                       3
## 2305                                                     Not Available
## 2306                                                     Not Available
## 2307                                                     Not Available
## 2308                                      true                       5
## 2309                                      true                       2
## 2310                                      true                       2
## 2311                                                     Not Available
## 2312                                      true                       4
## 2313                                      true                       3
## 2314                                      true                       4
## 2315                                      true                       3
## 2316                                                     Not Available
## 2317                                      true                       5
## 2318                                                     Not Available
## 2319                                                     Not Available
## 2320                                                     Not Available
## 2321                                                     Not Available
## 2322                                      true                       4
## 2323                                                                 3
## 2324                                                     Not Available
## 2325                                      true                       2
## 2326                                      true                       3
## 2327                                      true                       3
## 2328                                      true                       4
## 2329                                      true           Not Available
## 2330                                      true           Not Available
## 2331                                      true           Not Available
## 2332                                                     Not Available
## 2333                                                     Not Available
## 2334                                      true                       4
## 2335                                      true           Not Available
## 2336                                      true           Not Available
## 2337                                                     Not Available
## 2338                                      true                       4
## 2339                                                     Not Available
## 2340                                      true           Not Available
## 2341                                                                 4
## 2342                                      true           Not Available
## 2343                                      true           Not Available
## 2344                                                                 3
## 2345                                                     Not Available
## 2346                                      true                       3
## 2347                                      true                       3
## 2348                                      true                       3
## 2349                                      true           Not Available
## 2350                                      true                       3
## 2351                                      true                       5
## 2352                                      true           Not Available
## 2353                                      true                       4
## 2354                                      true                       2
## 2355                                                     Not Available
## 2356                                      true                       3
## 2357                                                                 5
## 2358                                      true                       3
## 2359                                      true                       2
## 2360                                                     Not Available
## 2361                                      true                       2
## 2362                                      true                       3
## 2363                                                                 5
## 2364                                      true                       2
## 2365                                      true                       4
## 2366                                                     Not Available
## 2367                                      true           Not Available
## 2368                                      true                       5
## 2369                                                     Not Available
## 2370                                      true           Not Available
## 2371                                      true                       5
## 2372                                      true                       4
## 2373                                      true                       4
## 2374                                                     Not Available
## 2375                                      true                       1
## 2376                                      true                       3
## 2377                                                                 3
## 2378                                      true           Not Available
## 2379                                      true           Not Available
## 2380                                      true                       5
## 2381                                      true                       4
## 2382                                      true                       4
## 2383                                                     Not Available
## 2384                                                     Not Available
## 2385                                                                 4
## 2386                                      true                       3
## 2387                                      true                       4
## 2388                                      true                       4
## 2389                                                                 1
## 2390                                                     Not Available
## 2391                                      true                       4
## 2392                                      true                       4
## 2393                                      true                       4
## 2394                                      true                       3
## 2395                                                     Not Available
## 2396                                                     Not Available
## 2397                                                     Not Available
## 2398                                      true                       1
## 2399                                      true                       1
## 2400                                      true           Not Available
## 2401                                                                 2
## 2402                                                     Not Available
## 2403                                                     Not Available
## 2404                                      true                       4
## 2405                                      true           Not Available
## 2406                                      true                       3
## 2407                                      true                       3
## 2408                                      true                       2
## 2409                                      true                       3
## 2410                                                     Not Available
## 2411                                      true                       4
## 2412                                                     Not Available
## 2413                                      true                       3
## 2414                                      true           Not Available
## 2415                                      true                       4
## 2416                                      true                       4
## 2417                                      true                       3
## 2418                                      true           Not Available
## 2419                                                     Not Available
## 2420                                      true                       3
## 2421                                      true                       5
## 2422                                      true                       4
## 2423                                      true                       2
## 2424                                                     Not Available
## 2425                                      true                       3
## 2426                                                     Not Available
## 2427                                      true                       4
## 2428                                                     Not Available
## 2429                                      true           Not Available
## 2430                                                     Not Available
## 2431                                      true           Not Available
## 2432                                                     Not Available
## 2433                                                     Not Available
## 2434                                      true                       4
## 2435                                      true                       3
## 2436                                      true                       3
## 2437                                      true           Not Available
## 2438                                                     Not Available
## 2439                                      true                       3
## 2440                                                     Not Available
## 2441                                      true                       5
## 2442                                                     Not Available
## 2443                                      true                       3
## 2444                                                     Not Available
## 2445                                                                 4
## 2446                                      true                       2
## 2447                                                     Not Available
## 2448                                      true                       2
## 2449                                                     Not Available
## 2450                                                                 3
## 2451                                      true                       3
## 2452                                      true                       2
## 2453                                      true                       4
## 2454                                                                 3
## 2455                                      true                       4
## 2456                                      true           Not Available
## 2457                                      true                       5
## 2458                                      true           Not Available
## 2459                                      true                       2
## 2460                                      true                       3
## 2461                                      true                       1
## 2462                                      true                       2
## 2463                                      true                       3
## 2464                                      true                       4
## 2465                                      true           Not Available
## 2466                                      true                       3
## 2467                                      true                       2
## 2468                                                     Not Available
## 2469                                      true                       5
## 2470                                      true                       3
## 2471                                      true                       3
## 2472                                                     Not Available
## 2473                                                     Not Available
## 2474                                                     Not Available
## 2475                                      true                       3
## 2476                                      true                       2
## 2477                                      true                       4
## 2478                                      true                       2
## 2479                                      true           Not Available
## 2480                                      true                       3
## 2481                                      true                       4
## 2482                                      true                       4
## 2483                                                                 5
## 2484                                      true                       2
## 2485                                                     Not Available
## 2486                                      true                       3
## 2487                                                     Not Available
## 2488                                                                 2
## 2489                                                     Not Available
## 2490                                      true                       3
## 2491                                      true                       4
## 2492                                      true                       2
## 2493                                                     Not Available
## 2494                                                     Not Available
## 2495                                      true                       3
## 2496                                      true           Not Available
## 2497                                                     Not Available
## 2498                                                                 3
## 2499                                                     Not Available
## 2500                                      true                       4
## 2501                                      true                       5
## 2502                                      true                       4
## 2503                                                                 5
## 2504                                      true                       2
## 2505                                      true                       4
## 2506                                                     Not Available
## 2507                                      true                       1
## 2508                                      true                       4
## 2509                                      true                       2
## 2510                                      true                       5
## 2511                                                                 3
## 2512                                      true                       2
## 2513                                                     Not Available
## 2514                                      true                       3
## 2515                                      true                       3
## 2516                                      true                       4
## 2517                                      true                       2
## 2518                                      true           Not Available
## 2519                                                                 3
## 2520                                                     Not Available
## 2521                                      true                       4
## 2522                                      true                       4
## 2523                                      true                       4
## 2524                                                     Not Available
## 2525                                      true                       2
## 2526                                                                 4
## 2527                                      true                       3
## 2528                                      true                       5
## 2529                                      true           Not Available
## 2530                                      true                       5
## 2531                                      true                       4
## 2532                                      true           Not Available
## 2533                                      true                       2
## 2534                                      true                       4
## 2535                                      true                       3
## 2536                                      true                       3
## 2537                                      true                       4
## 2538                                                     Not Available
## 2539                                                     Not Available
## 2540                                                     Not Available
## 2541                                      true                       2
## 2542                                      true                       3
## 2543                                                     Not Available
## 2544                                      true                       3
## 2545                                                                 3
## 2546                                      true           Not Available
## 2547                                                     Not Available
## 2548                                      true                       2
## 2549                                      true                       5
## 2550                                                     Not Available
## 2551                                      true                       3
## 2552                                                     Not Available
## 2553                                      true                       4
## 2554                                      true           Not Available
## 2555                                      true                       4
## 2556                                                     Not Available
## 2557                                                     Not Available
## 2558                                                     Not Available
## 2559                                      true           Not Available
## 2560                                      true                       5
## 2561                                                     Not Available
## 2562                                      true                       5
## 2563                                      true                       3
## 2564                                      true                       4
## 2565                                      true                       4
## 2566                                                     Not Available
## 2567                                      true                       4
## 2568                                                                 4
## 2569                                      true           Not Available
## 2570                                                                 3
## 2571                                      true                       5
## 2572                                      true                       4
## 2573                                                     Not Available
## 2574                                      true                       2
## 2575                                      true                       2
## 2576                                      true                       4
## 2577                                      true                       2
## 2578                                      true                       4
## 2579                                      true                       4
## 2580                                      true                       4
## 2581                                      true                       3
## 2582                                                     Not Available
## 2583                                                     Not Available
## 2584                                                                 4
## 2585                                                     Not Available
## 2586                                      true                       2
## 2587                                                     Not Available
## 2588                                      true           Not Available
## 2589                                                                 4
## 2590                                      true                       3
## 2591                                      true                       2
## 2592                                      true                       4
## 2593                                      true                       4
## 2594                                      true                       2
## 2595                                      true           Not Available
## 2596                                                     Not Available
## 2597                                                                 4
## 2598                                      true                       3
## 2599                                      true                       3
## 2600                                      true           Not Available
## 2601                                      true                       1
## 2602                                      true                       2
## 2603                                                     Not Available
## 2604                                      true                       5
## 2605                                      true                       2
## 2606                                                     Not Available
## 2607                                                     Not Available
## 2608                                      true                       3
## 2609                                                     Not Available
## 2610                                      true                       2
## 2611                                                                 4
## 2612                                      true                       3
## 2613                                      true                       4
## 2614                                      true                       4
## 2615                                      true                       4
## 2616                                      true           Not Available
## 2617                                                     Not Available
## 2618                                      true                       3
## 2619                                      true                       4
## 2620                                      true                       4
## 2621                                      true                       4
## 2622                                      true                       5
## 2623                                      true                       4
## 2624                                      true           Not Available
## 2625                                                     Not Available
## 2626                                      true                       3
## 2627                                                     Not Available
## 2628                                      true                       1
## 2629                                      true                       4
## 2630                                      true                       3
## 2631                                                     Not Available
## 2632                                                     Not Available
## 2633                                                                 3
## 2634                                      true                       3
## 2635                                      true                       5
## 2636                                      true           Not Available
## 2637                                      true                       2
## 2638                                                                 3
## 2639                                      true                       4
## 2640                                      true                       2
## 2641                                      true                       4
## 2642                                                                 4
## 2643                                      true                       3
## 2644                                      true                       3
## 2645                                                                 3
## 2646                                      true                       4
## 2647                                      true                       1
## 2648                                      true           Not Available
## 2649                                      true                       2
## 2650                                      true                       5
## 2651                                      true                       3
## 2652                                      true                       2
## 2653                                                     Not Available
## 2654                                      true                       4
## 2655                                                     Not Available
## 2656                                      true                       5
## 2657                                                                 3
## 2658                                      true                       3
## 2659                                      true                       5
## 2660                                      true           Not Available
## 2661                                                     Not Available
## 2662                                      true           Not Available
## 2663                                      true                       5
## 2664                                      true                       4
## 2665                                      true                       4
## 2666                                      true                       4
## 2667                                      true           Not Available
## 2668                                      true           Not Available
## 2669                                      true                       4
## 2670                                      true                       4
## 2671                                      true                       2
## 2672                                      true                       4
## 2673                                                     Not Available
## 2674                                      true                       3
## 2675                                                     Not Available
## 2676                                      true                       3
## 2677                                      true                       3
## 2678                                                     Not Available
## 2679                                      true                       4
## 2680                                      true                       5
## 2681                                                     Not Available
## 2682                                      true                       3
## 2683                                                     Not Available
## 2684                                      true                       4
## 2685                                      true                       3
## 2686                                      true                       4
## 2687                                      true                       2
## 2688                                      true                       4
## 2689                                                     Not Available
## 2690                                                     Not Available
## 2691                                      true                       2
## 2692                                      true                       3
## 2693                                      true                       4
## 2694                                      true                       2
## 2695                                      true                       4
## 2696                                      true                       2
## 2697                                      true                       3
## 2698                                                     Not Available
## 2699                                      true           Not Available
## 2700                                      true                       2
## 2701                                      true                       2
## 2702                                      true                       2
## 2703                                                     Not Available
## 2704                                      true                       2
## 2705                                      true                       3
## 2706                                                     Not Available
## 2707                                      true                       3
## 2708                                                     Not Available
## 2709                                      true                       2
## 2710                                      true                       3
## 2711                                      true           Not Available
## 2712                                      true           Not Available
## 2713                                                                 5
## 2714                                      true                       3
## 2715                                      true                       5
## 2716                                                                 4
## 2717                                      true           Not Available
## 2718                                                                 5
## 2719                                      true                       3
## 2720                                      true                       4
## 2721                                      true                       4
## 2722                                      true                       2
## 2723                                      true                       2
## 2724                                      true                       2
## 2725                                                     Not Available
## 2726                                      true                       4
## 2727                                      true                       3
## 2728                                      true                       2
## 2729                                      true           Not Available
## 2730                                      true           Not Available
## 2731                                                     Not Available
## 2732                                                     Not Available
## 2733                                      true                       3
## 2734                                      true           Not Available
## 2735                                                                 2
## 2736                                      true                       3
## 2737                                      true                       1
## 2738                                      true                       3
## 2739                                      true                       4
## 2740                                                     Not Available
## 2741                                      true                       3
## 2742                                      true                       4
## 2743                                                     Not Available
## 2744                                      true                       4
## 2745                                      true                       2
## 2746                                      true                       1
## 2747                                                     Not Available
## 2748                                                     Not Available
## 2749                                      true                       5
## 2750                                      true                       2
## 2751                                      true                       2
## 2752                                                                 4
## 2753                                                     Not Available
## 2754                                      true                       3
## 2755                                      true                       2
## 2756                                      true                       2
## 2757                                      true                       4
## 2758                                      true                       3
## 2759                                      true           Not Available
## 2760                                      true                       3
## 2761                                      true                       2
## 2762                                      true                       3
## 2763                                                     Not Available
## 2764                                      true                       3
## 2765                                                                 3
## 2766                                      true                       5
## 2767                                                                 4
## 2768                                      true                       1
## 2769                                      true                       3
## 2770                                                                 4
## 2771                                                     Not Available
## 2772                                                                 3
## 2773                                      true                       2
## 2774                                      true                       2
## 2775                                                     Not Available
## 2776                                      true                       4
## 2777                                      true                       3
## 2778                                      true                       5
## 2779                                      true                       4
## 2780                                      true                       4
## 2781                                      true                       3
## 2782                                      true                       4
## 2783                                      true                       1
## 2784                                                                 3
## 2785                                      true                       3
## 2786                                                     Not Available
## 2787                                      true                       2
## 2788                                      true                       3
## 2789                                      true                       5
## 2790                                      true                       3
## 2791                                      true                       3
## 2792                                      true                       3
## 2793                                      true                       1
## 2794                                      true                       5
## 2795                                      true           Not Available
## 2796                                      true                       2
## 2797                                                                 1
## 2798                                      true                       2
## 2799                                      true                       4
## 2800                                      true                       4
## 2801                                      true                       4
## 2802                                                     Not Available
## 2803                                      true                       2
## 2804                                      true                       1
## 2805                                      true                       3
## 2806                                                     Not Available
## 2807                                      true                       3
## 2808                                      true                       4
## 2809                                      true                       2
## 2810                                      true                       3
## 2811                                      true                       5
## 2812                                      true                       4
## 2813                                      true                       2
## 2814                                      true                       4
## 2815                                      true           Not Available
## 2816                                      true                       3
## 2817                                                     Not Available
## 2818                                      true                       5
## 2819                                      true                       3
## 2820                                                     Not Available
## 2821                                                     Not Available
## 2822                                                                 3
## 2823                                      true                       3
## 2824                                      true                       4
## 2825                                                                 4
## 2826                                      true           Not Available
## 2827                                                     Not Available
## 2828                                                     Not Available
## 2829                                      true           Not Available
## 2830                                      true                       3
## 2831                                      true                       4
## 2832                                                     Not Available
## 2833                                      true                       4
## 2834                                      true                       3
## 2835                                                     Not Available
## 2836                                      true                       3
## 2837                                                     Not Available
## 2838                                      true                       2
## 2839                                      true                       1
## 2840                                      true                       3
## 2841                                      true                       3
## 2842                                                                 4
## 2843                                                     Not Available
## 2844                                      true                       3
## 2845                                                     Not Available
## 2846                                                     Not Available
## 2847                                                     Not Available
## 2848                                      true                       5
## 2849                                      true                       2
## 2850                                      true                       3
## 2851                                      true           Not Available
## 2852                                      true                       4
## 2853                                      true           Not Available
## 2854                                      true                       3
## 2855                                      true                       4
## 2856                                                                 4
## 2857                                      true                       4
## 2858                                      true                       3
## 2859                                      true                       3
## 2860                                      true                       3
## 2861                                      true                       3
## 2862                                      true           Not Available
## 2863                                      true                       1
## 2864                                      true                       4
## 2865                                      true                       2
## 2866                                      true                       5
## 2867                                      true           Not Available
## 2868                                      true                       2
## 2869                                      true                       4
## 2870                                      true           Not Available
## 2871                                      true                       2
## 2872                                      true                       3
## 2873                                      true                       4
## 2874                                      true           Not Available
## 2875                                      true                       2
## 2876                                      true                       3
## 2877                                      true                       4
## 2878                                      true                       3
## 2879                                      true           Not Available
## 2880                                                     Not Available
## 2881                                      true                       1
## 2882                                      true           Not Available
## 2883                                      true                       3
## 2884                                                     Not Available
## 2885                                                                 2
## 2886                                      true                       1
## 2887                                      true                       3
## 2888                                      true           Not Available
## 2889                                                     Not Available
## 2890                                                                 4
## 2891                                      true           Not Available
## 2892                                      true                       2
## 2893                                                                 4
## 2894                                                     Not Available
## 2895                                      true                       4
## 2896                                      true                       4
## 2897                                                                 1
## 2898                                      true                       1
## 2899                                                                 2
## 2900                                      true           Not Available
## 2901                                      true                       3
## 2902                                                     Not Available
## 2903                                                     Not Available
## 2904                                      true                       4
## 2905                                      true                       3
## 2906                                      true                       3
## 2907                                      true                       2
## 2908                                      true                       2
## 2909                                                                 3
## 2910                                                     Not Available
## 2911                                      true                       2
## 2912                                      true                       2
## 2913                                      true                       3
## 2914                                      true                       2
## 2915                                      true                       4
## 2916                                      true                       3
## 2917                                      true                       1
## 2918                                      true                       3
## 2919                                      true                       4
## 2920                                      true                       3
## 2921                                      true                       3
## 2922                                      true                       4
## 2923                                      true                       2
## 2924                                      true                       5
## 2925                                      true                       4
## 2926                                                     Not Available
## 2927                                      true           Not Available
## 2928                                                                 4
## 2929                                      true                       4
## 2930                                      true                       3
## 2931                                                     Not Available
## 2932                                      true                       5
## 2933                                                                 4
## 2934                                                     Not Available
## 2935                                      true                       4
## 2936                                      true                       3
## 2937                                      true                       3
## 2938                                      true           Not Available
## 2939                                      true                       3
## 2940                                      true                       2
## 2941                                      true                       5
## 2942                                                     Not Available
## 2943                                      true                       4
## 2944                                      true                       4
## 2945                                      true                       2
## 2946                                      true                       4
## 2947                                      true                       3
## 2948                                                                 2
## 2949                                      true           Not Available
## 2950                                                     Not Available
## 2951                                      true                       4
## 2952                                                     Not Available
## 2953                                      true                       1
## 2954                                      true                       4
## 2955                                      true                       2
## 2956                                                     Not Available
## 2957                                                     Not Available
## 2958                                      true                       3
## 2959                                                     Not Available
## 2960                                      true                       3
## 2961                                      true                       2
## 2962                                      true                       2
## 2963                                                     Not Available
## 2964                                      true                       4
## 2965                                      true                       1
## 2966                                                     Not Available
## 2967                                                                 4
## 2968                                      true                       2
## 2969                                      true                       1
## 2970                                      true                       4
## 2971                                      true                       2
## 2972                                                                 3
## 2973                                      true                       2
## 2974                                      true                       2
## 2975                                      true           Not Available
## 2976                                      true                       4
## 2977                                      true                       5
## 2978                                      true                       3
## 2979                                      true                       3
## 2980                                      true                       2
## 2981                                      true                       3
## 2982                                      true                       2
## 2983                                      true                       4
## 2984                                      true                       2
## 2985                                      true                       3
## 2986                                      true                       3
## 2987                                      true                       5
## 2988                                                     Not Available
## 2989                                      true                       2
## 2990                                                                 4
## 2991                                      true                       2
## 2992                                      true                       4
## 2993                                                                 5
## 2994                                                     Not Available
## 2995                                      true                       5
## 2996                                      true           Not Available
## 2997                                                     Not Available
## 2998                                                                 5
## 2999                                      true                       4
## 3000                                      true                       2
## 3001                                                     Not Available
## 3002                                      true                       4
## 3003                                      true                       4
## 3004                                      true                       3
## 3005                                      true                       3
## 3006                                      true                       3
## 3007                                                     Not Available
## 3008                                                                 4
## 3009                                      true                       3
## 3010                                      true                       3
## 3011                                      true           Not Available
## 3012                                      true                       1
## 3013                                      true           Not Available
## 3014                                      true                       3
## 3015                                                     Not Available
## 3016                                                                 4
## 3017                                      true           Not Available
## 3018                                      true                       4
## 3019                                      true                       3
## 3020                                      true                       3
## 3021                                      true                       2
## 3022                                                     Not Available
## 3023                                      true           Not Available
## 3024                                                                 2
## 3025                                      true                       3
## 3026                                      true                       2
## 3027                                                     Not Available
## 3028                                      true                       3
## 3029                                      true                       3
## 3030                                      true                       5
## 3031                                      true                       4
## 3032                                      true                       3
## 3033                                      true                       1
## 3034                                      true                       3
## 3035                                      true                       3
## 3036                                      true                       2
## 3037                                                     Not Available
## 3038                                      true                       3
## 3039                                      true                       4
## 3040                                      true                       3
## 3041                                      true                       4
## 3042                                      true                       1
## 3043                                                     Not Available
## 3044                                      true                       2
## 3045                                                     Not Available
## 3046                                                                 2
## 3047                                      true                       3
## 3048                                      true                       2
## 3049                                                     Not Available
## 3050                                      true                       4
## 3051                                      true                       2
## 3052                                                                 4
## 3053                                      true                       4
## 3054                                      true                       1
## 3055                                                                 3
## 3056                                      true                       3
## 3057                                                     Not Available
## 3058                                      true                       3
## 3059                                      true                       2
## 3060                                                     Not Available
## 3061                                                     Not Available
## 3062                                                                 4
## 3063                                      true                       4
## 3064                                      true                       4
## 3065                                      true                       2
## 3066                                                                 3
## 3067                                      true                       3
## 3068                                                     Not Available
## 3069                                      true                       4
## 3070                                                                 4
## 3071                                      true                       3
## 3072                                      true                       4
## 3073                                                                 3
## 3074                                      true                       4
## 3075                                      true                       5
## 3076                                      true                       4
## 3077                                      true           Not Available
## 3078                                      true                       3
## 3079                                      true                       4
## 3080                                      true                       3
## 3081                                      true                       5
## 3082                                                                 3
## 3083                                      true                       3
## 3084                                                     Not Available
## 3085                                      true                       3
## 3086                                      true                       2
## 3087                                      true                       4
## 3088                                                     Not Available
## 3089                                      true                       2
## 3090                                      true                       4
## 3091                                      true                       4
## 3092                                      true                       4
## 3093                                      true                       3
## 3094                                      true           Not Available
## 3095                                      true                       3
## 3096                                      true                       3
## 3097                                      true                       5
## 3098                                                                 2
## 3099                                      true                       3
## 3100                                      true                       4
## 3101                                      true                       4
## 3102                                      true                       2
## 3103                                                                 2
## 3104                                      true                       3
## 3105                                      true           Not Available
## 3106                                      true                       3
## 3107                                      true           Not Available
## 3108                                      true                       4
## 3109                                      true                       3
## 3110                                                     Not Available
## 3111                                      true           Not Available
## 3112                                                                 3
## 3113                                      true                       2
## 3114                                      true                       3
## 3115                                      true           Not Available
## 3116                                                     Not Available
## 3117                                                     Not Available
## 3118                                      true                       1
## 3119                                      true                       2
## 3120                                      true                       4
## 3121                                      true                       4
## 3122                                      true                       4
## 3123                                                     Not Available
## 3124                                      true                       2
## 3125                                                                 3
## 3126                                      true                       5
## 3127                                                                 3
## 3128                                      true                       1
## 3129                                                     Not Available
## 3130                                                     Not Available
## 3131                                                     Not Available
## 3132                                      true                       5
## 3133                                      true                       4
## 3134                                                     Not Available
## 3135                                                     Not Available
## 3136                                      true                       3
## 3137                                                     Not Available
## 3138                                                     Not Available
## 3139                                                     Not Available
## 3140                                      true                       3
## 3141                                      true                       4
## 3142                                                                 2
## 3143                                      true                       3
## 3144                                      true           Not Available
## 3145                                      true                       4
## 3146                                      true                       4
## 3147                                      true                       3
## 3148                                      true                       5
## 3149                                                                 4
## 3150                                      true                       4
## 3151                                      true                       4
## 3152                                                                 3
## 3153                                      true                       1
## 3154                                      true                       1
## 3155                                                     Not Available
## 3156                                      true                       1
## 3157                                      true                       4
## 3158                                      true                       2
## 3159                                      true                       3
## 3160                                                                 2
## 3161                                      true                       3
## 3162                                      true                       3
## 3163                                      true                       4
## 3164                                                     Not Available
## 3165                                                                 3
## 3166                                      true                       4
## 3167                                      true                       3
## 3168                                                                 2
## 3169                                      true                       3
## 3170                                      true                       4
## 3171                                      true                       1
## 3172                                                     Not Available
## 3173                                      true                       3
## 3174                                      true                       3
## 3175                                      true           Not Available
## 3176                                      true                       2
## 3177                                      true                       4
## 3178                                      true                       4
## 3179                                      true                       3
## 3180                                      true                       4
## 3181                                      true                       3
## 3182                                      true                       2
## 3183                                                     Not Available
## 3184                                      true                       2
## 3185                                      true                       3
## 3186                                      true                       5
## 3187                                      true                       1
## 3188                                      true                       4
## 3189                                      true           Not Available
## 3190                                      true                       5
## 3191                                      true           Not Available
## 3192                                      true                       4
## 3193                                                                 1
## 3194                                                                 2
## 3195                                                                 3
## 3196                                      true                       4
## 3197                                      true           Not Available
## 3198                                      true                       1
## 3199                                      true                       4
## 3200                                                                 4
## 3201                                                     Not Available
## 3202                                      true                       3
## 3203                                      true                       3
## 3204                                      true                       4
## 3205                                      true                       2
## 3206                                      true                       5
## 3207                                                     Not Available
## 3208                                                     Not Available
## 3209                                                                 2
## 3210                                      true                       2
## 3211                                      true                       4
## 3212                                      true                       5
## 3213                                                     Not Available
## 3214                                                     Not Available
## 3215                                      true                       1
## 3216                                                     Not Available
## 3217                                                                 3
## 3218                                      true                       3
## 3219                                      true                       2
## 3220                                      true                       2
## 3221                                                     Not Available
## 3222                                      true                       2
## 3223                                      true                       2
## 3224                                      true                       4
## 3225                                      true           Not Available
## 3226                                      true                       1
## 3227                                      true                       5
## 3228                                      true                       3
## 3229                                      true                       3
## 3230                                      true                       4
## 3231                                      true                       3
## 3232                                                     Not Available
## 3233                                      true           Not Available
## 3234                                                                 5
## 3235                                      true                       3
## 3236                                      true                       4
## 3237                                      true                       3
## 3238                                      true                       4
## 3239                                      true           Not Available
## 3240                                      true                       3
## 3241                                      true                       2
## 3242                                      true                       4
## 3243                                                                 2
## 3244                                      true                       3
## 3245                                                     Not Available
## 3246                                      true                       3
## 3247                                      true                       2
## 3248                                                     Not Available
## 3249                                      true                       3
## 3250                                                     Not Available
## 3251                                                     Not Available
## 3252                                      true                       4
## 3253                                      true                       4
## 3254                                      true                       3
## 3255                                      true                       4
## 3256                                      true                       4
## 3257                                                     Not Available
## 3258                                                                 2
## 3259                                                     Not Available
## 3260                                      true                       4
## 3261                                      true                       5
## 3262                                      true                       3
## 3263                                      true           Not Available
## 3264                                                     Not Available
## 3265                                                     Not Available
## 3266                                      true                       4
## 3267                                      true                       3
## 3268                                                     Not Available
## 3269                                      true                       1
## 3270                                                     Not Available
## 3271                                      true                       1
## 3272                                                     Not Available
## 3273                                      true                       4
## 3274                                      true           Not Available
## 3275                                      true           Not Available
## 3276                                      true           Not Available
## 3277                                      true                       4
## 3278                                                     Not Available
## 3279                                                     Not Available
## 3280                                      true                       5
## 3281                                      true                       2
## 3282                                                                 4
## 3283                                      true                       4
## 3284                                      true                       5
## 3285                                      true                       2
## 3286                                      true           Not Available
## 3287                                                     Not Available
## 3288                                      true                       4
## 3289                                      true                       4
## 3290                                                                 4
## 3291                                      true                       2
## 3292                                                     Not Available
## 3293                                      true                       3
## 3294                                      true                       4
## 3295                                      true                       3
## 3296                                                     Not Available
## 3297                                                     Not Available
## 3298                                      true                       3
## 3299                                      true                       1
## 3300                                      true                       1
## 3301                                                                 2
## 3302                                      true                       3
## 3303                                                     Not Available
## 3304                                      true                       4
## 3305                                      true                       4
## 3306                                      true                       3
## 3307                                      true                       2
## 3308                                      true                       3
## 3309                                                     Not Available
## 3310                                      true                       1
## 3311                                      true                       3
## 3312                                      true                       3
## 3313                                      true                       3
## 3314                                      true                       4
## 3315                                      true                       4
## 3316                                                     Not Available
## 3317                                      true           Not Available
## 3318                                                                 3
## 3319                                                     Not Available
## 3320                                      true                       4
## 3321                                      true                       4
## 3322                                      true                       4
## 3323                                      true           Not Available
## 3324                                      true                       1
## 3325                                                     Not Available
## 3326                                                                 4
## 3327                                      true                       2
## 3328                                      true                       4
## 3329                                      true                       4
## 3330                                      true                       2
## 3331                                      true                       4
## 3332                                      true                       4
## 3333                                      true                       2
## 3334                                      true                       4
## 3335                                      true                       2
## 3336                                                                 2
## 3337                                      true                       3
## 3338                                      true           Not Available
## 3339                                      true           Not Available
## 3340                                      true                       4
## 3341                                      true                       2
## 3342                                      true                       2
## 3343                                      true                       3
## 3344                                      true                       4
## 3345                                      true                       4
## 3346                                      true                       4
## 3347                                      true                       3
## 3348                                                     Not Available
## 3349                                      true                       4
## 3350                                                                 3
## 3351                                                     Not Available
## 3352                                      true                       2
## 3353                                      true           Not Available
## 3354                                      true           Not Available
## 3355                                                     Not Available
## 3356                                                                 4
## 3357                                      true                       2
## 3358                                      true                       4
## 3359                                      true                       4
## 3360                                                     Not Available
## 3361                                      true                       1
## 3362                                                                 3
## 3363                                                                 3
## 3364                                      true                       4
## 3365                                      true                       2
## 3366                                                     Not Available
## 3367                                      true                       3
## 3368                                      true                       4
## 3369                                      true                       3
## 3370                                                     Not Available
## 3371                                      true                       3
## 3372                                      true           Not Available
## 3373                                      true                       3
## 3374                                      true           Not Available
## 3375                                                                 3
## 3376                                                     Not Available
## 3377                                                     Not Available
## 3378                                                     Not Available
## 3379                                      true                       4
## 3380                                      true                       2
## 3381                                      true           Not Available
## 3382                                                     Not Available
## 3383                                                     Not Available
## 3384                                      true           Not Available
## 3385                                      true                       3
## 3386                                      true                       4
## 3387                                                     Not Available
## 3388                                      true                       5
## 3389                                      true                       5
## 3390                                      true                       2
## 3391                                      true                       3
## 3392                                      true           Not Available
## 3393                                      true           Not Available
## 3394                                      true                       3
## 3395                                      true                       3
## 3396                                      true           Not Available
## 3397                                      true                       3
## 3398                                                     Not Available
## 3399                                      true                       4
## 3400                                      true                       3
## 3401                                      true           Not Available
## 3402                                      true           Not Available
## 3403                                                     Not Available
## 3404                                      true                       3
## 3405                                      true           Not Available
## 3406                                      true                       4
## 3407                                      true                       4
## 3408                                      true                       4
## 3409                                      true           Not Available
## 3410                                      true                       2
## 3411                                                     Not Available
## 3412                                                                 2
## 3413                                      true                       3
## 3414                                      true           Not Available
## 3415                                      true                       5
## 3416                                                     Not Available
## 3417                                      true                       4
## 3418                                      true           Not Available
## 3419                                      true                       1
## 3420                                      true                       4
## 3421                                      true                       5
## 3422                                      true                       2
## 3423                                                     Not Available
## 3424                                                                 2
## 3425                                      true                       3
## 3426                                      true           Not Available
## 3427                                      true                       5
## 3428                                      true           Not Available
## 3429                                      true                       1
## 3430                                      true                       2
## 3431                                      true                       2
## 3432                                      true                       5
## 3433                                      true                       4
## 3434                                      true                       4
## 3435                                                                 3
## 3436                                      true                       5
## 3437                                      true                       2
## 3438                                      true                       3
## 3439                                                                 3
## 3440                                      true                       3
## 3441                                      true                       4
## 3442                                      true                       4
## 3443                                                     Not Available
## 3444                                      true                       2
## 3445                                      true                       5
## 3446                                                     Not Available
## 3447                                                     Not Available
## 3448                                                     Not Available
##      Hospital_overall_rating_footnote Mortality_national_comparison
## 1                                  17  Same as the national average
## 2                                  19                 Not Available
## 3                                  19                 Not Available
## 4                                        Above the national average
## 5                                  19                 Not Available
## 6                                      Same as the national average
## 7                                  19                 Not Available
## 8                                  16                 Not Available
## 9                                  19                 Not Available
## 10                                 19                 Not Available
## 11                                 19                 Not Available
## 12                                       Above the national average
## 13                                 19                 Not Available
## 14                                 19                 Not Available
## 15                                     Same as the national average
## 16                                 19                 Not Available
## 17                                 16                 Not Available
## 18                                 16                 Not Available
## 19                                 19                 Not Available
## 20                                 19                 Not Available
## 21                                  5                 Not Available
## 22                                 16                 Not Available
## 23                                  5                 Not Available
## 24                                 19                 Not Available
## 25                                 16                 Not Available
## 26                                 16                 Not Available
## 27                                 19                 Not Available
## 28                                 16                 Not Available
## 29                                 19                 Not Available
## 30                                                    Not Available
## 31                                 16                 Not Available
## 32                                 19                 Not Available
## 33                                 19                 Not Available
## 34                                 19                 Not Available
## 35                                 16                 Not Available
## 36                                 19                 Not Available
## 37                                 19                 Not Available
## 38                                 16                 Not Available
## 39                                                    Not Available
## 40                                 19                 Not Available
## 41                                 19                 Not Available
## 42                                  5                 Not Available
## 43                                     Same as the national average
## 44                                 16                 Not Available
## 45                                 19                 Not Available
## 46                                 19                 Not Available
## 47                                 16                 Not Available
## 48                                 19                 Not Available
## 49                                 16                 Not Available
## 50                                 19                 Not Available
## 51                                 19                 Not Available
## 52                                 19                 Not Available
## 53                                 19                 Not Available
## 54                                 19                 Not Available
## 55                                 19                 Not Available
## 56                                                    Not Available
## 57                                                    Not Available
## 58                                 16                 Not Available
## 59                                 16                 Not Available
## 60                                       Below the national average
## 61                                 19                 Not Available
## 62                                 16                 Not Available
## 63                                 19                 Not Available
## 64                                     Same as the national average
## 65                                     Same as the national average
## 66                                 16  Same as the national average
## 67                                       Above the national average
## 68                                 16                 Not Available
## 69                                     Same as the national average
## 70                                     Same as the national average
## 71                                       Below the national average
## 72                                       Below the national average
## 73                                     Same as the national average
## 74                                 16                 Not Available
## 75                                 16                 Not Available
## 76                                     Same as the national average
## 77                                 16                 Not Available
## 78                                       Below the national average
## 79                                 17                 Not Available
## 80                                       Above the national average
## 81                                 19                 Not Available
## 82                                 16                 Not Available
## 83                                 19                 Not Available
## 84                                       Below the national average
## 85                                 19                 Not Available
## 86                                 16                 Not Available
## 87                                     Same as the national average
## 88                                 19                 Not Available
## 89                                                    Not Available
## 90                                     Same as the national average
## 91                                     Same as the national average
## 92                                     Same as the national average
## 93                                       Above the national average
## 94                                     Same as the national average
## 95                                     Same as the national average
## 96                                  5                 Not Available
## 97                                     Same as the national average
## 98                                                    Not Available
## 99                                 16                 Not Available
## 100                                      Below the national average
## 101                                16                 Not Available
## 102                                    Same as the national average
## 103                                    Same as the national average
## 104                                    Same as the national average
## 105                                    Same as the national average
## 106                                    Same as the national average
## 107                                      Above the national average
## 108                                    Same as the national average
## 109                                    Same as the national average
## 110                                16                 Not Available
## 111                                    Same as the national average
## 112                                    Same as the national average
## 113                                    Same as the national average
## 114                                      Below the national average
## 115                                      Below the national average
## 116                                19                 Not Available
## 117                                19                 Not Available
## 118                                17  Same as the national average
## 119                                 5                 Not Available
## 120                                16                 Not Available
## 121                                    Same as the national average
## 122                                19                 Not Available
## 123                                      Below the national average
## 124                                    Same as the national average
## 125                                16                 Not Available
## 126                                16                 Not Available
## 127                                16                 Not Available
## 128                                    Same as the national average
## 129                                19                 Not Available
## 130                                    Same as the national average
## 131                                      Below the national average
## 132                                                   Not Available
## 133                                      Below the national average
## 134                                                   Not Available
## 135                                    Same as the national average
## 136                                    Same as the national average
## 137                                16                 Not Available
## 138                                19                 Not Available
## 139                                      Below the national average
## 140                                    Same as the national average
## 141                                                   Not Available
## 142                                19                 Not Available
## 143                                19                 Not Available
## 144                                17                 Not Available
## 145                                    Same as the national average
## 146                                16                 Not Available
## 147                                    Same as the national average
## 148                                    Same as the national average
## 149                                    Same as the national average
## 150                                17                 Not Available
## 151                                    Same as the national average
## 152                                16                 Not Available
## 153                                      Below the national average
## 154                                                   Not Available
## 155                                    Same as the national average
## 156                                    Same as the national average
## 157                                16                 Not Available
## 158                                                   Not Available
## 159                                16                 Not Available
## 160                                    Same as the national average
## 161                                19                 Not Available
## 162                                    Same as the national average
## 163                                    Same as the national average
## 164                                      Below the national average
## 165                                      Below the national average
## 166                                19                 Not Available
## 167                                    Same as the national average
## 168                                      Below the national average
## 169                                 5                 Not Available
## 170                                    Same as the national average
## 171                                19                 Not Available
## 172                                    Same as the national average
## 173                                16                 Not Available
## 174                                    Same as the national average
## 175                                                   Not Available
## 176                                      Below the national average
## 177                                17                 Not Available
## 178                                                   Not Available
## 179                                                   Not Available
## 180                                    Same as the national average
## 181                                16                 Not Available
## 182                                    Same as the national average
## 183                                    Same as the national average
## 184                                19                 Not Available
## 185                                    Same as the national average
## 186                                    Same as the national average
## 187                                    Same as the national average
## 188                                    Same as the national average
## 189                                    Same as the national average
## 190                                    Same as the national average
## 191                                16                 Not Available
## 192                                    Same as the national average
## 193                                19                 Not Available
## 194                                      Below the national average
## 195                                19                 Not Available
## 196                                    Same as the national average
## 197                                 5                 Not Available
## 198                                    Same as the national average
## 199                                    Same as the national average
## 200                                16                 Not Available
## 201                                19                 Not Available
## 202                                    Same as the national average
## 203                                19                 Not Available
## 204                                    Same as the national average
## 205                                16                 Not Available
## 206                                16                 Not Available
## 207                                    Same as the national average
## 208                                      Above the national average
## 209                                    Same as the national average
## 210                                    Same as the national average
## 211                                19                 Not Available
## 212                                                   Not Available
## 213                                16                 Not Available
## 214                                    Same as the national average
## 215                                16                 Not Available
## 216                                17  Same as the national average
## 217                                    Same as the national average
## 218                                    Same as the national average
## 219                                16                 Not Available
## 220                                16                 Not Available
## 221                                      Below the national average
## 222                                    Same as the national average
## 223                                      Below the national average
## 224                                16  Same as the national average
## 225                                      Below the national average
## 226                                17  Same as the national average
## 227                                16                 Not Available
## 228                                    Same as the national average
## 229                                    Same as the national average
## 230                                16                 Not Available
## 231                                16                 Not Available
## 232                                    Same as the national average
## 233                                                   Not Available
## 234                                    Same as the national average
## 235                                    Same as the national average
## 236                                    Same as the national average
## 237                                      Below the national average
## 238                                    Same as the national average
## 239                                    Same as the national average
## 240                                                   Not Available
## 241                                    Same as the national average
## 242                                    Same as the national average
## 243                                    Same as the national average
## 244                                      Below the national average
## 245                                    Same as the national average
## 246                                    Same as the national average
## 247                                    Same as the national average
## 248                                16                 Not Available
## 249                                19                 Not Available
## 250                                16                 Not Available
## 251                                      Above the national average
## 252                                19                 Not Available
## 253                                    Same as the national average
## 254                                16                 Not Available
## 255                                    Same as the national average
## 256                                    Same as the national average
## 257                                      Below the national average
## 258                                    Same as the national average
## 259                                    Same as the national average
## 260                                23  Same as the national average
## 261                                19                 Not Available
## 262                                 5                 Not Available
## 263                                      Above the national average
## 264                                    Same as the national average
## 265                                    Same as the national average
## 266                                16                 Not Available
## 267                                    Same as the national average
## 268                                19                 Not Available
## 269                                17                 Not Available
## 270                                    Same as the national average
## 271                                    Same as the national average
## 272                                    Same as the national average
## 273                                16                 Not Available
## 274                                16                 Not Available
## 275                                16                 Not Available
## 276                                      Above the national average
## 277                                                   Not Available
## 278                                16                 Not Available
## 279                                      Above the national average
## 280                                    Same as the national average
## 281                                    Same as the national average
## 282                                    Same as the national average
## 283                                    Same as the national average
## 284                                16                 Not Available
## 285                                16                 Not Available
## 286                                    Same as the national average
## 287                                19                 Not Available
## 288                                    Same as the national average
## 289                                    Same as the national average
## 290                                    Same as the national average
## 291                                16                 Not Available
## 292                                17                 Not Available
## 293                                      Below the national average
## 294                                19                 Not Available
## 295                                16                 Not Available
## 296                                19                 Not Available
## 297                                      Above the national average
## 298                                    Same as the national average
## 299                                19                 Not Available
## 300                                    Same as the national average
## 301                                19                 Not Available
## 302                                                   Not Available
## 303                                    Same as the national average
## 304                                19                 Not Available
## 305                                19                 Not Available
## 306                                19                 Not Available
## 307                                16                 Not Available
## 308                                    Same as the national average
## 309                                19                 Not Available
## 310                                16                 Not Available
## 311                                      Below the national average
## 312                                    Same as the national average
## 313                                    Same as the national average
## 314                                    Same as the national average
## 315                                16                 Not Available
## 316                                      Above the national average
## 317                                    Same as the national average
## 318                                    Same as the national average
## 319                                    Same as the national average
## 320                                    Same as the national average
## 321                                    Same as the national average
## 322                                    Same as the national average
## 323                                    Same as the national average
## 324                                19                 Not Available
## 325                                    Same as the national average
## 326                                16                 Not Available
## 327                                    Same as the national average
## 328                                                   Not Available
## 329                                    Same as the national average
## 330                                19                 Not Available
## 331                                    Same as the national average
## 332                                      Above the national average
## 333                                    Same as the national average
## 334                                    Same as the national average
## 335                                    Same as the national average
## 336                                19                 Not Available
## 337                                    Same as the national average
## 338                                19                 Not Available
## 339                                    Same as the national average
## 340                                    Same as the national average
## 341                                      Above the national average
## 342                                16  Same as the national average
## 343                                    Same as the national average
## 344                                19                 Not Available
## 345                                    Same as the national average
## 346                                    Same as the national average
## 347                                19                 Not Available
## 348                                    Same as the national average
## 349                                      Above the national average
## 350                                    Same as the national average
## 351                                    Same as the national average
## 352                                      Above the national average
## 353                                16                 Not Available
## 354                                    Same as the national average
## 355                                    Same as the national average
## 356                                    Same as the national average
## 357                                    Same as the national average
## 358                                    Same as the national average
## 359                                      Below the national average
## 360                                19                 Not Available
## 361                                    Same as the national average
## 362                                      Above the national average
## 363                                    Same as the national average
## 364                                    Same as the national average
## 365                                    Same as the national average
## 366                                    Same as the national average
## 367                                    Same as the national average
## 368                                      Above the national average
## 369                                                   Not Available
## 370                                    Same as the national average
## 371                                    Same as the national average
## 372                                    Same as the national average
## 373                                    Same as the national average
## 374                                    Same as the national average
## 375                                19                 Not Available
## 376                                17  Same as the national average
## 377                                16                 Not Available
## 378                                    Same as the national average
## 379                                16                 Not Available
## 380                                    Same as the national average
## 381                                      Below the national average
## 382                                19                 Not Available
## 383                                    Same as the national average
## 384                                19                 Not Available
## 385                                19                 Not Available
## 386                                16                 Not Available
## 387                                    Same as the national average
## 388                                16                 Not Available
## 389                                    Same as the national average
## 390                                    Same as the national average
## 391                                    Same as the national average
## 392                                    Same as the national average
## 393                                16  Same as the national average
## 394                                    Same as the national average
## 395                                    Same as the national average
## 396                                17                 Not Available
## 397                                16                 Not Available
## 398                                    Same as the national average
## 399                                    Same as the national average
## 400                                      Above the national average
## 401                                19                 Not Available
## 402                                    Same as the national average
## 403                                16                 Not Available
## 404                                    Same as the national average
## 405                                19                 Not Available
## 406                                      Above the national average
## 407                                19                 Not Available
## 408                                                   Not Available
## 409                                                   Not Available
## 410                                16                 Not Available
## 411                                    Same as the national average
## 412                                    Same as the national average
## 413                                    Same as the national average
## 414                                    Same as the national average
## 415                                16                 Not Available
## 416                                    Same as the national average
## 417                                19                 Not Available
## 418                                19                 Not Available
## 419                                    Same as the national average
## 420                                16                 Not Available
## 421                                19                 Not Available
## 422                                    Same as the national average
## 423                                    Same as the national average
## 424                                19                 Not Available
## 425                                      Below the national average
## 426                                    Same as the national average
## 427                                                   Not Available
## 428                                    Same as the national average
## 429                                16                 Not Available
## 430                                      Below the national average
## 431                                    Same as the national average
## 432                                    Same as the national average
## 433                                    Same as the national average
## 434                                    Same as the national average
## 435                                16                 Not Available
## 436                                    Same as the national average
## 437                                    Same as the national average
## 438                                    Same as the national average
## 439                                    Same as the national average
## 440                                19                 Not Available
## 441                                    Same as the national average
## 442                                16                 Not Available
## 443                                    Same as the national average
## 444                                    Same as the national average
## 445                                    Same as the national average
## 446                                    Same as the national average
## 447                                    Same as the national average
## 448                                19                 Not Available
## 449                                    Same as the national average
## 450                                    Same as the national average
## 451                                19                 Not Available
## 452                                16                 Not Available
## 453                                    Same as the national average
## 454                                    Same as the national average
## 455                                    Same as the national average
## 456                                      Above the national average
## 457                                16                 Not Available
## 458                                    Same as the national average
## 459                                      Above the national average
## 460                                    Same as the national average
## 461                                      Below the national average
## 462                                    Same as the national average
## 463                                    Same as the national average
## 464                                    Same as the national average
## 465                                      Below the national average
## 466                                    Same as the national average
## 467                                      Above the national average
## 468                                    Same as the national average
## 469                                17  Same as the national average
## 470                                      Below the national average
## 471                                    Same as the national average
## 472                                                   Not Available
## 473                                    Same as the national average
## 474                                    Same as the national average
## 475                                19                 Not Available
## 476                                16  Same as the national average
## 477                                    Same as the national average
## 478                                    Same as the national average
## 479                                      Below the national average
## 480                                    Same as the national average
## 481                                      Above the national average
## 482                                    Same as the national average
## 483                                    Same as the national average
## 484                                                   Not Available
## 485                                      Above the national average
## 486                                19                 Not Available
## 487                                    Same as the national average
## 488                                    Same as the national average
## 489                                    Same as the national average
## 490                                                   Not Available
## 491                                    Same as the national average
## 492                                    Same as the national average
## 493                                      Above the national average
## 494                                    Same as the national average
## 495                                    Same as the national average
## 496                                      Above the national average
## 497                                    Same as the national average
## 498                                      Below the national average
## 499                                16                 Not Available
## 500                                16                 Not Available
## 501                                16                 Not Available
## 502                                19                 Not Available
## 503                                    Same as the national average
## 504                                    Same as the national average
## 505                                    Same as the national average
## 506                                19                 Not Available
## 507                                19                 Not Available
## 508                                16                 Not Available
## 509                                19                 Not Available
## 510                                    Same as the national average
## 511                                16                 Not Available
## 512                                      Above the national average
## 513                                    Same as the national average
## 514                                      Above the national average
## 515                                    Same as the national average
## 516                                                   Not Available
## 517                                19                 Not Available
## 518                                      Below the national average
## 519                                      Above the national average
## 520                                    Same as the national average
## 521                                    Same as the national average
## 522                                                   Not Available
## 523                                      Above the national average
## 524                                    Same as the national average
## 525                                    Same as the national average
## 526                                    Same as the national average
## 527                                      Below the national average
## 528                                19                 Not Available
## 529                                                   Not Available
## 530                                    Same as the national average
## 531                                16                 Not Available
## 532                                16                 Not Available
## 533                                    Same as the national average
## 534                                      Above the national average
## 535                                16                 Not Available
## 536                                    Same as the national average
## 537                                    Same as the national average
## 538                                16                 Not Available
## 539                                    Same as the national average
## 540                                    Same as the national average
## 541                                    Same as the national average
## 542                                16  Same as the national average
## 543                                19                 Not Available
## 544                                                   Not Available
## 545                                      Below the national average
## 546                                    Same as the national average
## 547                                    Same as the national average
## 548                                16                 Not Available
## 549                                    Same as the national average
## 550                                    Same as the national average
## 551                                    Same as the national average
## 552                                    Same as the national average
## 553                                19                 Not Available
## 554                                16                 Not Available
## 555                                      Above the national average
## 556                                      Below the national average
## 557                                      Below the national average
## 558                                    Same as the national average
## 559                                    Same as the national average
## 560                                      Above the national average
## 561                                    Same as the national average
## 562                                    Same as the national average
## 563                                16                 Not Available
## 564                                17                 Not Available
## 565                                    Same as the national average
## 566                                      Below the national average
## 567                                    Same as the national average
## 568                                                   Not Available
## 569                                16                 Not Available
## 570                                16                 Not Available
## 571                                    Same as the national average
## 572                                    Same as the national average
## 573                                    Same as the national average
## 574                                    Same as the national average
## 575                                19                 Not Available
## 576                                    Same as the national average
## 577                                      Below the national average
## 578                                    Same as the national average
## 579                                19                 Not Available
## 580                                    Same as the national average
## 581                                19                 Not Available
## 582                                    Same as the national average
## 583                                      Above the national average
## 584                                    Same as the national average
## 585                                    Same as the national average
## 586                                    Same as the national average
## 587                                    Same as the national average
## 588                                    Same as the national average
## 589                                19                 Not Available
## 590                                16                 Not Available
## 591                                      Below the national average
## 592                                 5                 Not Available
## 593                                    Same as the national average
## 594                                19                 Not Available
## 595                                      Above the national average
## 596                                17  Same as the national average
## 597                                    Same as the national average
## 598                                19                 Not Available
## 599                                16                 Not Available
## 600                                      Above the national average
## 601                                    Same as the national average
## 602                                      Above the national average
## 603                                      Below the national average
## 604                                      Below the national average
## 605                                19                 Not Available
## 606                                    Same as the national average
## 607                                16                 Not Available
## 608                                    Same as the national average
## 609                                19                 Not Available
## 610                                16                 Not Available
## 611                                19                 Not Available
## 612                                                   Not Available
## 613                                    Same as the national average
## 614                                    Same as the national average
## 615                                    Same as the national average
## 616                                    Same as the national average
## 617                                19                 Not Available
## 618                                      Below the national average
## 619                                      Below the national average
## 620                                    Same as the national average
## 621                                    Same as the national average
## 622                                    Same as the national average
## 623                                19                 Not Available
## 624                                16                 Not Available
## 625                                      Below the national average
## 626                                      Above the national average
## 627                                    Same as the national average
## 628                                16                 Not Available
## 629                                      Above the national average
## 630                                16                 Not Available
## 631                                                   Not Available
## 632                                    Same as the national average
## 633                                    Same as the national average
## 634                                    Same as the national average
## 635                                      Below the national average
## 636                                16                 Not Available
## 637                                    Same as the national average
## 638                                19                 Not Available
## 639                                    Same as the national average
## 640                                    Same as the national average
## 641                                                   Not Available
## 642                                                   Not Available
## 643                                    Same as the national average
## 644                                    Same as the national average
## 645                                16  Same as the national average
## 646                                19                 Not Available
## 647                                16  Same as the national average
## 648                                    Same as the national average
## 649                                16                 Not Available
## 650                                    Same as the national average
## 651                                19                 Not Available
## 652                                16                 Not Available
## 653                                      Above the national average
## 654                                    Same as the national average
## 655                                    Same as the national average
## 656                                17                 Not Available
## 657                                    Same as the national average
## 658                                    Same as the national average
## 659                                                   Not Available
## 660                                    Same as the national average
## 661                                17  Same as the national average
## 662                                      Above the national average
## 663                                    Same as the national average
## 664                                16                 Not Available
## 665                                16                 Not Available
## 666                                                   Not Available
## 667                                                   Not Available
## 668                                19                 Not Available
## 669                                16  Same as the national average
## 670                                      Above the national average
## 671                                                   Not Available
## 672                                    Same as the national average
## 673                                16                 Not Available
## 674                                17  Same as the national average
## 675                                    Same as the national average
## 676                                      Below the national average
## 677                                16                 Not Available
## 678                                      Below the national average
## 679                                16                 Not Available
## 680                                    Same as the national average
## 681                                      Below the national average
## 682                                      Above the national average
## 683                                                   Not Available
## 684                                16                 Not Available
## 685                                    Same as the national average
## 686                                    Same as the national average
## 687                                    Same as the national average
## 688                                19                 Not Available
## 689                                      Above the national average
## 690                                    Same as the national average
## 691                                    Same as the national average
## 692                                      Above the national average
## 693                                    Same as the national average
## 694                                    Same as the national average
## 695                                    Same as the national average
## 696                                                   Not Available
## 697                                17                 Not Available
## 698                                    Same as the national average
## 699                                    Same as the national average
## 700                                    Same as the national average
## 701                                    Same as the national average
## 702                                19                 Not Available
## 703                                16                 Not Available
## 704                                    Same as the national average
## 705                                    Same as the national average
## 706                                19                 Not Available
## 707                                    Same as the national average
## 708                                    Same as the national average
## 709                                16                 Not Available
## 710                                16  Same as the national average
## 711                                16                 Not Available
## 712                                    Same as the national average
## 713                                    Same as the national average
## 714                                16                 Not Available
## 715                                    Same as the national average
## 716                                    Same as the national average
## 717                                                   Not Available
## 718                                    Same as the national average
## 719                                    Same as the national average
## 720                                    Same as the national average
## 721                                      Below the national average
## 722                                                   Not Available
## 723                                    Same as the national average
## 724                                    Same as the national average
## 725                                    Same as the national average
## 726                                16                 Not Available
## 727                                    Same as the national average
## 728                                    Same as the national average
## 729                                    Same as the national average
## 730                                16                 Not Available
## 731                                    Same as the national average
## 732                                    Same as the national average
## 733                                    Same as the national average
## 734                                19                 Not Available
## 735                                    Same as the national average
## 736                                    Same as the national average
## 737                                    Same as the national average
## 738                                    Same as the national average
## 739                                      Below the national average
## 740                                19                 Not Available
## 741                                19                 Not Available
## 742                                    Same as the national average
## 743                                                   Not Available
## 744                                    Same as the national average
## 745                                19                 Not Available
## 746                                17  Same as the national average
## 747                                      Above the national average
## 748                                      Above the national average
## 749                                19                 Not Available
## 750                                    Same as the national average
## 751                                19                 Not Available
## 752                                    Same as the national average
## 753                                    Same as the national average
## 754                                    Same as the national average
## 755                                    Same as the national average
## 756                                    Same as the national average
## 757                                      Above the national average
## 758                                    Same as the national average
## 759                                19                 Not Available
## 760                                    Same as the national average
## 761                                16                 Not Available
## 762                                    Same as the national average
## 763                                19                 Not Available
## 764                                    Same as the national average
## 765                                    Same as the national average
## 766                                    Same as the national average
## 767                                    Same as the national average
## 768                                19                 Not Available
## 769                                17  Same as the national average
## 770                                    Same as the national average
## 771                                19                 Not Available
## 772                                    Same as the national average
## 773                                    Same as the national average
## 774                                    Same as the national average
## 775                                    Same as the national average
## 776                                      Above the national average
## 777                                                   Not Available
## 778                                      Above the national average
## 779                                    Same as the national average
## 780                                      Below the national average
## 781                                                   Not Available
## 782                                    Same as the national average
## 783                                19                 Not Available
## 784                                    Same as the national average
## 785                                    Same as the national average
## 786                                    Same as the national average
## 787                                    Same as the national average
## 788                                      Above the national average
## 789                                    Same as the national average
## 790                                                   Not Available
## 791                                16                 Not Available
## 792                                16                 Not Available
## 793                                19                 Not Available
## 794                                    Same as the national average
## 795                                    Same as the national average
## 796                                    Same as the national average
## 797                                                   Not Available
## 798                                19                 Not Available
## 799                                    Same as the national average
## 800                                    Same as the national average
## 801                                      Below the national average
## 802                                    Same as the national average
## 803                                19                 Not Available
## 804                                    Same as the national average
## 805                                    Same as the national average
## 806                                    Same as the national average
## 807                                19                 Not Available
## 808                                    Same as the national average
## 809                                17  Same as the national average
## 810                                16  Same as the national average
## 811                                    Same as the national average
## 812                                      Below the national average
## 813                                16                 Not Available
## 814                                    Same as the national average
## 815                                                   Not Available
## 816                                 5                 Not Available
## 817                                19                 Not Available
## 818                                      Above the national average
## 819                                    Same as the national average
## 820                                    Same as the national average
## 821                                    Same as the national average
## 822                                    Same as the national average
## 823                                                   Not Available
## 824                                      Below the national average
## 825                                16                 Not Available
## 826                                      Below the national average
## 827                                    Same as the national average
## 828                                    Same as the national average
## 829                                    Same as the national average
## 830                                    Same as the national average
## 831                                    Same as the national average
## 832                                                   Not Available
## 833                                    Same as the national average
## 834                                    Same as the national average
## 835                                16                 Not Available
## 836                                    Same as the national average
## 837                                19                 Not Available
## 838                                    Same as the national average
## 839                                    Same as the national average
## 840                                    Same as the national average
## 841                                    Same as the national average
## 842                                19                 Not Available
## 843                                16                 Not Available
## 844                                      Above the national average
## 845                                    Same as the national average
## 846                                    Same as the national average
## 847                                    Same as the national average
## 848                                    Same as the national average
## 849                                19                 Not Available
## 850                                16                 Not Available
## 851                                      Above the national average
## 852                                    Same as the national average
## 853                                 5                 Not Available
## 854                                    Same as the national average
## 855                                      Below the national average
## 856                                    Same as the national average
## 857                                16                 Not Available
## 858                                    Same as the national average
## 859                                16                 Not Available
## 860                                    Same as the national average
## 861                                    Same as the national average
## 862                                    Same as the national average
## 863                                    Same as the national average
## 864                                19                 Not Available
## 865                                19                 Not Available
## 866                                    Same as the national average
## 867                                      Above the national average
## 868                                    Same as the national average
## 869                                    Same as the national average
## 870                                    Same as the national average
## 871                                    Same as the national average
## 872                                    Same as the national average
## 873                                    Same as the national average
## 874                                    Same as the national average
## 875                                    Same as the national average
## 876                                    Same as the national average
## 877                                19                 Not Available
## 878                                16                 Not Available
## 879                                    Same as the national average
## 880                                    Same as the national average
## 881                                    Same as the national average
## 882                                19                 Not Available
## 883                                    Same as the national average
## 884                                    Same as the national average
## 885                                    Same as the national average
## 886                                    Same as the national average
## 887                                      Below the national average
## 888                                      Below the national average
## 889                                      Below the national average
## 890                                16                 Not Available
## 891                                    Same as the national average
## 892                                    Same as the national average
## 893                                    Same as the national average
## 894                                    Same as the national average
## 895                                    Same as the national average
## 896                                    Same as the national average
## 897                                    Same as the national average
## 898                                19                 Not Available
## 899                                    Same as the national average
## 900                                19                 Not Available
## 901                                    Same as the national average
## 902                                    Same as the national average
## 903                                 5                 Not Available
## 904                                    Same as the national average
## 905                                    Same as the national average
## 906                                                   Not Available
## 907                                    Same as the national average
## 908                                                   Not Available
## 909                                19                 Not Available
## 910                                16                 Not Available
## 911                                      Below the national average
## 912                                16                 Not Available
## 913                                      Above the national average
## 914                                19                 Not Available
## 915                                16                 Not Available
## 916                                16                 Not Available
## 917                                19                 Not Available
## 918                                    Same as the national average
## 919                                    Same as the national average
## 920                                19                 Not Available
## 921                                16                 Not Available
## 922                                    Same as the national average
## 923                                    Same as the national average
## 924                                    Same as the national average
## 925                                    Same as the national average
## 926                                      Below the national average
## 927                                    Same as the national average
## 928                                    Same as the national average
## 929                                16                 Not Available
## 930                                    Same as the national average
## 931                                                   Not Available
## 932                                19                 Not Available
## 933                                19                 Not Available
## 934                                    Same as the national average
## 935                                      Above the national average
## 936                                19                 Not Available
## 937                                    Same as the national average
## 938                                19                 Not Available
## 939                                    Same as the national average
## 940                                    Same as the national average
## 941                                    Same as the national average
## 942                                    Same as the national average
## 943                                19                 Not Available
## 944                                      Above the national average
## 945                                      Above the national average
## 946                                    Same as the national average
## 947                                    Same as the national average
## 948                                16                 Not Available
## 949                                19                 Not Available
## 950                                      Above the national average
## 951                                    Same as the national average
## 952                                    Same as the national average
## 953                                16                 Not Available
## 954                                    Same as the national average
## 955                                    Same as the national average
## 956                                    Same as the national average
## 957                                                   Not Available
## 958                                16                 Not Available
## 959                                    Same as the national average
## 960                                    Same as the national average
## 961                                    Same as the national average
## 962                                    Same as the national average
## 963                                16                 Not Available
## 964                                 5                 Not Available
## 965                                    Same as the national average
## 966                                    Same as the national average
## 967                                    Same as the national average
## 968                                    Same as the national average
## 969                                    Same as the national average
## 970                                      Below the national average
## 971                                    Same as the national average
## 972                                    Same as the national average
## 973                                19                 Not Available
## 974                                    Same as the national average
## 975                                    Same as the national average
## 976                                16                 Not Available
## 977                                    Same as the national average
## 978                                    Same as the national average
## 979                                16                 Not Available
## 980                                19                 Not Available
## 981                                    Same as the national average
## 982                                16                 Not Available
## 983                                    Same as the national average
## 984                                    Same as the national average
## 985                                      Above the national average
## 986                                19                 Not Available
## 987                                    Same as the national average
## 988                                17  Same as the national average
## 989                                    Same as the national average
## 990                                                   Not Available
## 991                                    Same as the national average
## 992                                                   Not Available
## 993                                16                 Not Available
## 994                                    Same as the national average
## 995                                    Same as the national average
## 996                                      Below the national average
## 997                                19                 Not Available
## 998                                    Same as the national average
## 999                                    Same as the national average
## 1000                               19                 Not Available
## 1001                               19                 Not Available
## 1002                               16                 Not Available
## 1003                                     Above the national average
## 1004                                                  Not Available
## 1005                               16                 Not Available
## 1006                                     Below the national average
## 1007                                   Same as the national average
## 1008                                   Same as the national average
## 1009                               19                 Not Available
## 1010                                   Same as the national average
## 1011                               19                 Not Available
## 1012                               19                 Not Available
## 1013                                     Above the national average
## 1014                                     Below the national average
## 1015                               16                 Not Available
## 1016                                   Same as the national average
## 1017                                   Same as the national average
## 1018                                5                 Not Available
## 1019                               16                 Not Available
## 1020                               16                 Not Available
## 1021                               16                 Not Available
## 1022                                   Same as the national average
## 1023                                     Below the national average
## 1024                                   Same as the national average
## 1025                               19                 Not Available
## 1026                                   Same as the national average
## 1027                               19                 Not Available
## 1028                                                  Not Available
## 1029                                   Same as the national average
## 1030                                   Same as the national average
## 1031                               16                 Not Available
## 1032                                   Same as the national average
## 1033                                     Above the national average
## 1034                                     Below the national average
## 1035                               16                 Not Available
## 1036                               16                 Not Available
## 1037                                   Same as the national average
## 1038                               16                 Not Available
## 1039                               16                 Not Available
## 1040                                   Same as the national average
## 1041                               16                 Not Available
## 1042                                                  Not Available
## 1043                                   Same as the national average
## 1044                                   Same as the national average
## 1045                                   Same as the national average
## 1046                                     Above the national average
## 1047                                   Same as the national average
## 1048                               19                 Not Available
## 1049                                                  Not Available
## 1050                               19                 Not Available
## 1051                               19                 Not Available
## 1052                               16                 Not Available
## 1053                                   Same as the national average
## 1054                                   Same as the national average
## 1055                                     Below the national average
## 1056                                   Same as the national average
## 1057                                   Same as the national average
## 1058                                     Above the national average
## 1059                                     Above the national average
## 1060                                                  Not Available
## 1061                               16  Same as the national average
## 1062                                   Same as the national average
## 1063                                   Same as the national average
## 1064                                     Above the national average
## 1065                                     Above the national average
## 1066                                   Same as the national average
## 1067                               17  Same as the national average
## 1068                               16                 Not Available
## 1069                                   Same as the national average
## 1070                                   Same as the national average
## 1071                                     Above the national average
## 1072                               19                 Not Available
## 1073                                   Same as the national average
## 1074                               19                 Not Available
## 1075                                   Same as the national average
## 1076                               16                 Not Available
## 1077                                   Same as the national average
## 1078                                   Same as the national average
## 1079                                     Below the national average
## 1080                               16                 Not Available
## 1081                                     Below the national average
## 1082                                   Same as the national average
## 1083                                   Same as the national average
## 1084                                   Same as the national average
## 1085                                   Same as the national average
## 1086                                   Same as the national average
## 1087                               16                 Not Available
## 1088                                   Same as the national average
## 1089                                   Same as the national average
## 1090                               19                 Not Available
## 1091                                   Same as the national average
## 1092                                   Same as the national average
## 1093                                   Same as the national average
## 1094                                   Same as the national average
## 1095                               19                 Not Available
## 1096                                   Same as the national average
## 1097                                   Same as the national average
## 1098                                   Same as the national average
## 1099                                     Below the national average
## 1100                                                  Not Available
## 1101                                     Above the national average
## 1102                                   Same as the national average
## 1103                               19                 Not Available
## 1104                                     Above the national average
## 1105                                   Same as the national average
## 1106                                   Same as the national average
## 1107                               19                 Not Available
## 1108                                     Above the national average
## 1109                               16                 Not Available
## 1110                                     Below the national average
## 1111                               16                 Not Available
## 1112                               19                 Not Available
## 1113                                                  Not Available
## 1114                                                  Not Available
## 1115                                   Same as the national average
## 1116                                   Same as the national average
## 1117                               19                 Not Available
## 1118                               16                 Not Available
## 1119                                   Same as the national average
## 1120                               16                 Not Available
## 1121                                   Same as the national average
## 1122                                   Same as the national average
## 1123                                   Same as the national average
## 1124                               19                 Not Available
## 1125                                   Same as the national average
## 1126                                   Same as the national average
## 1127                                     Below the national average
## 1128                                     Below the national average
## 1129                                   Same as the national average
## 1130                               16                 Not Available
## 1131                                   Same as the national average
## 1132                                   Same as the national average
## 1133                               16                 Not Available
## 1134                                   Same as the national average
## 1135                                     Above the national average
## 1136                                     Below the national average
## 1137                               19                 Not Available
## 1138                                     Above the national average
## 1139                               19                 Not Available
## 1140                                   Same as the national average
## 1141                               16                 Not Available
## 1142                                   Same as the national average
## 1143                               17                 Not Available
## 1144                               17  Same as the national average
## 1145                               16                 Not Available
## 1146                               16                 Not Available
## 1147                               16                 Not Available
## 1148                               16                 Not Available
## 1149                               16                 Not Available
## 1150                               19                 Not Available
## 1151                                   Same as the national average
## 1152                                   Same as the national average
## 1153                                5                 Not Available
## 1154                               17  Same as the national average
## 1155                                   Same as the national average
## 1156                               16                 Not Available
## 1157                                   Same as the national average
## 1158                                   Same as the national average
## 1159                                   Same as the national average
## 1160                                     Above the national average
## 1161                               19                 Not Available
## 1162                               19                 Not Available
## 1163                                     Above the national average
## 1164                                     Below the national average
## 1165                               16                 Not Available
## 1166                                   Same as the national average
## 1167                               17  Same as the national average
## 1168                               19                 Not Available
## 1169                                                  Not Available
## 1170                                   Same as the national average
## 1171                                                  Not Available
## 1172                                   Same as the national average
## 1173                               16                 Not Available
## 1174                                   Same as the national average
## 1175                               16  Same as the national average
## 1176                                   Same as the national average
## 1177                                   Same as the national average
## 1178                               19                 Not Available
## 1179                                   Same as the national average
## 1180                               16                 Not Available
## 1181                                   Same as the national average
## 1182                                     Below the national average
## 1183                                   Same as the national average
## 1184                               19                 Not Available
## 1185                               19                 Not Available
## 1186                                     Above the national average
## 1187                                   Same as the national average
## 1188                               16                 Not Available
## 1189                                   Same as the national average
## 1190                                   Same as the national average
## 1191                                   Same as the national average
## 1192                                   Same as the national average
## 1193                                   Same as the national average
## 1194                                   Same as the national average
## 1195                               16                 Not Available
## 1196                                   Same as the national average
## 1197                                                  Not Available
## 1198                                   Same as the national average
## 1199                               16                 Not Available
## 1200                               19                 Not Available
## 1201                               19                 Not Available
## 1202                               19                 Not Available
## 1203                                     Above the national average
## 1204                               16                 Not Available
## 1205                                   Same as the national average
## 1206                               16                 Not Available
## 1207                               16                 Not Available
## 1208                               19                 Not Available
## 1209                                   Same as the national average
## 1210                                   Same as the national average
## 1211                                     Below the national average
## 1212                                5                 Not Available
## 1213                               16                 Not Available
## 1214                                   Same as the national average
## 1215                                   Same as the national average
## 1216                                   Same as the national average
## 1217                                   Same as the national average
## 1218                                   Same as the national average
## 1219                               16                 Not Available
## 1220                                   Same as the national average
## 1221                               16  Same as the national average
## 1222                                   Same as the national average
## 1223                                                  Not Available
## 1224                                   Same as the national average
## 1225                                                  Not Available
## 1226                                   Same as the national average
## 1227                                   Same as the national average
## 1228                                   Same as the national average
## 1229                                                  Not Available
## 1230                               16                 Not Available
## 1231                               16                 Not Available
## 1232                               16                 Not Available
## 1233                               16  Same as the national average
## 1234                               16                 Not Available
## 1235                               16                 Not Available
## 1236                                   Same as the national average
## 1237                                   Same as the national average
## 1238                                                  Not Available
## 1239                                   Same as the national average
## 1240                                     Above the national average
## 1241                                5                 Not Available
## 1242                               19                 Not Available
## 1243                                     Above the national average
## 1244                                     Above the national average
## 1245                                   Same as the national average
## 1246                                   Same as the national average
## 1247                                                  Not Available
## 1248                               19                 Not Available
## 1249                                     Below the national average
## 1250                                   Same as the national average
## 1251                                   Same as the national average
## 1252                                5                 Not Available
## 1253                                                  Not Available
## 1254                               16                 Not Available
## 1255                               16                 Not Available
## 1256                                     Below the national average
## 1257                                   Same as the national average
## 1258                                   Same as the national average
## 1259                                   Same as the national average
## 1260                                   Same as the national average
## 1261                               19                 Not Available
## 1262                               19                 Not Available
## 1263                                   Same as the national average
## 1264                               19                 Not Available
## 1265                                   Same as the national average
## 1266                                   Same as the national average
## 1267                               19                 Not Available
## 1268                                   Same as the national average
## 1269                               16                 Not Available
## 1270                                     Below the national average
## 1271                                   Same as the national average
## 1272                                   Same as the national average
## 1273                                     Below the national average
## 1274                                   Same as the national average
## 1275                                   Same as the national average
## 1276                               16                 Not Available
## 1277                                   Same as the national average
## 1278                                   Same as the national average
## 1279                                   Same as the national average
## 1280                                   Same as the national average
## 1281                                   Same as the national average
## 1282                                   Same as the national average
## 1283                                   Same as the national average
## 1284                                   Same as the national average
## 1285                                   Same as the national average
## 1286                                     Above the national average
## 1287                                                  Not Available
## 1288                               16                 Not Available
## 1289                                   Same as the national average
## 1290                                                  Not Available
## 1291                                     Below the national average
## 1292                                   Same as the national average
## 1293                                   Same as the national average
## 1294                               19                 Not Available
## 1295                                                  Not Available
## 1296                                   Same as the national average
## 1297                                   Same as the national average
## 1298                                   Same as the national average
## 1299                               16                 Not Available
## 1300                                   Same as the national average
## 1301                               19                 Not Available
## 1302                                     Above the national average
## 1303                               16                 Not Available
## 1304                               17                 Not Available
## 1305                                   Same as the national average
## 1306                               19                 Not Available
## 1307                                   Same as the national average
## 1308                                     Below the national average
## 1309                                   Same as the national average
## 1310                                     Above the national average
## 1311                               16                 Not Available
## 1312                                     Above the national average
## 1313                                   Same as the national average
## 1314                                   Same as the national average
## 1315                                   Same as the national average
## 1316                                   Same as the national average
## 1317                                   Same as the national average
## 1318                                   Same as the national average
## 1319                                   Same as the national average
## 1320                                     Above the national average
## 1321                                     Above the national average
## 1322                                   Same as the national average
## 1323                                   Same as the national average
## 1324                                                  Not Available
## 1325                                     Below the national average
## 1326                                     Above the national average
## 1327                               19                 Not Available
## 1328                                   Same as the national average
## 1329                                     Below the national average
## 1330                               19                 Not Available
## 1331                                   Same as the national average
## 1332                                   Same as the national average
## 1333                                   Same as the national average
## 1334                                   Same as the national average
## 1335                                     Above the national average
## 1336                                   Same as the national average
## 1337                                   Same as the national average
## 1338                               16                 Not Available
## 1339                                   Same as the national average
## 1340                               16                 Not Available
## 1341                               16                 Not Available
## 1342                               17                 Not Available
## 1343                               16                 Not Available
## 1344                               19                 Not Available
## 1345                                   Same as the national average
## 1346                                   Same as the national average
## 1347                               16                 Not Available
## 1348                                   Same as the national average
## 1349                                   Same as the national average
## 1350                                     Below the national average
## 1351                                   Same as the national average
## 1352                                   Same as the national average
## 1353                               16                 Not Available
## 1354                               19                 Not Available
## 1355                                   Same as the national average
## 1356                               19                 Not Available
## 1357                               19                 Not Available
## 1358                                                  Not Available
## 1359                                   Same as the national average
## 1360                                   Same as the national average
## 1361                                   Same as the national average
## 1362                                   Same as the national average
## 1363                               17                 Not Available
## 1364                                   Same as the national average
## 1365                                5                 Not Available
## 1366                                                  Not Available
## 1367                                   Same as the national average
## 1368                                   Same as the national average
## 1369                                   Same as the national average
## 1370                                   Same as the national average
## 1371                                   Same as the national average
## 1372                                   Same as the national average
## 1373                                   Same as the national average
## 1374                                   Same as the national average
## 1375                                   Same as the national average
## 1376                                   Same as the national average
## 1377                                   Same as the national average
## 1378                                   Same as the national average
## 1379                               16                 Not Available
## 1380                                                  Not Available
## 1381                               19                 Not Available
## 1382                                   Same as the national average
## 1383                               16  Same as the national average
## 1384                                                  Not Available
## 1385                                   Same as the national average
## 1386                                   Same as the national average
## 1387                                     Below the national average
## 1388                                     Above the national average
## 1389                                   Same as the national average
## 1390                                   Same as the national average
## 1391                               17  Same as the national average
## 1392                                     Above the national average
## 1393                                   Same as the national average
## 1394                                     Below the national average
## 1395                                   Same as the national average
## 1396                                                  Not Available
## 1397                                   Same as the national average
## 1398                                     Above the national average
## 1399                               16                 Not Available
## 1400                                5                 Not Available
## 1401                                   Same as the national average
## 1402                                                  Not Available
## 1403                               16                 Not Available
## 1404                                     Above the national average
## 1405                                   Same as the national average
## 1406                                   Same as the national average
## 1407                                   Same as the national average
## 1408                                   Same as the national average
## 1409                                   Same as the national average
## 1410                                   Same as the national average
## 1411                                   Same as the national average
## 1412                                   Same as the national average
## 1413                                   Same as the national average
## 1414                                   Same as the national average
## 1415                                   Same as the national average
## 1416                               16                 Not Available
## 1417                                   Same as the national average
## 1418                                   Same as the national average
## 1419                                   Same as the national average
## 1420                                   Same as the national average
## 1421                               16                 Not Available
## 1422                                   Same as the national average
## 1423                                     Above the national average
## 1424                                   Same as the national average
## 1425                                     Above the national average
## 1426                                                  Not Available
## 1427                                   Same as the national average
## 1428                                     Above the national average
## 1429                                     Below the national average
## 1430                                   Same as the national average
## 1431                                                  Not Available
## 1432                                   Same as the national average
## 1433                                   Same as the national average
## 1434                                   Same as the national average
## 1435                                   Same as the national average
## 1436                               19                 Not Available
## 1437                                   Same as the national average
## 1438                                     Below the national average
## 1439                                   Same as the national average
## 1440                               19                 Not Available
## 1441                               19                 Not Available
## 1442                               19                 Not Available
## 1443                                     Above the national average
## 1444                                   Same as the national average
## 1445                                   Same as the national average
## 1446                                   Same as the national average
## 1447                                   Same as the national average
## 1448                                   Same as the national average
## 1449                                   Same as the national average
## 1450                                   Same as the national average
## 1451                                     Below the national average
## 1452                                   Same as the national average
## 1453                                   Same as the national average
## 1454                                                  Not Available
## 1455                                   Same as the national average
## 1456                               16                 Not Available
## 1457                                     Below the national average
## 1458                               19                 Not Available
## 1459                               19                 Not Available
## 1460                                5                 Not Available
## 1461                               19                 Not Available
## 1462                               16                 Not Available
## 1463                               16                 Not Available
## 1464                                     Above the national average
## 1465                                                  Not Available
## 1466                                   Same as the national average
## 1467                               16                 Not Available
## 1468                                   Same as the national average
## 1469                               19                 Not Available
## 1470                                   Same as the national average
## 1471                                   Same as the national average
## 1472                                   Same as the national average
## 1473                               16                 Not Available
## 1474                               16                 Not Available
## 1475                               16                 Not Available
## 1476                                   Same as the national average
## 1477                                   Same as the national average
## 1478                               16                 Not Available
## 1479                                   Same as the national average
## 1480                               16                 Not Available
## 1481                                   Same as the national average
## 1482                               16                 Not Available
## 1483                                     Below the national average
## 1484                                   Same as the national average
## 1485                               19                 Not Available
## 1486                                     Above the national average
## 1487                                                  Not Available
## 1488                                   Same as the national average
## 1489                               19                 Not Available
## 1490                                   Same as the national average
## 1491                                   Same as the national average
## 1492                                     Below the national average
## 1493                               16                 Not Available
## 1494                               16                 Not Available
## 1495                                   Same as the national average
## 1496                               17                 Not Available
## 1497                                   Same as the national average
## 1498                               19                 Not Available
## 1499                               16                 Not Available
## 1500                                   Same as the national average
## 1501                                   Same as the national average
## 1502                                   Same as the national average
## 1503                                     Below the national average
## 1504                                   Same as the national average
## 1505                                     Below the national average
## 1506                                     Below the national average
## 1507                                   Same as the national average
## 1508                               17                 Not Available
## 1509                                   Same as the national average
## 1510                                   Same as the national average
## 1511                                   Same as the national average
## 1512                                                  Not Available
## 1513                               17  Same as the national average
## 1514                               19                 Not Available
## 1515                                   Same as the national average
## 1516                                     Below the national average
## 1517                                   Same as the national average
## 1518                                   Same as the national average
## 1519                                                  Not Available
## 1520                                                  Not Available
## 1521                               16                 Not Available
## 1522                                   Same as the national average
## 1523                                   Same as the national average
## 1524                                                  Not Available
## 1525                                   Same as the national average
## 1526                                   Same as the national average
## 1527                               19                 Not Available
## 1528                                   Same as the national average
## 1529                                     Below the national average
## 1530                                   Same as the national average
## 1531                               17  Same as the national average
## 1532                                     Below the national average
## 1533                                   Same as the national average
## 1534                               17  Same as the national average
## 1535                                   Same as the national average
## 1536                                   Same as the national average
## 1537                                   Same as the national average
## 1538                                   Same as the national average
## 1539                               17  Same as the national average
## 1540                                     Above the national average
## 1541                                   Same as the national average
## 1542                                   Same as the national average
## 1543                                     Below the national average
## 1544                                   Same as the national average
## 1545                                   Same as the national average
## 1546                                   Same as the national average
## 1547                               16                 Not Available
## 1548                               16                 Not Available
## 1549                                   Same as the national average
## 1550                               16  Same as the national average
## 1551                               19                 Not Available
## 1552                                   Same as the national average
## 1553                                     Above the national average
## 1554                               16                 Not Available
## 1555                               19                 Not Available
## 1556                               16                 Not Available
## 1557                                     Below the national average
## 1558                                                  Not Available
## 1559                                     Above the national average
## 1560                                   Same as the national average
## 1561                               19                 Not Available
## 1562                               16                 Not Available
## 1563                                   Same as the national average
## 1564                                     Above the national average
## 1565                                   Same as the national average
## 1566                                   Same as the national average
## 1567                                   Same as the national average
## 1568                               16                 Not Available
## 1569                                   Same as the national average
## 1570                                   Same as the national average
## 1571                               16                 Not Available
## 1572                                   Same as the national average
## 1573                                   Same as the national average
## 1574                               16                 Not Available
## 1575                                     Above the national average
## 1576                                   Same as the national average
## 1577                                   Same as the national average
## 1578                                     Below the national average
## 1579                                     Above the national average
## 1580                                   Same as the national average
## 1581                               19                 Not Available
## 1582                                     Below the national average
## 1583                                                  Not Available
## 1584                               17                 Not Available
## 1585                                   Same as the national average
## 1586                                   Same as the national average
## 1587                                   Same as the national average
## 1588                                   Same as the national average
## 1589                                   Same as the national average
## 1590                                   Same as the national average
## 1591                                   Same as the national average
## 1592                                   Same as the national average
## 1593                                     Below the national average
## 1594                                   Same as the national average
## 1595                                5                 Not Available
## 1596                                   Same as the national average
## 1597                                   Same as the national average
## 1598                               16                 Not Available
## 1599                                     Above the national average
## 1600                                   Same as the national average
## 1601                                   Same as the national average
## 1602                               19                 Not Available
## 1603                                   Same as the national average
## 1604                                   Same as the national average
## 1605                               19                 Not Available
## 1606                                   Same as the national average
## 1607                               19                 Not Available
## 1608                                     Below the national average
## 1609                                   Same as the national average
## 1610                                   Same as the national average
## 1611                                   Same as the national average
## 1612                                     Below the national average
## 1613                               19                 Not Available
## 1614                                   Same as the national average
## 1615                                   Same as the national average
## 1616                                                  Not Available
## 1617                                5                 Not Available
## 1618                               19                 Not Available
## 1619                                   Same as the national average
## 1620                               16                 Not Available
## 1621                                     Below the national average
## 1622                                   Same as the national average
## 1623                                   Same as the national average
## 1624                               16                 Not Available
## 1625                                   Same as the national average
## 1626                                   Same as the national average
## 1627                                                  Not Available
## 1628                                   Same as the national average
## 1629                                                  Not Available
## 1630                                                  Not Available
## 1631                                     Above the national average
## 1632                                     Below the national average
## 1633                                   Same as the national average
## 1634                                                  Not Available
## 1635                                   Same as the national average
## 1636                               19                 Not Available
## 1637                                     Above the national average
## 1638                                     Below the national average
## 1639                               19                 Not Available
## 1640                                   Same as the national average
## 1641                               16                 Not Available
## 1642                               16                 Not Available
## 1643                               19                 Not Available
## 1644                                   Same as the national average
## 1645                                                  Not Available
## 1646                                                  Not Available
## 1647                               16  Same as the national average
## 1648                               16                 Not Available
## 1649                                                  Not Available
## 1650                                   Same as the national average
## 1651                               16                 Not Available
## 1652                                   Same as the national average
## 1653                                   Same as the national average
## 1654                               16                 Not Available
## 1655                                   Same as the national average
## 1656                                   Same as the national average
## 1657                               16                 Not Available
## 1658                                   Same as the national average
## 1659                                     Below the national average
## 1660                                   Same as the national average
## 1661                               16                 Not Available
## 1662                                                  Not Available
## 1663                                     Above the national average
## 1664                                     Above the national average
## 1665                                   Same as the national average
## 1666                                     Above the national average
## 1667                                   Same as the national average
## 1668                                   Same as the national average
## 1669                                5                 Not Available
## 1670                               19                 Not Available
## 1671                                                  Not Available
## 1672                               19                 Not Available
## 1673                                   Same as the national average
## 1674                                   Same as the national average
## 1675                                     Above the national average
## 1676                                     Below the national average
## 1677                                     Above the national average
## 1678                               23    Above the national average
## 1679                               19                 Not Available
## 1680                                     Below the national average
## 1681                                                  Not Available
## 1682                                   Same as the national average
## 1683                               19                 Not Available
## 1684                                   Same as the national average
## 1685                               16                 Not Available
## 1686                                   Same as the national average
## 1687                               16                 Not Available
## 1688                                   Same as the national average
## 1689                                     Below the national average
## 1690                               16                 Not Available
## 1691                                   Same as the national average
## 1692                                   Same as the national average
## 1693                               16                 Not Available
## 1694                               16                 Not Available
## 1695                               19                 Not Available
## 1696                                     Above the national average
## 1697                                   Same as the national average
## 1698                               16                 Not Available
## 1699                                   Same as the national average
## 1700                                   Same as the national average
## 1701                                   Same as the national average
## 1702                               16                 Not Available
## 1703                                   Same as the national average
## 1704                               19                 Not Available
## 1705                               19                 Not Available
## 1706                                     Above the national average
## 1707                                   Same as the national average
## 1708                               16                 Not Available
## 1709                                   Same as the national average
## 1710                                     Below the national average
## 1711                                   Same as the national average
## 1712                                   Same as the national average
## 1713                               16                 Not Available
## 1714                               19                 Not Available
## 1715                                     Above the national average
## 1716                                   Same as the national average
## 1717                                   Same as the national average
## 1718                               19                 Not Available
## 1719                                     Below the national average
## 1720                                   Same as the national average
## 1721                               16                 Not Available
## 1722                                   Same as the national average
## 1723                                                  Not Available
## 1724                                   Same as the national average
## 1725                               16                 Not Available
## 1726                                   Same as the national average
## 1727                               16                 Not Available
## 1728                               19                 Not Available
## 1729                                   Same as the national average
## 1730                                   Same as the national average
## 1731                                   Same as the national average
## 1732                                     Below the national average
## 1733                                   Same as the national average
## 1734                                                  Not Available
## 1735                                   Same as the national average
## 1736                               19                 Not Available
## 1737                               16                 Not Available
## 1738                                     Below the national average
## 1739                               16                 Not Available
## 1740                                     Above the national average
## 1741                               19                 Not Available
## 1742                                   Same as the national average
## 1743                                   Same as the national average
## 1744                                   Same as the national average
## 1745                                   Same as the national average
## 1746                               16                 Not Available
## 1747                                   Same as the national average
## 1748                                   Same as the national average
## 1749                               19                 Not Available
## 1750                                5                 Not Available
## 1751                                   Same as the national average
## 1752                                   Same as the national average
## 1753                               16                 Not Available
## 1754                               19                 Not Available
## 1755                                     Below the national average
## 1756                                     Above the national average
## 1757                                   Same as the national average
## 1758                                   Same as the national average
## 1759                                   Same as the national average
## 1760                               16                 Not Available
## 1761                                   Same as the national average
## 1762                                     Below the national average
## 1763                               16  Same as the national average
## 1764                               16                 Not Available
## 1765                                     Above the national average
## 1766                                5                 Not Available
## 1767                                     Above the national average
## 1768                                   Same as the national average
## 1769                               16                 Not Available
## 1770                                   Same as the national average
## 1771                               16                 Not Available
## 1772                               16                 Not Available
## 1773                               16                 Not Available
## 1774                                   Same as the national average
## 1775                                   Same as the national average
## 1776                                     Above the national average
## 1777                                   Same as the national average
## 1778                               19                 Not Available
## 1779                               19                 Not Available
## 1780                               16                 Not Available
## 1781                                   Same as the national average
## 1782                                     Below the national average
## 1783                                   Same as the national average
## 1784                                   Same as the national average
## 1785                               16                 Not Available
## 1786                                   Same as the national average
## 1787                               16                 Not Available
## 1788                                   Same as the national average
## 1789                               16                 Not Available
## 1790                                     Above the national average
## 1791                                   Same as the national average
## 1792                                   Same as the national average
## 1793                                     Below the national average
## 1794                                   Same as the national average
## 1795                                   Same as the national average
## 1796                                     Below the national average
## 1797                                   Same as the national average
## 1798                                     Below the national average
## 1799                                   Same as the national average
## 1800                                   Same as the national average
## 1801                               16                 Not Available
## 1802                                     Above the national average
## 1803                                   Same as the national average
## 1804                                   Same as the national average
## 1805                               16                 Not Available
## 1806                                5                 Not Available
## 1807                               16                 Not Available
## 1808                               16                 Not Available
## 1809                               16                 Not Available
## 1810                                   Same as the national average
## 1811                                                  Not Available
## 1812                                     Below the national average
## 1813                                                  Not Available
## 1814                               19                 Not Available
## 1815                                   Same as the national average
## 1816                               19                 Not Available
## 1817                                   Same as the national average
## 1818                               19                 Not Available
## 1819                               16                 Not Available
## 1820                                   Same as the national average
## 1821                                   Same as the national average
## 1822                                                  Not Available
## 1823                               19                 Not Available
## 1824                                     Below the national average
## 1825                                   Same as the national average
## 1826                                   Same as the national average
## 1827                               16  Same as the national average
## 1828                                   Same as the national average
## 1829                               16  Same as the national average
## 1830                                   Same as the national average
## 1831                                   Same as the national average
## 1832                                   Same as the national average
## 1833                                     Below the national average
## 1834                                                  Not Available
## 1835                               16  Same as the national average
## 1836                                   Same as the national average
## 1837                                   Same as the national average
## 1838                                                  Not Available
## 1839                                   Same as the national average
## 1840                               19                 Not Available
## 1841                                   Same as the national average
## 1842                                   Same as the national average
## 1843                                   Same as the national average
## 1844                               16                 Not Available
## 1845                                                  Not Available
## 1846                                   Same as the national average
## 1847                                                  Not Available
## 1848                                   Same as the national average
## 1849                               19                 Not Available
## 1850                               16                 Not Available
## 1851                               16                 Not Available
## 1852                                   Same as the national average
## 1853                                   Same as the national average
## 1854                                   Same as the national average
## 1855                                   Same as the national average
## 1856                               16                 Not Available
## 1857                                   Same as the national average
## 1858                                   Same as the national average
## 1859                               19                 Not Available
## 1860                                     Above the national average
## 1861                                                  Not Available
## 1862                                   Same as the national average
## 1863                                   Same as the national average
## 1864                                   Same as the national average
## 1865                                     Below the national average
## 1866                                                  Not Available
## 1867                                   Same as the national average
## 1868                                   Same as the national average
## 1869                                   Same as the national average
## 1870                                   Same as the national average
## 1871                                   Same as the national average
## 1872                                   Same as the national average
## 1873                                     Below the national average
## 1874                               16                 Not Available
## 1875                                   Same as the national average
## 1876                               16                 Not Available
## 1877                               16                 Not Available
## 1878                                   Same as the national average
## 1879                               19                 Not Available
## 1880                                   Same as the national average
## 1881                                     Below the national average
## 1882                               16                 Not Available
## 1883                                   Same as the national average
## 1884                                   Same as the national average
## 1885                                   Same as the national average
## 1886                                                  Not Available
## 1887                               16                 Not Available
## 1888                               16                 Not Available
## 1889                                   Same as the national average
## 1890                                                  Not Available
## 1891                                   Same as the national average
## 1892                               16                 Not Available
## 1893                                     Below the national average
## 1894                                   Same as the national average
## 1895                                   Same as the national average
## 1896                               19                 Not Available
## 1897                               16                 Not Available
## 1898                                   Same as the national average
## 1899                               16                 Not Available
## 1900                                   Same as the national average
## 1901                                                  Not Available
## 1902                               17  Same as the national average
## 1903                                   Same as the national average
## 1904                                     Below the national average
## 1905                               19                 Not Available
## 1906                                   Same as the national average
## 1907                                     Above the national average
## 1908                                   Same as the national average
## 1909                                   Same as the national average
## 1910                                     Below the national average
## 1911                                                  Not Available
## 1912                                   Same as the national average
## 1913                                   Same as the national average
## 1914                                   Same as the national average
## 1915                                                  Not Available
## 1916                                   Same as the national average
## 1917                                   Same as the national average
## 1918                                   Same as the national average
## 1919                               16                 Not Available
## 1920                               19                 Not Available
## 1921                                   Same as the national average
## 1922                               16                 Not Available
## 1923                               16                 Not Available
## 1924                               19                 Not Available
## 1925                                   Same as the national average
## 1926                                     Below the national average
## 1927                                     Below the national average
## 1928                                   Same as the national average
## 1929                                   Same as the national average
## 1930                                   Same as the national average
## 1931                                   Same as the national average
## 1932                                   Same as the national average
## 1933                                   Same as the national average
## 1934                                   Same as the national average
## 1935                                   Same as the national average
## 1936                                   Same as the national average
## 1937                               16                 Not Available
## 1938                                                  Not Available
## 1939                                   Same as the national average
## 1940                               19                 Not Available
## 1941                               19                 Not Available
## 1942                                   Same as the national average
## 1943                                                  Not Available
## 1944                                     Below the national average
## 1945                                   Same as the national average
## 1946                                   Same as the national average
## 1947                                     Above the national average
## 1948                               16  Same as the national average
## 1949                               16                 Not Available
## 1950                                     Below the national average
## 1951                               16  Same as the national average
## 1952                               16                 Not Available
## 1953                                   Same as the national average
## 1954                                     Below the national average
## 1955                                   Same as the national average
## 1956                               16  Same as the national average
## 1957                               19                 Not Available
## 1958                                   Same as the national average
## 1959                               19                 Not Available
## 1960                                   Same as the national average
## 1961                                     Above the national average
## 1962                                     Below the national average
## 1963                               19                 Not Available
## 1964                                   Same as the national average
## 1965                                   Same as the national average
## 1966                               16                 Not Available
## 1967                               19                 Not Available
## 1968                                   Same as the national average
## 1969                               19                 Not Available
## 1970                               16                 Not Available
## 1971                               19                 Not Available
## 1972                                   Same as the national average
## 1973                                   Same as the national average
## 1974                                   Same as the national average
## 1975                                   Same as the national average
## 1976                               19                 Not Available
## 1977                               16                 Not Available
## 1978                                     Above the national average
## 1979                                   Same as the national average
## 1980                                     Below the national average
## 1981                                                  Not Available
## 1982                               16                 Not Available
## 1983                                   Same as the national average
## 1984                                                  Not Available
## 1985                                     Above the national average
## 1986                                   Same as the national average
## 1987                               16                 Not Available
## 1988                               17  Same as the national average
## 1989                               16                 Not Available
## 1990                               17                 Not Available
## 1991                                     Below the national average
## 1992                                   Same as the national average
## 1993                                   Same as the national average
## 1994                                   Same as the national average
## 1995                                   Same as the national average
## 1996                                   Same as the national average
## 1997                                   Same as the national average
## 1998                                     Above the national average
## 1999                                   Same as the national average
## 2000                                   Same as the national average
## 2001                                                  Not Available
## 2002                                   Same as the national average
## 2003                                   Same as the national average
## 2004                                     Above the national average
## 2005                               16                 Not Available
## 2006                               19                 Not Available
## 2007                                   Same as the national average
## 2008                                                  Not Available
## 2009                                   Same as the national average
## 2010                                   Same as the national average
## 2011                               19                 Not Available
## 2012                                   Same as the national average
## 2013                               17  Same as the national average
## 2014                                   Same as the national average
## 2015                                   Same as the national average
## 2016                                   Same as the national average
## 2017                               16                 Not Available
## 2018                                   Same as the national average
## 2019                               19                 Not Available
## 2020                                     Below the national average
## 2021                                   Same as the national average
## 2022                                     Below the national average
## 2023                                   Same as the national average
## 2024                                   Same as the national average
## 2025                                                  Not Available
## 2026                                   Same as the national average
## 2027                               16  Same as the national average
## 2028                                   Same as the national average
## 2029                                   Same as the national average
## 2030                                                  Not Available
## 2031                               16                 Not Available
## 2032                                     Above the national average
## 2033                                                  Not Available
## 2034                                                  Not Available
## 2035                                   Same as the national average
## 2036                               19                 Not Available
## 2037                                   Same as the national average
## 2038                                     Below the national average
## 2039                                   Same as the national average
## 2040                                                  Not Available
## 2041                                     Below the national average
## 2042                                     Below the national average
## 2043                               16                 Not Available
## 2044                                   Same as the national average
## 2045                                   Same as the national average
## 2046                                   Same as the national average
## 2047                                   Same as the national average
## 2048                                   Same as the national average
## 2049                               16                 Not Available
## 2050                               16                 Not Available
## 2051                                   Same as the national average
## 2052                                   Same as the national average
## 2053                               16                 Not Available
## 2054                                   Same as the national average
## 2055                                   Same as the national average
## 2056                                   Same as the national average
## 2057                               16                 Not Available
## 2058                                   Same as the national average
## 2059                                     Above the national average
## 2060                                   Same as the national average
## 2061                               16                 Not Available
## 2062                               19                 Not Available
## 2063                                                  Not Available
## 2064                                     Above the national average
## 2065                                     Below the national average
## 2066                                   Same as the national average
## 2067                               16                 Not Available
## 2068                                   Same as the national average
## 2069                                   Same as the national average
## 2070                                   Same as the national average
## 2071                               16                 Not Available
## 2072                                   Same as the national average
## 2073                                     Above the national average
## 2074                                   Same as the national average
## 2075                               16                 Not Available
## 2076                               19                 Not Available
## 2077                                     Below the national average
## 2078                                   Same as the national average
## 2079                                   Same as the national average
## 2080                               16                 Not Available
## 2081                               17  Same as the national average
## 2082                                   Same as the national average
## 2083                               16                 Not Available
## 2084                                   Same as the national average
## 2085                                   Same as the national average
## 2086                                                  Not Available
## 2087                                   Same as the national average
## 2088                               16                 Not Available
## 2089                               17  Same as the national average
## 2090                               19                 Not Available
## 2091                                   Same as the national average
## 2092                                   Same as the national average
## 2093                                   Same as the national average
## 2094                               19                 Not Available
## 2095                                     Above the national average
## 2096                                   Same as the national average
## 2097                                     Above the national average
## 2098                               16                 Not Available
## 2099                                   Same as the national average
## 2100                                     Below the national average
## 2101                                   Same as the national average
## 2102                                   Same as the national average
## 2103                                                  Not Available
## 2104                                   Same as the national average
## 2105                                     Below the national average
## 2106                               16                 Not Available
## 2107                               16                 Not Available
## 2108                                   Same as the national average
## 2109                               19                 Not Available
## 2110                               16                 Not Available
## 2111                               19                 Not Available
## 2112                                   Same as the national average
## 2113                                                  Not Available
## 2114                               16                 Not Available
## 2115                                   Same as the national average
## 2116                                5                 Not Available
## 2117                                   Same as the national average
## 2118                                   Same as the national average
## 2119                                   Same as the national average
## 2120                                   Same as the national average
## 2121                                   Same as the national average
## 2122                                                  Not Available
## 2123                                   Same as the national average
## 2124                                   Same as the national average
## 2125                                   Same as the national average
## 2126                               19                 Not Available
## 2127                               16                 Not Available
## 2128                                     Above the national average
## 2129                               16                 Not Available
## 2130                                     Below the national average
## 2131                                   Same as the national average
## 2132                               19                 Not Available
## 2133                                   Same as the national average
## 2134                                   Same as the national average
## 2135                                   Same as the national average
## 2136                                   Same as the national average
## 2137                                   Same as the national average
## 2138                               19                 Not Available
## 2139                               19                 Not Available
## 2140                               19                 Not Available
## 2141                               19                 Not Available
## 2142                               16                 Not Available
## 2143                                   Same as the national average
## 2144                               16                 Not Available
## 2145                               19                 Not Available
## 2146                                     Below the national average
## 2147                                   Same as the national average
## 2148                                   Same as the national average
## 2149                                                  Not Available
## 2150                                     Above the national average
## 2151                                   Same as the national average
## 2152                               19                 Not Available
## 2153                                     Below the national average
## 2154                                   Same as the national average
## 2155                               16                 Not Available
## 2156                                   Same as the national average
## 2157                               19                 Not Available
## 2158                                     Below the national average
## 2159                                     Below the national average
## 2160                                     Above the national average
## 2161                                   Same as the national average
## 2162                               19                 Not Available
## 2163                               16                 Not Available
## 2164                                   Same as the national average
## 2165                               16  Same as the national average
## 2166                                     Above the national average
## 2167                                5                 Not Available
## 2168                                   Same as the national average
## 2169                               19                 Not Available
## 2170                                     Below the national average
## 2171                                   Same as the national average
## 2172                                   Same as the national average
## 2173                                   Same as the national average
## 2174                                   Same as the national average
## 2175                                   Same as the national average
## 2176                               19                 Not Available
## 2177                                                  Not Available
## 2178                                   Same as the national average
## 2179                                   Same as the national average
## 2180                                     Below the national average
## 2181                                   Same as the national average
## 2182                               16                 Not Available
## 2183                                   Same as the national average
## 2184                               19                 Not Available
## 2185                               19                 Not Available
## 2186                               16                 Not Available
## 2187                               16                 Not Available
## 2188                               16  Same as the national average
## 2189                                   Same as the national average
## 2190                                     Above the national average
## 2191                                   Same as the national average
## 2192                               16  Same as the national average
## 2193                                   Same as the national average
## 2194                               16                 Not Available
## 2195                                   Same as the national average
## 2196                               19                 Not Available
## 2197                                   Same as the national average
## 2198                               16                 Not Available
## 2199                                     Above the national average
## 2200                               19                 Not Available
## 2201                                   Same as the national average
## 2202                               16                 Not Available
## 2203                               16                 Not Available
## 2204                                     Below the national average
## 2205                                   Same as the national average
## 2206                               19                 Not Available
## 2207                                   Same as the national average
## 2208                                   Same as the national average
## 2209                                   Same as the national average
## 2210                               19                 Not Available
## 2211                                     Below the national average
## 2212                                     Below the national average
## 2213                               16                 Not Available
## 2214                               17  Same as the national average
## 2215                                     Below the national average
## 2216                                   Same as the national average
## 2217                                   Same as the national average
## 2218                                   Same as the national average
## 2219                               17                 Not Available
## 2220                                   Same as the national average
## 2221                                   Same as the national average
## 2222                                   Same as the national average
## 2223                                                  Not Available
## 2224                                   Same as the national average
## 2225                               19                 Not Available
## 2226                                   Same as the national average
## 2227                                                  Not Available
## 2228                                                  Not Available
## 2229                                     Below the national average
## 2230                                   Same as the national average
## 2231                               16                 Not Available
## 2232                                   Same as the national average
## 2233                                   Same as the national average
## 2234                               16                 Not Available
## 2235                               16                 Not Available
## 2236                                   Same as the national average
## 2237                                                  Not Available
## 2238                               16                 Not Available
## 2239                                   Same as the national average
## 2240                               16                 Not Available
## 2241                               19                 Not Available
## 2242                                   Same as the national average
## 2243                                   Same as the national average
## 2244                                   Same as the national average
## 2245                                     Below the national average
## 2246                               16                 Not Available
## 2247                                     Above the national average
## 2248                                                  Not Available
## 2249                                   Same as the national average
## 2250                               19                 Not Available
## 2251                                   Same as the national average
## 2252                                     Above the national average
## 2253                                   Same as the national average
## 2254                                   Same as the national average
## 2255                               19                 Not Available
## 2256                               16                 Not Available
## 2257                               17  Same as the national average
## 2258                                                  Not Available
## 2259                               19                 Not Available
## 2260                                     Below the national average
## 2261                                   Same as the national average
## 2262                                   Same as the national average
## 2263                                   Same as the national average
## 2264                                   Same as the national average
## 2265                                     Above the national average
## 2266                               19                 Not Available
## 2267                               19                 Not Available
## 2268                                   Same as the national average
## 2269                               16                 Not Available
## 2270                               16                 Not Available
## 2271                                                  Not Available
## 2272                                   Same as the national average
## 2273                                   Same as the national average
## 2274                                   Same as the national average
## 2275                               19                 Not Available
## 2276                                   Same as the national average
## 2277                                   Same as the national average
## 2278                                   Same as the national average
## 2279                               16                 Not Available
## 2280                                     Below the national average
## 2281                               16                 Not Available
## 2282                                     Below the national average
## 2283                                   Same as the national average
## 2284                               16                 Not Available
## 2285                                   Same as the national average
## 2286                                     Above the national average
## 2287                               19                 Not Available
## 2288                               16                 Not Available
## 2289                                   Same as the national average
## 2290                                   Same as the national average
## 2291                                   Same as the national average
## 2292                                   Same as the national average
## 2293                                                  Not Available
## 2294                                   Same as the national average
## 2295                               16                 Not Available
## 2296                               16                 Not Available
## 2297                                   Same as the national average
## 2298                               16                 Not Available
## 2299                                     Above the national average
## 2300                               16                 Not Available
## 2301                                   Same as the national average
## 2302                                   Same as the national average
## 2303                                   Same as the national average
## 2304                                                  Not Available
## 2305                               19                 Not Available
## 2306                               19                 Not Available
## 2307                               19                 Not Available
## 2308                                   Same as the national average
## 2309                                     Below the national average
## 2310                                   Same as the national average
## 2311                               16                 Not Available
## 2312                                   Same as the national average
## 2313                                                  Not Available
## 2314                                   Same as the national average
## 2315                                                  Not Available
## 2316                               16                 Not Available
## 2317                                     Above the national average
## 2318                               19                 Not Available
## 2319                               16                 Not Available
## 2320                                5                 Not Available
## 2321                                5                 Not Available
## 2322                                     Above the national average
## 2323                                   Same as the national average
## 2324                               16                 Not Available
## 2325                                   Same as the national average
## 2326                                   Same as the national average
## 2327                                                  Not Available
## 2328                                     Above the national average
## 2329                               16                 Not Available
## 2330                               16                 Not Available
## 2331                               16                 Not Available
## 2332                               19                 Not Available
## 2333                               19                 Not Available
## 2334                                   Same as the national average
## 2335                               16  Same as the national average
## 2336                               16                 Not Available
## 2337                               19                 Not Available
## 2338                                   Same as the national average
## 2339                               16                 Not Available
## 2340                               16  Same as the national average
## 2341                                                  Not Available
## 2342                               16                 Not Available
## 2343                               16                 Not Available
## 2344                                   Same as the national average
## 2345                               19                 Not Available
## 2346                                                  Not Available
## 2347                                     Above the national average
## 2348                                     Above the national average
## 2349                               16                 Not Available
## 2350                                     Below the national average
## 2351                                     Above the national average
## 2352                               16  Same as the national average
## 2353                                                  Not Available
## 2354                                   Same as the national average
## 2355                               19                 Not Available
## 2356                                   Same as the national average
## 2357                                                  Not Available
## 2358                                     Below the national average
## 2359                                   Same as the national average
## 2360                               19                 Not Available
## 2361                                   Same as the national average
## 2362                                   Same as the national average
## 2363                                   Same as the national average
## 2364                                   Same as the national average
## 2365                                   Same as the national average
## 2366                               19                 Not Available
## 2367                               16                 Not Available
## 2368                                   Same as the national average
## 2369                               19                 Not Available
## 2370                               16                 Not Available
## 2371                                     Above the national average
## 2372                                   Same as the national average
## 2373                                   Same as the national average
## 2374                               19                 Not Available
## 2375                                     Below the national average
## 2376                                                  Not Available
## 2377                                   Same as the national average
## 2378                               16                 Not Available
## 2379                               16                 Not Available
## 2380                                     Above the national average
## 2381                                                  Not Available
## 2382                               17  Same as the national average
## 2383                               19                 Not Available
## 2384                               19                 Not Available
## 2385                                   Same as the national average
## 2386                                   Same as the national average
## 2387                                     Below the national average
## 2388                               17                 Not Available
## 2389                                   Same as the national average
## 2390                               19                 Not Available
## 2391                                   Same as the national average
## 2392                                                  Not Available
## 2393                                                  Not Available
## 2394                                   Same as the national average
## 2395                               19                 Not Available
## 2396                               19                 Not Available
## 2397                               16                 Not Available
## 2398                                   Same as the national average
## 2399                                   Same as the national average
## 2400                               16                 Not Available
## 2401                                   Same as the national average
## 2402                               19                 Not Available
## 2403                               16                 Not Available
## 2404                               17                 Not Available
## 2405                               16  Same as the national average
## 2406                                   Same as the national average
## 2407                                     Above the national average
## 2408                                   Same as the national average
## 2409                                                  Not Available
## 2410                               19                 Not Available
## 2411                                   Same as the national average
## 2412                               16                 Not Available
## 2413                                   Same as the national average
## 2414                               16                 Not Available
## 2415                               17  Same as the national average
## 2416                                                  Not Available
## 2417                                   Same as the national average
## 2418                               16                 Not Available
## 2419                               19                 Not Available
## 2420                                   Same as the national average
## 2421                                   Same as the national average
## 2422                                   Same as the national average
## 2423                                   Same as the national average
## 2424                               16                 Not Available
## 2425                                     Above the national average
## 2426                               19                 Not Available
## 2427                                   Same as the national average
## 2428                               19                 Not Available
## 2429                               16                 Not Available
## 2430                               16                 Not Available
## 2431                               16                 Not Available
## 2432                               19                 Not Available
## 2433                               16                 Not Available
## 2434                                   Same as the national average
## 2435                                   Same as the national average
## 2436                                   Same as the national average
## 2437                               16                 Not Available
## 2438                               19                 Not Available
## 2439                                   Same as the national average
## 2440                               19                 Not Available
## 2441                                   Same as the national average
## 2442                               16                 Not Available
## 2443                                   Same as the national average
## 2444                               19                 Not Available
## 2445                                                  Not Available
## 2446                                     Above the national average
## 2447                                5                 Not Available
## 2448                                     Below the national average
## 2449                               19                 Not Available
## 2450                                   Same as the national average
## 2451                                   Same as the national average
## 2452                                   Same as the national average
## 2453                                   Same as the national average
## 2454                                   Same as the national average
## 2455                                     Above the national average
## 2456                               19                 Not Available
## 2457                                     Above the national average
## 2458                               16                 Not Available
## 2459                                   Same as the national average
## 2460                                   Same as the national average
## 2461                                     Above the national average
## 2462                                   Same as the national average
## 2463                                                  Not Available
## 2464                                   Same as the national average
## 2465                               16                 Not Available
## 2466                                                  Not Available
## 2467                                     Below the national average
## 2468                               19                 Not Available
## 2469                                   Same as the national average
## 2470                                   Same as the national average
## 2471                                   Same as the national average
## 2472                               19                 Not Available
## 2473                               16                 Not Available
## 2474                               16                 Not Available
## 2475                                   Same as the national average
## 2476                                   Same as the national average
## 2477                                   Same as the national average
## 2478                                   Same as the national average
## 2479                               16                 Not Available
## 2480                                   Same as the national average
## 2481                                     Above the national average
## 2482                                   Same as the national average
## 2483                                                  Not Available
## 2484                                     Above the national average
## 2485                               16                 Not Available
## 2486                                   Same as the national average
## 2487                               19                 Not Available
## 2488                                                  Not Available
## 2489                               19                 Not Available
## 2490                                   Same as the national average
## 2491                                   Same as the national average
## 2492                                   Same as the national average
## 2493                               19                 Not Available
## 2494                               19                 Not Available
## 2495                                   Same as the national average
## 2496                               16                 Not Available
## 2497                               19                 Not Available
## 2498                                   Same as the national average
## 2499                               19                 Not Available
## 2500                                   Same as the national average
## 2501                               17  Same as the national average
## 2502                               17  Same as the national average
## 2503                                     Above the national average
## 2504                                   Same as the national average
## 2505                                   Same as the national average
## 2506                               19                 Not Available
## 2507                                     Below the national average
## 2508                                   Same as the national average
## 2509                                   Same as the national average
## 2510                                   Same as the national average
## 2511                                   Same as the national average
## 2512                                     Below the national average
## 2513                                5                 Not Available
## 2514                                   Same as the national average
## 2515                                   Same as the national average
## 2516                                     Above the national average
## 2517                                     Below the national average
## 2518                               16                 Not Available
## 2519                                     Above the national average
## 2520                               19                 Not Available
## 2521                                   Same as the national average
## 2522                                   Same as the national average
## 2523                                   Same as the national average
## 2524                               19                 Not Available
## 2525                                   Same as the national average
## 2526                                   Same as the national average
## 2527                                   Same as the national average
## 2528                                   Same as the national average
## 2529                               16                 Not Available
## 2530                                   Same as the national average
## 2531                               17  Same as the national average
## 2532                               16                 Not Available
## 2533                               17  Same as the national average
## 2534                                   Same as the national average
## 2535                                     Below the national average
## 2536                                                  Not Available
## 2537                                   Same as the national average
## 2538                               19                 Not Available
## 2539                               19                 Not Available
## 2540                               19                 Not Available
## 2541                                   Same as the national average
## 2542                                   Same as the national average
## 2543                                5                 Not Available
## 2544                                                  Not Available
## 2545                                   Same as the national average
## 2546                               16                 Not Available
## 2547                               19                 Not Available
## 2548                                   Same as the national average
## 2549                                   Same as the national average
## 2550                               19                 Not Available
## 2551                                   Same as the national average
## 2552                               19                 Not Available
## 2553                                   Same as the national average
## 2554                               16                 Not Available
## 2555                                     Above the national average
## 2556                               16                 Not Available
## 2557                               19                 Not Available
## 2558                               19                 Not Available
## 2559                               16                 Not Available
## 2560                                   Same as the national average
## 2561                               16                 Not Available
## 2562                                     Above the national average
## 2563                                                  Not Available
## 2564                                   Same as the national average
## 2565                                   Same as the national average
## 2566                               16                 Not Available
## 2567                                   Same as the national average
## 2568                                   Same as the national average
## 2569                               16                 Not Available
## 2570                                   Same as the national average
## 2571                                   Same as the national average
## 2572                                   Same as the national average
## 2573                               19                 Not Available
## 2574                                     Above the national average
## 2575                                   Same as the national average
## 2576                                   Same as the national average
## 2577                                     Below the national average
## 2578                                   Same as the national average
## 2579                                   Same as the national average
## 2580                                                  Not Available
## 2581                                     Below the national average
## 2582                               16                 Not Available
## 2583                               19                 Not Available
## 2584                                   Same as the national average
## 2585                               19                 Not Available
## 2586                                     Below the national average
## 2587                               16                 Not Available
## 2588                               16                 Not Available
## 2589                                   Same as the national average
## 2590                                   Same as the national average
## 2591                                                  Not Available
## 2592                                   Same as the national average
## 2593                                   Same as the national average
## 2594                               17  Same as the national average
## 2595                               16                 Not Available
## 2596                               19                 Not Available
## 2597                                   Same as the national average
## 2598                                     Below the national average
## 2599                                                  Not Available
## 2600                               16                 Not Available
## 2601                                   Same as the national average
## 2602                                   Same as the national average
## 2603                               16                 Not Available
## 2604                                                  Not Available
## 2605                                   Same as the national average
## 2606                               19                 Not Available
## 2607                               19                 Not Available
## 2608                                   Same as the national average
## 2609                               19                 Not Available
## 2610                                     Below the national average
## 2611                                   Same as the national average
## 2612                                   Same as the national average
## 2613                                   Same as the national average
## 2614                                     Below the national average
## 2615                                   Same as the national average
## 2616                               16                 Not Available
## 2617                               16                 Not Available
## 2618                                   Same as the national average
## 2619                                   Same as the national average
## 2620                                   Same as the national average
## 2621                                   Same as the national average
## 2622                                     Above the national average
## 2623                                   Same as the national average
## 2624                               16                 Not Available
## 2625                               19                 Not Available
## 2626                                   Same as the national average
## 2627                               16                 Not Available
## 2628                                     Below the national average
## 2629                                                  Not Available
## 2630                                   Same as the national average
## 2631                               19                 Not Available
## 2632                               19                 Not Available
## 2633                                   Same as the national average
## 2634                                   Same as the national average
## 2635                                   Same as the national average
## 2636                               16                 Not Available
## 2637                                   Same as the national average
## 2638                                     Above the national average
## 2639                                   Same as the national average
## 2640                                                  Not Available
## 2641                                     Below the national average
## 2642                                   Same as the national average
## 2643                                     Below the national average
## 2644                                   Same as the national average
## 2645                                   Same as the national average
## 2646                                   Same as the national average
## 2647                                   Same as the national average
## 2648                               19                 Not Available
## 2649                                   Same as the national average
## 2650                                     Above the national average
## 2651                                   Same as the national average
## 2652                                   Same as the national average
## 2653                               16  Same as the national average
## 2654                                   Same as the national average
## 2655                               19                 Not Available
## 2656                                     Above the national average
## 2657                                   Same as the national average
## 2658                                   Same as the national average
## 2659                                     Above the national average
## 2660                               16                 Not Available
## 2661                               19                 Not Available
## 2662                               16                 Not Available
## 2663                                   Same as the national average
## 2664                                   Same as the national average
## 2665                                   Same as the national average
## 2666                                   Same as the national average
## 2667                               16                 Not Available
## 2668                               16                 Not Available
## 2669                                   Same as the national average
## 2670                                                  Not Available
## 2671                                   Same as the national average
## 2672                                   Same as the national average
## 2673                                5                 Not Available
## 2674                                   Same as the national average
## 2675                                5                 Not Available
## 2676                                                  Not Available
## 2677                                     Below the national average
## 2678                               19                 Not Available
## 2679                                   Same as the national average
## 2680                                   Same as the national average
## 2681                               19                 Not Available
## 2682                                   Same as the national average
## 2683                               19                 Not Available
## 2684                                                  Not Available
## 2685                                     Above the national average
## 2686                                                  Not Available
## 2687                                   Same as the national average
## 2688                                   Same as the national average
## 2689                               19                 Not Available
## 2690                               19                 Not Available
## 2691                                     Above the national average
## 2692                                   Same as the national average
## 2693                                                  Not Available
## 2694                                   Same as the national average
## 2695                               17  Same as the national average
## 2696                                   Same as the national average
## 2697                                     Above the national average
## 2698                               19                 Not Available
## 2699                               16  Same as the national average
## 2700                                   Same as the national average
## 2701                                   Same as the national average
## 2702                                                  Not Available
## 2703                               19                 Not Available
## 2704                                   Same as the national average
## 2705                                   Same as the national average
## 2706                               16                 Not Available
## 2707                                     Above the national average
## 2708                               19                 Not Available
## 2709                                   Same as the national average
## 2710                                   Same as the national average
## 2711                               16                 Not Available
## 2712                               16                 Not Available
## 2713                                   Same as the national average
## 2714                                   Same as the national average
## 2715                                   Same as the national average
## 2716                                   Same as the national average
## 2717                               16  Same as the national average
## 2718                                                  Not Available
## 2719                                   Same as the national average
## 2720                                   Same as the national average
## 2721                                     Above the national average
## 2722                                   Same as the national average
## 2723                                     Above the national average
## 2724                                   Same as the national average
## 2725                               19                 Not Available
## 2726                                   Same as the national average
## 2727                                   Same as the national average
## 2728                                     Below the national average
## 2729                               16                 Not Available
## 2730                               16                 Not Available
## 2731                               16                 Not Available
## 2732                               16                 Not Available
## 2733                                     Below the national average
## 2734                               16                 Not Available
## 2735                                     Above the national average
## 2736                                   Same as the national average
## 2737                                   Same as the national average
## 2738                               17                 Not Available
## 2739                                   Same as the national average
## 2740                               16                 Not Available
## 2741                                   Same as the national average
## 2742                                   Same as the national average
## 2743                               16                 Not Available
## 2744                               17  Same as the national average
## 2745                                   Same as the national average
## 2746                                     Below the national average
## 2747                               16                 Not Available
## 2748                               19                 Not Available
## 2749                                   Same as the national average
## 2750                                   Same as the national average
## 2751                                   Same as the national average
## 2752                                   Same as the national average
## 2753                               19                 Not Available
## 2754                                   Same as the national average
## 2755                                   Same as the national average
## 2756                                   Same as the national average
## 2757                                   Same as the national average
## 2758                                   Same as the national average
## 2759                               16                 Not Available
## 2760                                   Same as the national average
## 2761                                   Same as the national average
## 2762                                   Same as the national average
## 2763                               19                 Not Available
## 2764                                   Same as the national average
## 2765                                   Same as the national average
## 2766                                   Same as the national average
## 2767                                   Same as the national average
## 2768                                   Same as the national average
## 2769                               17  Same as the national average
## 2770                                     Above the national average
## 2771                               16                 Not Available
## 2772                                                  Not Available
## 2773                                                  Not Available
## 2774                                   Same as the national average
## 2775                               19                 Not Available
## 2776                                   Same as the national average
## 2777                                   Same as the national average
## 2778                                   Same as the national average
## 2779                                   Same as the national average
## 2780                                   Same as the national average
## 2781                                   Same as the national average
## 2782                                                  Not Available
## 2783                                   Same as the national average
## 2784                                                  Not Available
## 2785                                   Same as the national average
## 2786                               19                 Not Available
## 2787                                     Above the national average
## 2788                                   Same as the national average
## 2789                                                  Not Available
## 2790                                   Same as the national average
## 2791                                   Same as the national average
## 2792                                     Below the national average
## 2793                                   Same as the national average
## 2794                                                  Not Available
## 2795                               16                 Not Available
## 2796                                     Above the national average
## 2797                                     Above the national average
## 2798                                     Below the national average
## 2799                                     Above the national average
## 2800                                   Same as the national average
## 2801                                   Same as the national average
## 2802                               19                 Not Available
## 2803                                     Below the national average
## 2804                                     Below the national average
## 2805                                                  Not Available
## 2806                                5                 Not Available
## 2807                                   Same as the national average
## 2808                                     Below the national average
## 2809                                     Below the national average
## 2810                                   Same as the national average
## 2811                                   Same as the national average
## 2812                                                  Not Available
## 2813                                     Above the national average
## 2814                               17  Same as the national average
## 2815                               16                 Not Available
## 2816                                   Same as the national average
## 2817                               19                 Not Available
## 2818                                     Above the national average
## 2819                                     Above the national average
## 2820                               19                 Not Available
## 2821                               19                 Not Available
## 2822                                   Same as the national average
## 2823                                     Above the national average
## 2824                                                  Not Available
## 2825                                   Same as the national average
## 2826                               16                 Not Available
## 2827                               19                 Not Available
## 2828                               19                 Not Available
## 2829                               16                 Not Available
## 2830                                                  Not Available
## 2831                                   Same as the national average
## 2832                               19                 Not Available
## 2833                                   Same as the national average
## 2834                                   Same as the national average
## 2835                               16                 Not Available
## 2836                                   Same as the national average
## 2837                               16  Same as the national average
## 2838                                   Same as the national average
## 2839                                   Same as the national average
## 2840                                   Same as the national average
## 2841                                   Same as the national average
## 2842                                   Same as the national average
## 2843                               19                 Not Available
## 2844                                   Same as the national average
## 2845                               19                 Not Available
## 2846                               19                 Not Available
## 2847                               19                 Not Available
## 2848                                     Above the national average
## 2849                               17  Same as the national average
## 2850                                   Same as the national average
## 2851                               16                 Not Available
## 2852                                   Same as the national average
## 2853                               16                 Not Available
## 2854                                                  Not Available
## 2855                                   Same as the national average
## 2856                                   Same as the national average
## 2857                               17                 Not Available
## 2858                                   Same as the national average
## 2859                                   Same as the national average
## 2860                                   Same as the national average
## 2861                                   Same as the national average
## 2862                               16                 Not Available
## 2863                                     Below the national average
## 2864                                   Same as the national average
## 2865                                   Same as the national average
## 2866                                     Above the national average
## 2867                               16                 Not Available
## 2868                                     Above the national average
## 2869                                   Same as the national average
## 2870                               16                 Not Available
## 2871                                   Same as the national average
## 2872                                     Below the national average
## 2873                                     Above the national average
## 2874                               16                 Not Available
## 2875                                   Same as the national average
## 2876                                   Same as the national average
## 2877                                   Same as the national average
## 2878                                   Same as the national average
## 2879                               16                 Not Available
## 2880                               19                 Not Available
## 2881                                                  Not Available
## 2882                               16                 Not Available
## 2883                                   Same as the national average
## 2884                               19                 Not Available
## 2885                                   Same as the national average
## 2886                                     Below the national average
## 2887                                   Same as the national average
## 2888                               16                 Not Available
## 2889                               16                 Not Available
## 2890                                     Above the national average
## 2891                               16                 Not Available
## 2892                                     Below the national average
## 2893                                   Same as the national average
## 2894                               16                 Not Available
## 2895                                   Same as the national average
## 2896                                   Same as the national average
## 2897                                     Below the national average
## 2898                                   Same as the national average
## 2899                                   Same as the national average
## 2900                               16                 Not Available
## 2901                                   Same as the national average
## 2902                               16                 Not Available
## 2903                               16  Same as the national average
## 2904                                                  Not Available
## 2905                                     Above the national average
## 2906                               17                 Not Available
## 2907                                     Below the national average
## 2908                                   Same as the national average
## 2909                                   Same as the national average
## 2910                                5                 Not Available
## 2911                                   Same as the national average
## 2912                                   Same as the national average
## 2913                                   Same as the national average
## 2914                               17  Same as the national average
## 2915                                     Above the national average
## 2916                                     Above the national average
## 2917                                   Same as the national average
## 2918                                   Same as the national average
## 2919                                     Above the national average
## 2920                                   Same as the national average
## 2921                                   Same as the national average
## 2922                                   Same as the national average
## 2923                                     Below the national average
## 2924                                   Same as the national average
## 2925                                   Same as the national average
## 2926                               19                 Not Available
## 2927                               16  Same as the national average
## 2928                                   Same as the national average
## 2929                                     Above the national average
## 2930                                   Same as the national average
## 2931                               16                 Not Available
## 2932                                     Above the national average
## 2933                                   Same as the national average
## 2934                               19                 Not Available
## 2935                                                  Not Available
## 2936                                   Same as the national average
## 2937                                   Same as the national average
## 2938                               16                 Not Available
## 2939                                   Same as the national average
## 2940                                   Same as the national average
## 2941                                     Above the national average
## 2942                               16                 Not Available
## 2943                                   Same as the national average
## 2944                                                  Not Available
## 2945                                   Same as the national average
## 2946                                                  Not Available
## 2947                                   Same as the national average
## 2948                                   Same as the national average
## 2949                               16                 Not Available
## 2950                               19                 Not Available
## 2951                                   Same as the national average
## 2952                               16                 Not Available
## 2953                                   Same as the national average
## 2954                                     Above the national average
## 2955                                   Same as the national average
## 2956                                5                 Not Available
## 2957                               19                 Not Available
## 2958                                   Same as the national average
## 2959                               16                 Not Available
## 2960                                   Same as the national average
## 2961                                     Above the national average
## 2962                                   Same as the national average
## 2963                               16                 Not Available
## 2964                                   Same as the national average
## 2965                                   Same as the national average
## 2966                               19                 Not Available
## 2967                                     Above the national average
## 2968                                   Same as the national average
## 2969                                   Same as the national average
## 2970                                   Same as the national average
## 2971                                     Below the national average
## 2972                                   Same as the national average
## 2973                                   Same as the national average
## 2974                                   Same as the national average
## 2975                               16                 Not Available
## 2976                               17  Same as the national average
## 2977                                     Above the national average
## 2978                                                  Not Available
## 2979                                   Same as the national average
## 2980                                   Same as the national average
## 2981                                   Same as the national average
## 2982                                   Same as the national average
## 2983                                   Same as the national average
## 2984                                                  Not Available
## 2985                                     Below the national average
## 2986                                     Below the national average
## 2987                                   Same as the national average
## 2988                               16                 Not Available
## 2989                                     Above the national average
## 2990                                   Same as the national average
## 2991                                   Same as the national average
## 2992                                   Same as the national average
## 2993                                                  Not Available
## 2994                               16                 Not Available
## 2995                                   Same as the national average
## 2996                               16                 Not Available
## 2997                               19                 Not Available
## 2998                                                  Not Available
## 2999                                     Above the national average
## 3000                                     Below the national average
## 3001                                5                 Not Available
## 3002                                   Same as the national average
## 3003                                   Same as the national average
## 3004                                                  Not Available
## 3005                                   Same as the national average
## 3006                                   Same as the national average
## 3007                               19                 Not Available
## 3008                                                  Not Available
## 3009                                   Same as the national average
## 3010                                   Same as the national average
## 3011                               16  Same as the national average
## 3012                                     Below the national average
## 3013                               16                 Not Available
## 3014                                   Same as the national average
## 3015                               19                 Not Available
## 3016                                   Same as the national average
## 3017                               16                 Not Available
## 3018                                   Same as the national average
## 3019                                   Same as the national average
## 3020                                   Same as the national average
## 3021                                     Below the national average
## 3022                               19                 Not Available
## 3023                               16                 Not Available
## 3024                                   Same as the national average
## 3025                                   Same as the national average
## 3026                                   Same as the national average
## 3027                               19                 Not Available
## 3028                                   Same as the national average
## 3029                                   Same as the national average
## 3030                                                  Not Available
## 3031                                   Same as the national average
## 3032                                     Above the national average
## 3033                                   Same as the national average
## 3034                                   Same as the national average
## 3035                                   Same as the national average
## 3036                                   Same as the national average
## 3037                               19                 Not Available
## 3038                                   Same as the national average
## 3039                               17                 Not Available
## 3040                                     Above the national average
## 3041                                   Same as the national average
## 3042                                   Same as the national average
## 3043                               16                 Not Available
## 3044                                   Same as the national average
## 3045                               19                 Not Available
## 3046                                   Same as the national average
## 3047                                   Same as the national average
## 3048                                   Same as the national average
## 3049                               19                 Not Available
## 3050                                     Above the national average
## 3051                                   Same as the national average
## 3052                                   Same as the national average
## 3053                                   Same as the national average
## 3054                                   Same as the national average
## 3055                                     Below the national average
## 3056                                   Same as the national average
## 3057                               19                 Not Available
## 3058                                   Same as the national average
## 3059                                     Below the national average
## 3060                               19                 Not Available
## 3061                               19                 Not Available
## 3062                                                  Not Available
## 3063                                   Same as the national average
## 3064                                   Same as the national average
## 3065                                   Same as the national average
## 3066                                   Same as the national average
## 3067                                   Same as the national average
## 3068                               19                 Not Available
## 3069                                   Same as the national average
## 3070                                   Same as the national average
## 3071                               17  Same as the national average
## 3072                                                  Not Available
## 3073                                   Same as the national average
## 3074                                     Above the national average
## 3075                                   Same as the national average
## 3076                                   Same as the national average
## 3077                               16                 Not Available
## 3078                                   Same as the national average
## 3079                                     Above the national average
## 3080                                   Same as the national average
## 3081                                   Same as the national average
## 3082                                   Same as the national average
## 3083                                                  Not Available
## 3084                               19                 Not Available
## 3085                                   Same as the national average
## 3086                                   Same as the national average
## 3087                                   Same as the national average
## 3088                               19                 Not Available
## 3089                                   Same as the national average
## 3090                                   Same as the national average
## 3091                                   Same as the national average
## 3092                                   Same as the national average
## 3093                                   Same as the national average
## 3094                               16  Same as the national average
## 3095                                   Same as the national average
## 3096                                   Same as the national average
## 3097                                   Same as the national average
## 3098                               17  Same as the national average
## 3099                                   Same as the national average
## 3100                                   Same as the national average
## 3101                                   Same as the national average
## 3102                                   Same as the national average
## 3103                                   Same as the national average
## 3104                                   Same as the national average
## 3105                               16                 Not Available
## 3106                                   Same as the national average
## 3107                               16                 Not Available
## 3108                                     Below the national average
## 3109                                   Same as the national average
## 3110                               19                 Not Available
## 3111                               16                 Not Available
## 3112                                   Same as the national average
## 3113                                     Above the national average
## 3114                                     Below the national average
## 3115                               16                 Not Available
## 3116                               19                 Not Available
## 3117                               19                 Not Available
## 3118                                     Below the national average
## 3119                                                  Not Available
## 3120                                   Same as the national average
## 3121                                   Same as the national average
## 3122                                   Same as the national average
## 3123                               19                 Not Available
## 3124                                   Same as the national average
## 3125                                   Same as the national average
## 3126                                     Above the national average
## 3127                                   Same as the national average
## 3128                                   Same as the national average
## 3129                               16                 Not Available
## 3130                               19                 Not Available
## 3131                               19                 Not Available
## 3132                                   Same as the national average
## 3133                                   Same as the national average
## 3134                               16  Same as the national average
## 3135                               19                 Not Available
## 3136                                   Same as the national average
## 3137                               19                 Not Available
## 3138                               19                 Not Available
## 3139                               19                 Not Available
## 3140                                   Same as the national average
## 3141                                   Same as the national average
## 3142                                   Same as the national average
## 3143                                     Below the national average
## 3144                               16                 Not Available
## 3145                                     Above the national average
## 3146                                   Same as the national average
## 3147                                   Same as the national average
## 3148                                   Same as the national average
## 3149                                   Same as the national average
## 3150                                   Same as the national average
## 3151                                   Same as the national average
## 3152                                   Same as the national average
## 3153                                     Below the national average
## 3154                                                  Not Available
## 3155                               16                 Not Available
## 3156                                   Same as the national average
## 3157                                     Above the national average
## 3158                                   Same as the national average
## 3159                                     Above the national average
## 3160                                   Same as the national average
## 3161                               23    Above the national average
## 3162                                   Same as the national average
## 3163                                   Same as the national average
## 3164                                5                 Not Available
## 3165                                   Same as the national average
## 3166                                   Same as the national average
## 3167                                   Same as the national average
## 3168                                   Same as the national average
## 3169                                     Below the national average
## 3170                                                  Not Available
## 3171                                   Same as the national average
## 3172                                5                 Not Available
## 3173                                   Same as the national average
## 3174                                   Same as the national average
## 3175                               16                 Not Available
## 3176                                   Same as the national average
## 3177                                     Above the national average
## 3178                                   Same as the national average
## 3179                                                  Not Available
## 3180                                   Same as the national average
## 3181                                   Same as the national average
## 3182                                   Same as the national average
## 3183                               19                 Not Available
## 3184                                                  Not Available
## 3185                                   Same as the national average
## 3186                                     Above the national average
## 3187                                     Below the national average
## 3188                                   Same as the national average
## 3189                               16                 Not Available
## 3190                                   Same as the national average
## 3191                               16                 Not Available
## 3192                                     Above the national average
## 3193                                   Same as the national average
## 3194                               17  Same as the national average
## 3195                                   Same as the national average
## 3196                                   Same as the national average
## 3197                               16                 Not Available
## 3198                                   Same as the national average
## 3199                                   Same as the national average
## 3200                                     Below the national average
## 3201                               19                 Not Available
## 3202                                   Same as the national average
## 3203                                   Same as the national average
## 3204                               17                 Not Available
## 3205                                     Below the national average
## 3206                                                  Not Available
## 3207                               19                 Not Available
## 3208                               16                 Not Available
## 3209                                   Same as the national average
## 3210                                     Below the national average
## 3211                                   Same as the national average
## 3212                                   Same as the national average
## 3213                               19                 Not Available
## 3214                               19                 Not Available
## 3215                                     Below the national average
## 3216                               19                 Not Available
## 3217                                   Same as the national average
## 3218                                   Same as the national average
## 3219                                     Below the national average
## 3220                                   Same as the national average
## 3221                               16                 Not Available
## 3222                                   Same as the national average
## 3223                                     Above the national average
## 3224                                   Same as the national average
## 3225                               16                 Not Available
## 3226                                   Same as the national average
## 3227                                   Same as the national average
## 3228                                   Same as the national average
## 3229                                   Same as the national average
## 3230                                     Above the national average
## 3231                                   Same as the national average
## 3232                                5                 Not Available
## 3233                               16                 Not Available
## 3234                                                  Not Available
## 3235                                   Same as the national average
## 3236                                                  Not Available
## 3237                                   Same as the national average
## 3238                                   Same as the national average
## 3239                               16                 Not Available
## 3240                                   Same as the national average
## 3241                                   Same as the national average
## 3242                                   Same as the national average
## 3243                                   Same as the national average
## 3244                                     Above the national average
## 3245                               19                 Not Available
## 3246                                   Same as the national average
## 3247                                   Same as the national average
## 3248                               19                 Not Available
## 3249                                   Same as the national average
## 3250                               16                 Not Available
## 3251                               16                 Not Available
## 3252                                   Same as the national average
## 3253                                   Same as the national average
## 3254                               17  Same as the national average
## 3255                                   Same as the national average
## 3256                                   Same as the national average
## 3257                               19                 Not Available
## 3258                                   Same as the national average
## 3259                               16                 Not Available
## 3260                                   Same as the national average
## 3261                                     Above the national average
## 3262                               17                 Not Available
## 3263                               16                 Not Available
## 3264                               16                 Not Available
## 3265                               19                 Not Available
## 3266                                   Same as the national average
## 3267                                   Same as the national average
## 3268                               19                 Not Available
## 3269                                   Same as the national average
## 3270                               19                 Not Available
## 3271                                   Same as the national average
## 3272                               16                 Not Available
## 3273                                     Above the national average
## 3274                               16                 Not Available
## 3275                               16                 Not Available
## 3276                               16                 Not Available
## 3277                                   Same as the national average
## 3278                               16                 Not Available
## 3279                               19                 Not Available
## 3280                                                  Not Available
## 3281                                   Same as the national average
## 3282                                   Same as the national average
## 3283                                   Same as the national average
## 3284                                   Same as the national average
## 3285                                   Same as the national average
## 3286                               16                 Not Available
## 3287                               19                 Not Available
## 3288                                   Same as the national average
## 3289                                                  Not Available
## 3290                                   Same as the national average
## 3291                                   Same as the national average
## 3292                               16                 Not Available
## 3293                                   Same as the national average
## 3294                                     Above the national average
## 3295                                   Same as the national average
## 3296                               19                 Not Available
## 3297                               16                 Not Available
## 3298                                     Below the national average
## 3299                                   Same as the national average
## 3300                                   Same as the national average
## 3301                                     Below the national average
## 3302                                   Same as the national average
## 3303                               19                 Not Available
## 3304                                     Above the national average
## 3305                                   Same as the national average
## 3306                                                  Not Available
## 3307                                   Same as the national average
## 3308                                   Same as the national average
## 3309                               19                 Not Available
## 3310                                   Same as the national average
## 3311                                   Same as the national average
## 3312                                   Same as the national average
## 3313                                     Above the national average
## 3314                                   Same as the national average
## 3315                                   Same as the national average
## 3316                               19                 Not Available
## 3317                               16                 Not Available
## 3318                                   Same as the national average
## 3319                               16                 Not Available
## 3320                                   Same as the national average
## 3321                                   Same as the national average
## 3322                                   Same as the national average
## 3323                               16                 Not Available
## 3324                                   Same as the national average
## 3325                               19                 Not Available
## 3326                                                  Not Available
## 3327                                   Same as the national average
## 3328                                   Same as the national average
## 3329                                   Same as the national average
## 3330                                   Same as the national average
## 3331                                   Same as the national average
## 3332                                   Same as the national average
## 3333                                     Above the national average
## 3334                                   Same as the national average
## 3335                                   Same as the national average
## 3336                                   Same as the national average
## 3337                                   Same as the national average
## 3338                               16  Same as the national average
## 3339                               16                 Not Available
## 3340                                     Above the national average
## 3341                                     Above the national average
## 3342                                   Same as the national average
## 3343                                   Same as the national average
## 3344                                   Same as the national average
## 3345                                   Same as the national average
## 3346                                     Above the national average
## 3347                                   Same as the national average
## 3348                               19                 Not Available
## 3349                                     Above the national average
## 3350                                     Above the national average
## 3351                               19                 Not Available
## 3352                                   Same as the national average
## 3353                               16                 Not Available
## 3354                               16                 Not Available
## 3355                               19                 Not Available
## 3356                                   Same as the national average
## 3357                                     Above the national average
## 3358                                   Same as the national average
## 3359                                   Same as the national average
## 3360                               19                 Not Available
## 3361                                   Same as the national average
## 3362                                   Same as the national average
## 3363                                   Same as the national average
## 3364                                   Same as the national average
## 3365                                   Same as the national average
## 3366                               16                 Not Available
## 3367                                   Same as the national average
## 3368                                   Same as the national average
## 3369                                   Same as the national average
## 3370                               16                 Not Available
## 3371                                   Same as the national average
## 3372                               16                 Not Available
## 3373                                   Same as the national average
## 3374                               16                 Not Available
## 3375                                   Same as the national average
## 3376                               19                 Not Available
## 3377                               16                 Not Available
## 3378                               16  Same as the national average
## 3379                                   Same as the national average
## 3380                                   Same as the national average
## 3381                               16                 Not Available
## 3382                               16                 Not Available
## 3383                               19                 Not Available
## 3384                               16                 Not Available
## 3385                                   Same as the national average
## 3386                                   Same as the national average
## 3387                               16                 Not Available
## 3388                                   Same as the national average
## 3389                                     Above the national average
## 3390                                   Same as the national average
## 3391                                   Same as the national average
## 3392                               16                 Not Available
## 3393                               16                 Not Available
## 3394                                   Same as the national average
## 3395                                                  Not Available
## 3396                               16                 Not Available
## 3397                                   Same as the national average
## 3398                               19                 Not Available
## 3399                                     Above the national average
## 3400                                   Same as the national average
## 3401                               16                 Not Available
## 3402                               16                 Not Available
## 3403                               19                 Not Available
## 3404                                   Same as the national average
## 3405                               19                 Not Available
## 3406                                     Above the national average
## 3407                                   Same as the national average
## 3408                                   Same as the national average
## 3409                               16  Same as the national average
## 3410                                   Same as the national average
## 3411                               16                 Not Available
## 3412                                   Same as the national average
## 3413                                   Same as the national average
## 3414                               16                 Not Available
## 3415                                     Above the national average
## 3416                               16                 Not Available
## 3417                                   Same as the national average
## 3418                               16                 Not Available
## 3419                                     Below the national average
## 3420                                     Above the national average
## 3421                                   Same as the national average
## 3422                                     Below the national average
## 3423                               16                 Not Available
## 3424                                   Same as the national average
## 3425                                   Same as the national average
## 3426                               16                 Not Available
## 3427                                     Above the national average
## 3428                               16                 Not Available
## 3429                                   Same as the national average
## 3430                                   Same as the national average
## 3431                                   Same as the national average
## 3432                                   Same as the national average
## 3433                                   Same as the national average
## 3434                                   Same as the national average
## 3435                                   Same as the national average
## 3436                                   Same as the national average
## 3437                                   Same as the national average
## 3438                                   Same as the national average
## 3439                                   Same as the national average
## 3440                               17  Same as the national average
## 3441                                                  Not Available
## 3442                                   Same as the national average
## 3443                               19                 Not Available
## 3444                                   Same as the national average
## 3445                                   Same as the national average
## 3446                               19                 Not Available
## 3447                               16                 Not Available
## 3448                               19                 Not Available
##      Mortality_national_comparison_footnote
## 1                                          
## 2                                        19
## 3                                        19
## 4                                          
## 5                                        19
## 6                                          
## 7                                        19
## 8                                        16
## 9                                        19
## 10                                       19
## 11                                       19
## 12                                         
## 13                                       19
## 14                                       19
## 15                                         
## 16                                       19
## 17                                        5
## 18                                       16
## 19                                       19
## 20                                       19
## 21                                        5
## 22                                        5
## 23                                        5
## 24                                       19
## 25                                        5
## 26                                       16
## 27                                       19
## 28                                        5
## 29                                       19
## 30                                        5
## 31                                        5
## 32                                       19
## 33                                       19
## 34                                       19
## 35                                       16
## 36                                       19
## 37                                       19
## 38                                       16
## 39                                       16
## 40                                       19
## 41                                       19
## 42                                        5
## 43                                         
## 44                                       16
## 45                                       19
## 46                                       19
## 47                                        5
## 48                                       19
## 49                                        5
## 50                                       19
## 51                                       19
## 52                                       19
## 53                                       19
## 54                                       19
## 55                                       19
## 56                                        5
## 57                                        5
## 58                                       16
## 59                                       16
## 60                                         
## 61                                       19
## 62                                        5
## 63                                       19
## 64                                         
## 65                                         
## 66                                         
## 67                                         
## 68                                       16
## 69                                         
## 70                                         
## 71                                         
## 72                                         
## 73                                         
## 74                                       16
## 75                                       16
## 76                                         
## 77                                       16
## 78                                         
## 79                                       16
## 80                                         
## 81                                       19
## 82                                       16
## 83                                       19
## 84                                         
## 85                                       19
## 86                                        5
## 87                                         
## 88                                       19
## 89                                        5
## 90                                         
## 91                                         
## 92                                         
## 93                                         
## 94                                         
## 95                                         
## 96                                        5
## 97                                         
## 98                                        5
## 99                                       16
## 100                                        
## 101                                       5
## 102                                        
## 103                                        
## 104                                        
## 105                                        
## 106                                        
## 107                                        
## 108                                        
## 109                                        
## 110                                      16
## 111                                        
## 112                                        
## 113                                        
## 114                                        
## 115                                        
## 116                                      19
## 117                                      19
## 118                                        
## 119                                       5
## 120                                       5
## 121                                        
## 122                                      19
## 123                                        
## 124                                        
## 125                                      16
## 126                                      16
## 127                                      16
## 128                                        
## 129                                      19
## 130                                        
## 131                                        
## 132                                       5
## 133                                        
## 134                                       5
## 135                                        
## 136                                        
## 137                                      16
## 138                                      19
## 139                                        
## 140                                        
## 141                                       5
## 142                                      19
## 143                                      19
## 144                                      16
## 145                                        
## 146                                       5
## 147                                        
## 148                                        
## 149                                        
## 150                                       5
## 151                                        
## 152                                      16
## 153                                        
## 154                                       5
## 155                                        
## 156                                        
## 157                                       5
## 158                                      16
## 159                                      16
## 160                                        
## 161                                      19
## 162                                        
## 163                                        
## 164                                        
## 165                                        
## 166                                      19
## 167                                        
## 168                                        
## 169                                       5
## 170                                        
## 171                                      19
## 172                                        
## 173                                      16
## 174                                        
## 175                                       5
## 176                                        
## 177                                      16
## 178                                      16
## 179                                       5
## 180                                        
## 181                                       5
## 182                                        
## 183                                        
## 184                                      19
## 185                                        
## 186                                        
## 187                                        
## 188                                        
## 189                                        
## 190                                        
## 191                                      16
## 192                                        
## 193                                      19
## 194                                        
## 195                                      19
## 196                                        
## 197                                       5
## 198                                        
## 199                                        
## 200                                      16
## 201                                      19
## 202                                        
## 203                                      19
## 204                                        
## 205                                      16
## 206                                       5
## 207                                        
## 208                                        
## 209                                        
## 210                                        
## 211                                      19
## 212                                       5
## 213                                       5
## 214                                        
## 215                                      16
## 216                                        
## 217                                        
## 218                                        
## 219                                      16
## 220                                      16
## 221                                        
## 222                                        
## 223                                        
## 224                                        
## 225                                        
## 226                                        
## 227                                      16
## 228                                        
## 229                                        
## 230                                       5
## 231                                       5
## 232                                        
## 233                                       5
## 234                                        
## 235                                        
## 236                                        
## 237                                        
## 238                                        
## 239                                        
## 240                                      16
## 241                                        
## 242                                        
## 243                                        
## 244                                        
## 245                                        
## 246                                        
## 247                                        
## 248                                      16
## 249                                      19
## 250                                      16
## 251                                        
## 252                                      19
## 253                                        
## 254                                      16
## 255                                        
## 256                                        
## 257                                        
## 258                                        
## 259                                        
## 260                                      23
## 261                                      19
## 262                                       5
## 263                                        
## 264                                        
## 265                                        
## 266                                       5
## 267                                        
## 268                                      19
## 269                                       5
## 270                                        
## 271                                        
## 272                                        
## 273                                      16
## 274                                      16
## 275                                      16
## 276                                        
## 277                                       5
## 278                                       5
## 279                                        
## 280                                        
## 281                                        
## 282                                        
## 283                                        
## 284                                      16
## 285                                      16
## 286                                        
## 287                                      19
## 288                                        
## 289                                        
## 290                                        
## 291                                       5
## 292                                      16
## 293                                        
## 294                                      19
## 295                                       5
## 296                                      19
## 297                                        
## 298                                        
## 299                                      19
## 300                                        
## 301                                      19
## 302                                       5
## 303                                        
## 304                                      19
## 305                                      19
## 306                                      19
## 307                                      16
## 308                                        
## 309                                      19
## 310                                      16
## 311                                        
## 312                                        
## 313                                        
## 314                                        
## 315                                      16
## 316                                        
## 317                                        
## 318                                        
## 319                                        
## 320                                        
## 321                                        
## 322                                        
## 323                                        
## 324                                      19
## 325                                        
## 326                                       5
## 327                                        
## 328                                       5
## 329                                        
## 330                                      19
## 331                                        
## 332                                        
## 333                                        
## 334                                        
## 335                                        
## 336                                      19
## 337                                        
## 338                                      19
## 339                                        
## 340                                        
## 341                                        
## 342                                        
## 343                                        
## 344                                      19
## 345                                        
## 346                                        
## 347                                      19
## 348                                        
## 349                                        
## 350                                        
## 351                                        
## 352                                        
## 353                                       5
## 354                                        
## 355                                        
## 356                                        
## 357                                        
## 358                                        
## 359                                        
## 360                                      19
## 361                                        
## 362                                        
## 363                                        
## 364                                        
## 365                                        
## 366                                        
## 367                                        
## 368                                        
## 369                                       5
## 370                                        
## 371                                        
## 372                                        
## 373                                        
## 374                                        
## 375                                      19
## 376                                        
## 377                                      16
## 378                                        
## 379                                      16
## 380                                        
## 381                                        
## 382                                      19
## 383                                        
## 384                                      19
## 385                                      19
## 386                                      16
## 387                                        
## 388                                      16
## 389                                        
## 390                                        
## 391                                        
## 392                                        
## 393                                        
## 394                                        
## 395                                        
## 396                                       5
## 397                                       5
## 398                                        
## 399                                        
## 400                                        
## 401                                      19
## 402                                        
## 403                                      16
## 404                                        
## 405                                      19
## 406                                        
## 407                                      19
## 408                                       5
## 409                                       5
## 410                                      16
## 411                                        
## 412                                        
## 413                                        
## 414                                        
## 415                                       5
## 416                                        
## 417                                      19
## 418                                      19
## 419                                        
## 420                                       5
## 421                                      19
## 422                                        
## 423                                        
## 424                                      19
## 425                                        
## 426                                        
## 427                                       5
## 428                                        
## 429                                       5
## 430                                        
## 431                                        
## 432                                        
## 433                                        
## 434                                        
## 435                                       5
## 436                                        
## 437                                        
## 438                                        
## 439                                        
## 440                                      19
## 441                                        
## 442                                       5
## 443                                        
## 444                                        
## 445                                        
## 446                                        
## 447                                        
## 448                                      19
## 449                                        
## 450                                        
## 451                                      19
## 452                                      16
## 453                                        
## 454                                        
## 455                                        
## 456                                        
## 457                                       5
## 458                                        
## 459                                        
## 460                                        
## 461                                        
## 462                                        
## 463                                        
## 464                                        
## 465                                        
## 466                                        
## 467                                        
## 468                                        
## 469                                        
## 470                                        
## 471                                        
## 472                                       5
## 473                                        
## 474                                        
## 475                                      19
## 476                                        
## 477                                        
## 478                                        
## 479                                        
## 480                                        
## 481                                        
## 482                                        
## 483                                        
## 484                                       5
## 485                                        
## 486                                      19
## 487                                        
## 488                                        
## 489                                        
## 490                                      16
## 491                                        
## 492                                        
## 493                                        
## 494                                        
## 495                                        
## 496                                        
## 497                                        
## 498                                        
## 499                                      16
## 500                                       5
## 501                                      16
## 502                                      19
## 503                                        
## 504                                        
## 505                                        
## 506                                      19
## 507                                      19
## 508                                       5
## 509                                      19
## 510                                        
## 511                                       5
## 512                                        
## 513                                        
## 514                                        
## 515                                        
## 516                                       5
## 517                                      19
## 518                                        
## 519                                        
## 520                                        
## 521                                        
## 522                                       5
## 523                                        
## 524                                        
## 525                                        
## 526                                        
## 527                                        
## 528                                      19
## 529                                      16
## 530                                        
## 531                                       5
## 532                                       5
## 533                                        
## 534                                        
## 535                                       5
## 536                                        
## 537                                        
## 538                                      16
## 539                                        
## 540                                        
## 541                                        
## 542                                        
## 543                                      19
## 544                                       5
## 545                                        
## 546                                        
## 547                                        
## 548                                      16
## 549                                        
## 550                                        
## 551                                        
## 552                                        
## 553                                      19
## 554                                       5
## 555                                        
## 556                                        
## 557                                        
## 558                                        
## 559                                        
## 560                                        
## 561                                        
## 562                                        
## 563                                       5
## 564                                      16
## 565                                        
## 566                                        
## 567                                        
## 568                                       5
## 569                                       5
## 570                                       5
## 571                                        
## 572                                        
## 573                                        
## 574                                        
## 575                                      19
## 576                                        
## 577                                        
## 578                                        
## 579                                      19
## 580                                        
## 581                                      19
## 582                                        
## 583                                        
## 584                                        
## 585                                        
## 586                                        
## 587                                        
## 588                                        
## 589                                      19
## 590                                      16
## 591                                        
## 592                                       5
## 593                                        
## 594                                      19
## 595                                        
## 596                                        
## 597                                        
## 598                                      19
## 599                                       5
## 600                                        
## 601                                        
## 602                                        
## 603                                        
## 604                                        
## 605                                      19
## 606                                        
## 607                                      16
## 608                                        
## 609                                      19
## 610                                       5
## 611                                      19
## 612                                       5
## 613                                        
## 614                                        
## 615                                        
## 616                                        
## 617                                      19
## 618                                        
## 619                                        
## 620                                        
## 621                                        
## 622                                        
## 623                                      19
## 624                                       5
## 625                                        
## 626                                        
## 627                                        
## 628                                      16
## 629                                        
## 630                                      16
## 631                                       5
## 632                                        
## 633                                        
## 634                                        
## 635                                        
## 636                                       5
## 637                                        
## 638                                      19
## 639                                        
## 640                                        
## 641                                       5
## 642                                       5
## 643                                        
## 644                                        
## 645                                        
## 646                                      19
## 647                                        
## 648                                        
## 649                                      16
## 650                                        
## 651                                      19
## 652                                       5
## 653                                        
## 654                                        
## 655                                        
## 656                                      16
## 657                                        
## 658                                        
## 659                                      16
## 660                                        
## 661                                        
## 662                                        
## 663                                        
## 664                                      16
## 665                                      16
## 666                                       5
## 667                                       5
## 668                                      19
## 669                                        
## 670                                        
## 671                                       5
## 672                                        
## 673                                       5
## 674                                        
## 675                                        
## 676                                        
## 677                                      16
## 678                                        
## 679                                      16
## 680                                        
## 681                                        
## 682                                        
## 683                                       5
## 684                                      16
## 685                                        
## 686                                        
## 687                                        
## 688                                      19
## 689                                        
## 690                                        
## 691                                        
## 692                                        
## 693                                        
## 694                                        
## 695                                        
## 696                                       5
## 697                                       5
## 698                                        
## 699                                        
## 700                                        
## 701                                        
## 702                                      19
## 703                                      16
## 704                                        
## 705                                        
## 706                                      19
## 707                                        
## 708                                        
## 709                                      16
## 710                                        
## 711                                       5
## 712                                        
## 713                                        
## 714                                      16
## 715                                        
## 716                                        
## 717                                       5
## 718                                        
## 719                                        
## 720                                        
## 721                                        
## 722                                       5
## 723                                        
## 724                                        
## 725                                        
## 726                                       5
## 727                                        
## 728                                        
## 729                                        
## 730                                      16
## 731                                        
## 732                                        
## 733                                        
## 734                                      19
## 735                                        
## 736                                        
## 737                                        
## 738                                        
## 739                                        
## 740                                      19
## 741                                      19
## 742                                        
## 743                                      16
## 744                                        
## 745                                      19
## 746                                        
## 747                                        
## 748                                        
## 749                                      19
## 750                                        
## 751                                      19
## 752                                        
## 753                                        
## 754                                        
## 755                                        
## 756                                        
## 757                                        
## 758                                        
## 759                                      19
## 760                                        
## 761                                       5
## 762                                        
## 763                                      19
## 764                                        
## 765                                        
## 766                                        
## 767                                        
## 768                                      19
## 769                                        
## 770                                        
## 771                                      19
## 772                                        
## 773                                        
## 774                                        
## 775                                        
## 776                                        
## 777                                       5
## 778                                        
## 779                                        
## 780                                        
## 781                                       5
## 782                                        
## 783                                      19
## 784                                        
## 785                                        
## 786                                        
## 787                                        
## 788                                        
## 789                                        
## 790                                       5
## 791                                      16
## 792                                      16
## 793                                      19
## 794                                        
## 795                                        
## 796                                        
## 797                                      16
## 798                                      19
## 799                                        
## 800                                        
## 801                                        
## 802                                        
## 803                                      19
## 804                                        
## 805                                        
## 806                                        
## 807                                      19
## 808                                        
## 809                                        
## 810                                        
## 811                                        
## 812                                        
## 813                                      16
## 814                                        
## 815                                      16
## 816                                       5
## 817                                      19
## 818                                        
## 819                                        
## 820                                        
## 821                                        
## 822                                        
## 823                                       5
## 824                                        
## 825                                      16
## 826                                        
## 827                                        
## 828                                        
## 829                                        
## 830                                        
## 831                                        
## 832                                       5
## 833                                        
## 834                                        
## 835                                       5
## 836                                        
## 837                                      19
## 838                                        
## 839                                        
## 840                                        
## 841                                        
## 842                                      19
## 843                                      16
## 844                                        
## 845                                        
## 846                                        
## 847                                        
## 848                                        
## 849                                      19
## 850                                      16
## 851                                        
## 852                                        
## 853                                       5
## 854                                        
## 855                                        
## 856                                        
## 857                                       5
## 858                                        
## 859                                      16
## 860                                        
## 861                                        
## 862                                        
## 863                                        
## 864                                      19
## 865                                      19
## 866                                        
## 867                                        
## 868                                        
## 869                                        
## 870                                        
## 871                                        
## 872                                        
## 873                                        
## 874                                        
## 875                                        
## 876                                        
## 877                                      19
## 878                                       5
## 879                                        
## 880                                        
## 881                                        
## 882                                      19
## 883                                        
## 884                                        
## 885                                        
## 886                                        
## 887                                        
## 888                                        
## 889                                        
## 890                                      16
## 891                                        
## 892                                        
## 893                                        
## 894                                        
## 895                                        
## 896                                        
## 897                                        
## 898                                      19
## 899                                        
## 900                                      19
## 901                                        
## 902                                        
## 903                                       5
## 904                                        
## 905                                        
## 906                                      16
## 907                                        
## 908                                       5
## 909                                      19
## 910                                       5
## 911                                        
## 912                                       5
## 913                                        
## 914                                      19
## 915                                      16
## 916                                       5
## 917                                      19
## 918                                        
## 919                                        
## 920                                      19
## 921                                       5
## 922                                        
## 923                                        
## 924                                        
## 925                                        
## 926                                        
## 927                                        
## 928                                        
## 929                                       5
## 930                                        
## 931                                       5
## 932                                      19
## 933                                      19
## 934                                        
## 935                                        
## 936                                      19
## 937                                        
## 938                                      19
## 939                                        
## 940                                        
## 941                                        
## 942                                        
## 943                                      19
## 944                                        
## 945                                        
## 946                                        
## 947                                        
## 948                                       5
## 949                                      19
## 950                                        
## 951                                        
## 952                                        
## 953                                      16
## 954                                        
## 955                                        
## 956                                        
## 957                                       5
## 958                                      16
## 959                                        
## 960                                        
## 961                                        
## 962                                        
## 963                                       5
## 964                                       5
## 965                                        
## 966                                        
## 967                                        
## 968                                        
## 969                                        
## 970                                        
## 971                                        
## 972                                        
## 973                                      19
## 974                                        
## 975                                        
## 976                                      16
## 977                                        
## 978                                        
## 979                                       5
## 980                                      19
## 981                                        
## 982                                      16
## 983                                        
## 984                                        
## 985                                        
## 986                                      19
## 987                                        
## 988                                        
## 989                                        
## 990                                       5
## 991                                        
## 992                                       5
## 993                                      16
## 994                                        
## 995                                        
## 996                                        
## 997                                      19
## 998                                        
## 999                                        
## 1000                                     19
## 1001                                     19
## 1002                                      5
## 1003                                       
## 1004                                      5
## 1005                                     16
## 1006                                       
## 1007                                       
## 1008                                       
## 1009                                     19
## 1010                                       
## 1011                                     19
## 1012                                     19
## 1013                                       
## 1014                                       
## 1015                                      5
## 1016                                       
## 1017                                       
## 1018                                      5
## 1019                                     16
## 1020                                     16
## 1021                                     16
## 1022                                       
## 1023                                       
## 1024                                       
## 1025                                     19
## 1026                                       
## 1027                                     19
## 1028                                     16
## 1029                                       
## 1030                                       
## 1031                                     16
## 1032                                       
## 1033                                       
## 1034                                       
## 1035                                      5
## 1036                                     16
## 1037                                       
## 1038                                      5
## 1039                                     16
## 1040                                       
## 1041                                      5
## 1042                                      5
## 1043                                       
## 1044                                       
## 1045                                       
## 1046                                       
## 1047                                       
## 1048                                     19
## 1049                                      5
## 1050                                     19
## 1051                                     19
## 1052                                     16
## 1053                                       
## 1054                                       
## 1055                                       
## 1056                                       
## 1057                                       
## 1058                                       
## 1059                                       
## 1060                                      5
## 1061                                       
## 1062                                       
## 1063                                       
## 1064                                       
## 1065                                       
## 1066                                       
## 1067                                       
## 1068                                     16
## 1069                                       
## 1070                                       
## 1071                                       
## 1072                                     19
## 1073                                       
## 1074                                     19
## 1075                                       
## 1076                                     16
## 1077                                       
## 1078                                       
## 1079                                       
## 1080                                      5
## 1081                                       
## 1082                                       
## 1083                                       
## 1084                                       
## 1085                                       
## 1086                                       
## 1087                                      5
## 1088                                       
## 1089                                       
## 1090                                     19
## 1091                                       
## 1092                                       
## 1093                                       
## 1094                                       
## 1095                                     19
## 1096                                       
## 1097                                       
## 1098                                       
## 1099                                       
## 1100                                      5
## 1101                                       
## 1102                                       
## 1103                                     19
## 1104                                       
## 1105                                       
## 1106                                       
## 1107                                     19
## 1108                                       
## 1109                                     16
## 1110                                       
## 1111                                      5
## 1112                                     19
## 1113                                      5
## 1114                                     16
## 1115                                       
## 1116                                       
## 1117                                     19
## 1118                                     16
## 1119                                       
## 1120                                      5
## 1121                                       
## 1122                                       
## 1123                                       
## 1124                                     19
## 1125                                       
## 1126                                       
## 1127                                       
## 1128                                       
## 1129                                       
## 1130                                      5
## 1131                                       
## 1132                                       
## 1133                                     16
## 1134                                       
## 1135                                       
## 1136                                       
## 1137                                     19
## 1138                                       
## 1139                                     19
## 1140                                       
## 1141                                      5
## 1142                                       
## 1143                                     16
## 1144                                       
## 1145                                      5
## 1146                                     16
## 1147                                     16
## 1148                                     16
## 1149                                     16
## 1150                                     19
## 1151                                       
## 1152                                       
## 1153                                      5
## 1154                                       
## 1155                                       
## 1156                                     16
## 1157                                       
## 1158                                       
## 1159                                       
## 1160                                       
## 1161                                     19
## 1162                                     19
## 1163                                       
## 1164                                       
## 1165                                     16
## 1166                                       
## 1167                                       
## 1168                                     19
## 1169                                      5
## 1170                                       
## 1171                                      5
## 1172                                       
## 1173                                     16
## 1174                                       
## 1175                                       
## 1176                                       
## 1177                                       
## 1178                                     19
## 1179                                       
## 1180                                     16
## 1181                                       
## 1182                                       
## 1183                                       
## 1184                                     19
## 1185                                     19
## 1186                                       
## 1187                                       
## 1188                                      5
## 1189                                       
## 1190                                       
## 1191                                       
## 1192                                       
## 1193                                       
## 1194                                       
## 1195                                     16
## 1196                                       
## 1197                                      5
## 1198                                       
## 1199                                     16
## 1200                                     19
## 1201                                     19
## 1202                                     19
## 1203                                       
## 1204                                      5
## 1205                                       
## 1206                                      5
## 1207                                     16
## 1208                                     19
## 1209                                       
## 1210                                       
## 1211                                       
## 1212                                      5
## 1213                                      5
## 1214                                       
## 1215                                       
## 1216                                       
## 1217                                       
## 1218                                       
## 1219                                     16
## 1220                                       
## 1221                                       
## 1222                                       
## 1223                                      5
## 1224                                       
## 1225                                      5
## 1226                                       
## 1227                                       
## 1228                                       
## 1229                                      5
## 1230                                     16
## 1231                                     16
## 1232                                      5
## 1233                                       
## 1234                                      5
## 1235                                      5
## 1236                                       
## 1237                                       
## 1238                                     16
## 1239                                       
## 1240                                       
## 1241                                      5
## 1242                                     19
## 1243                                       
## 1244                                       
## 1245                                       
## 1246                                       
## 1247                                      5
## 1248                                     19
## 1249                                       
## 1250                                       
## 1251                                       
## 1252                                      5
## 1253                                     16
## 1254                                     16
## 1255                                      5
## 1256                                       
## 1257                                       
## 1258                                       
## 1259                                       
## 1260                                       
## 1261                                     19
## 1262                                     19
## 1263                                       
## 1264                                     19
## 1265                                       
## 1266                                       
## 1267                                     19
## 1268                                       
## 1269                                      5
## 1270                                       
## 1271                                       
## 1272                                       
## 1273                                       
## 1274                                       
## 1275                                       
## 1276                                      5
## 1277                                       
## 1278                                       
## 1279                                       
## 1280                                       
## 1281                                       
## 1282                                       
## 1283                                       
## 1284                                       
## 1285                                       
## 1286                                       
## 1287                                      5
## 1288                                      5
## 1289                                       
## 1290                                      5
## 1291                                       
## 1292                                       
## 1293                                       
## 1294                                     19
## 1295                                      5
## 1296                                       
## 1297                                       
## 1298                                       
## 1299                                     16
## 1300                                       
## 1301                                     19
## 1302                                       
## 1303                                      5
## 1304                                     16
## 1305                                       
## 1306                                     19
## 1307                                       
## 1308                                       
## 1309                                       
## 1310                                       
## 1311                                     16
## 1312                                       
## 1313                                       
## 1314                                       
## 1315                                       
## 1316                                       
## 1317                                       
## 1318                                       
## 1319                                       
## 1320                                       
## 1321                                       
## 1322                                       
## 1323                                       
## 1324                                      5
## 1325                                       
## 1326                                       
## 1327                                     19
## 1328                                       
## 1329                                       
## 1330                                     19
## 1331                                       
## 1332                                       
## 1333                                       
## 1334                                       
## 1335                                       
## 1336                                       
## 1337                                       
## 1338                                      5
## 1339                                       
## 1340                                     16
## 1341                                     16
## 1342                                     16
## 1343                                     16
## 1344                                     19
## 1345                                       
## 1346                                       
## 1347                                     16
## 1348                                       
## 1349                                       
## 1350                                       
## 1351                                       
## 1352                                       
## 1353                                     16
## 1354                                     19
## 1355                                       
## 1356                                     19
## 1357                                     19
## 1358                                      5
## 1359                                       
## 1360                                       
## 1361                                       
## 1362                                       
## 1363                                     16
## 1364                                       
## 1365                                      5
## 1366                                      5
## 1367                                       
## 1368                                       
## 1369                                       
## 1370                                       
## 1371                                       
## 1372                                       
## 1373                                       
## 1374                                       
## 1375                                       
## 1376                                       
## 1377                                       
## 1378                                       
## 1379                                      5
## 1380                                     16
## 1381                                     19
## 1382                                       
## 1383                                       
## 1384                                      5
## 1385                                       
## 1386                                       
## 1387                                       
## 1388                                       
## 1389                                       
## 1390                                       
## 1391                                       
## 1392                                       
## 1393                                       
## 1394                                       
## 1395                                       
## 1396                                      5
## 1397                                       
## 1398                                       
## 1399                                      5
## 1400                                      5
## 1401                                       
## 1402                                      5
## 1403                                     16
## 1404                                       
## 1405                                       
## 1406                                       
## 1407                                       
## 1408                                       
## 1409                                       
## 1410                                       
## 1411                                       
## 1412                                       
## 1413                                       
## 1414                                       
## 1415                                       
## 1416                                     16
## 1417                                       
## 1418                                       
## 1419                                       
## 1420                                       
## 1421                                     16
## 1422                                       
## 1423                                       
## 1424                                       
## 1425                                       
## 1426                                      5
## 1427                                       
## 1428                                       
## 1429                                       
## 1430                                       
## 1431                                      5
## 1432                                       
## 1433                                       
## 1434                                       
## 1435                                       
## 1436                                     19
## 1437                                       
## 1438                                       
## 1439                                       
## 1440                                     19
## 1441                                     19
## 1442                                     19
## 1443                                       
## 1444                                       
## 1445                                       
## 1446                                       
## 1447                                       
## 1448                                       
## 1449                                       
## 1450                                       
## 1451                                       
## 1452                                       
## 1453                                       
## 1454                                     16
## 1455                                       
## 1456                                      5
## 1457                                       
## 1458                                     19
## 1459                                     19
## 1460                                      5
## 1461                                     19
## 1462                                      5
## 1463                                     16
## 1464                                       
## 1465                                      5
## 1466                                       
## 1467                                      5
## 1468                                       
## 1469                                     19
## 1470                                       
## 1471                                       
## 1472                                       
## 1473                                     16
## 1474                                      5
## 1475                                     16
## 1476                                       
## 1477                                       
## 1478                                      5
## 1479                                       
## 1480                                     16
## 1481                                       
## 1482                                      5
## 1483                                       
## 1484                                       
## 1485                                     19
## 1486                                       
## 1487                                      5
## 1488                                       
## 1489                                     19
## 1490                                       
## 1491                                       
## 1492                                       
## 1493                                     16
## 1494                                     16
## 1495                                       
## 1496                                     16
## 1497                                       
## 1498                                     19
## 1499                                     16
## 1500                                       
## 1501                                       
## 1502                                       
## 1503                                       
## 1504                                       
## 1505                                       
## 1506                                       
## 1507                                       
## 1508                                      5
## 1509                                       
## 1510                                       
## 1511                                       
## 1512                                      5
## 1513                                       
## 1514                                     19
## 1515                                       
## 1516                                       
## 1517                                       
## 1518                                       
## 1519                                      5
## 1520                                      5
## 1521                                      5
## 1522                                       
## 1523                                       
## 1524                                     16
## 1525                                       
## 1526                                       
## 1527                                     19
## 1528                                       
## 1529                                       
## 1530                                       
## 1531                                       
## 1532                                       
## 1533                                       
## 1534                                       
## 1535                                       
## 1536                                       
## 1537                                       
## 1538                                       
## 1539                                       
## 1540                                       
## 1541                                       
## 1542                                       
## 1543                                       
## 1544                                       
## 1545                                       
## 1546                                       
## 1547                                     16
## 1548                                      5
## 1549                                       
## 1550                                       
## 1551                                     19
## 1552                                       
## 1553                                       
## 1554                                     16
## 1555                                     19
## 1556                                     16
## 1557                                       
## 1558                                      5
## 1559                                       
## 1560                                       
## 1561                                     19
## 1562                                     16
## 1563                                       
## 1564                                       
## 1565                                       
## 1566                                       
## 1567                                       
## 1568                                      5
## 1569                                       
## 1570                                       
## 1571                                     16
## 1572                                       
## 1573                                       
## 1574                                      5
## 1575                                       
## 1576                                       
## 1577                                       
## 1578                                       
## 1579                                       
## 1580                                       
## 1581                                     19
## 1582                                       
## 1583                                      5
## 1584                                     16
## 1585                                       
## 1586                                       
## 1587                                       
## 1588                                       
## 1589                                       
## 1590                                       
## 1591                                       
## 1592                                       
## 1593                                       
## 1594                                       
## 1595                                      5
## 1596                                       
## 1597                                       
## 1598                                      5
## 1599                                       
## 1600                                       
## 1601                                       
## 1602                                     19
## 1603                                       
## 1604                                       
## 1605                                     19
## 1606                                       
## 1607                                     19
## 1608                                       
## 1609                                       
## 1610                                       
## 1611                                       
## 1612                                       
## 1613                                     19
## 1614                                       
## 1615                                       
## 1616                                      5
## 1617                                      5
## 1618                                     19
## 1619                                       
## 1620                                     16
## 1621                                       
## 1622                                       
## 1623                                       
## 1624                                     16
## 1625                                       
## 1626                                       
## 1627                                      5
## 1628                                       
## 1629                                      5
## 1630                                      5
## 1631                                       
## 1632                                       
## 1633                                       
## 1634                                      5
## 1635                                       
## 1636                                     19
## 1637                                       
## 1638                                       
## 1639                                     19
## 1640                                       
## 1641                                      5
## 1642                                     16
## 1643                                     19
## 1644                                       
## 1645                                      5
## 1646                                      5
## 1647                                       
## 1648                                     16
## 1649                                      5
## 1650                                       
## 1651                                      5
## 1652                                       
## 1653                                       
## 1654                                      5
## 1655                                       
## 1656                                       
## 1657                                     16
## 1658                                       
## 1659                                       
## 1660                                       
## 1661                                      5
## 1662                                      5
## 1663                                       
## 1664                                       
## 1665                                       
## 1666                                       
## 1667                                       
## 1668                                       
## 1669                                      5
## 1670                                     19
## 1671                                      5
## 1672                                     19
## 1673                                       
## 1674                                       
## 1675                                       
## 1676                                       
## 1677                                       
## 1678                                     23
## 1679                                     19
## 1680                                       
## 1681                                      5
## 1682                                       
## 1683                                     19
## 1684                                       
## 1685                                     16
## 1686                                       
## 1687                                     16
## 1688                                       
## 1689                                       
## 1690                                      5
## 1691                                       
## 1692                                       
## 1693                                     16
## 1694                                      5
## 1695                                     19
## 1696                                       
## 1697                                       
## 1698                                      5
## 1699                                       
## 1700                                       
## 1701                                       
## 1702                                     16
## 1703                                       
## 1704                                     19
## 1705                                     19
## 1706                                       
## 1707                                       
## 1708                                      5
## 1709                                       
## 1710                                       
## 1711                                       
## 1712                                       
## 1713                                     16
## 1714                                     19
## 1715                                       
## 1716                                       
## 1717                                       
## 1718                                     19
## 1719                                       
## 1720                                       
## 1721                                      5
## 1722                                       
## 1723                                     16
## 1724                                       
## 1725                                     16
## 1726                                       
## 1727                                     16
## 1728                                     19
## 1729                                       
## 1730                                       
## 1731                                       
## 1732                                       
## 1733                                       
## 1734                                     16
## 1735                                       
## 1736                                     19
## 1737                                      5
## 1738                                       
## 1739                                      5
## 1740                                       
## 1741                                     19
## 1742                                       
## 1743                                       
## 1744                                       
## 1745                                       
## 1746                                     16
## 1747                                       
## 1748                                       
## 1749                                     19
## 1750                                      5
## 1751                                       
## 1752                                       
## 1753                                      5
## 1754                                     19
## 1755                                       
## 1756                                       
## 1757                                       
## 1758                                       
## 1759                                       
## 1760                                     16
## 1761                                       
## 1762                                       
## 1763                                       
## 1764                                      5
## 1765                                       
## 1766                                      5
## 1767                                       
## 1768                                       
## 1769                                      5
## 1770                                       
## 1771                                      5
## 1772                                     16
## 1773                                     16
## 1774                                       
## 1775                                       
## 1776                                       
## 1777                                       
## 1778                                     19
## 1779                                     19
## 1780                                     16
## 1781                                       
## 1782                                       
## 1783                                       
## 1784                                       
## 1785                                      5
## 1786                                       
## 1787                                     16
## 1788                                       
## 1789                                      5
## 1790                                       
## 1791                                       
## 1792                                       
## 1793                                       
## 1794                                       
## 1795                                       
## 1796                                       
## 1797                                       
## 1798                                       
## 1799                                       
## 1800                                       
## 1801                                     16
## 1802                                       
## 1803                                       
## 1804                                       
## 1805                                     16
## 1806                                      5
## 1807                                     16
## 1808                                     16
## 1809                                     16
## 1810                                       
## 1811                                      5
## 1812                                       
## 1813                                      5
## 1814                                     19
## 1815                                       
## 1816                                     19
## 1817                                       
## 1818                                     19
## 1819                                      5
## 1820                                       
## 1821                                       
## 1822                                      5
## 1823                                     19
## 1824                                       
## 1825                                       
## 1826                                       
## 1827                                       
## 1828                                       
## 1829                                       
## 1830                                       
## 1831                                       
## 1832                                       
## 1833                                       
## 1834                                      5
## 1835                                       
## 1836                                       
## 1837                                       
## 1838                                      5
## 1839                                       
## 1840                                     19
## 1841                                       
## 1842                                       
## 1843                                       
## 1844                                     16
## 1845                                      5
## 1846                                       
## 1847                                      5
## 1848                                       
## 1849                                     19
## 1850                                     16
## 1851                                      5
## 1852                                       
## 1853                                       
## 1854                                       
## 1855                                       
## 1856                                      5
## 1857                                       
## 1858                                       
## 1859                                     19
## 1860                                       
## 1861                                     16
## 1862                                       
## 1863                                       
## 1864                                       
## 1865                                       
## 1866                                      5
## 1867                                       
## 1868                                       
## 1869                                       
## 1870                                       
## 1871                                       
## 1872                                       
## 1873                                       
## 1874                                      5
## 1875                                       
## 1876                                      5
## 1877                                     16
## 1878                                       
## 1879                                     19
## 1880                                       
## 1881                                       
## 1882                                      5
## 1883                                       
## 1884                                       
## 1885                                       
## 1886                                      5
## 1887                                      5
## 1888                                      5
## 1889                                       
## 1890                                      5
## 1891                                       
## 1892                                      5
## 1893                                       
## 1894                                       
## 1895                                       
## 1896                                     19
## 1897                                     16
## 1898                                       
## 1899                                      5
## 1900                                       
## 1901                                      5
## 1902                                       
## 1903                                       
## 1904                                       
## 1905                                     19
## 1906                                       
## 1907                                       
## 1908                                       
## 1909                                       
## 1910                                       
## 1911                                      5
## 1912                                       
## 1913                                       
## 1914                                       
## 1915                                      5
## 1916                                       
## 1917                                       
## 1918                                       
## 1919                                      5
## 1920                                     19
## 1921                                       
## 1922                                      5
## 1923                                     16
## 1924                                     19
## 1925                                       
## 1926                                       
## 1927                                       
## 1928                                       
## 1929                                       
## 1930                                       
## 1931                                       
## 1932                                       
## 1933                                       
## 1934                                       
## 1935                                       
## 1936                                       
## 1937                                     16
## 1938                                      5
## 1939                                       
## 1940                                     19
## 1941                                     19
## 1942                                       
## 1943                                      5
## 1944                                       
## 1945                                       
## 1946                                       
## 1947                                       
## 1948                                       
## 1949                                     16
## 1950                                       
## 1951                                       
## 1952                                     16
## 1953                                       
## 1954                                       
## 1955                                       
## 1956                                       
## 1957                                     19
## 1958                                       
## 1959                                     19
## 1960                                       
## 1961                                       
## 1962                                       
## 1963                                     19
## 1964                                       
## 1965                                       
## 1966                                     16
## 1967                                     19
## 1968                                       
## 1969                                     19
## 1970                                      5
## 1971                                     19
## 1972                                       
## 1973                                       
## 1974                                       
## 1975                                       
## 1976                                     19
## 1977                                     16
## 1978                                       
## 1979                                       
## 1980                                       
## 1981                                      5
## 1982                                      5
## 1983                                       
## 1984                                      5
## 1985                                       
## 1986                                       
## 1987                                     16
## 1988                                       
## 1989                                      5
## 1990                                      5
## 1991                                       
## 1992                                       
## 1993                                       
## 1994                                       
## 1995                                       
## 1996                                       
## 1997                                       
## 1998                                       
## 1999                                       
## 2000                                       
## 2001                                      5
## 2002                                       
## 2003                                       
## 2004                                       
## 2005                                     16
## 2006                                     19
## 2007                                       
## 2008                                      5
## 2009                                       
## 2010                                       
## 2011                                     19
## 2012                                       
## 2013                                       
## 2014                                       
## 2015                                       
## 2016                                       
## 2017                                     16
## 2018                                       
## 2019                                     19
## 2020                                       
## 2021                                       
## 2022                                       
## 2023                                       
## 2024                                       
## 2025                                      5
## 2026                                       
## 2027                                       
## 2028                                       
## 2029                                       
## 2030                                      5
## 2031                                     16
## 2032                                       
## 2033                                      5
## 2034                                      5
## 2035                                       
## 2036                                     19
## 2037                                       
## 2038                                       
## 2039                                       
## 2040                                      5
## 2041                                       
## 2042                                       
## 2043                                     16
## 2044                                       
## 2045                                       
## 2046                                       
## 2047                                       
## 2048                                       
## 2049                                      5
## 2050                                     16
## 2051                                       
## 2052                                       
## 2053                                      5
## 2054                                       
## 2055                                       
## 2056                                       
## 2057                                     16
## 2058                                       
## 2059                                       
## 2060                                       
## 2061                                     16
## 2062                                     19
## 2063                                      5
## 2064                                       
## 2065                                       
## 2066                                       
## 2067                                     16
## 2068                                       
## 2069                                       
## 2070                                       
## 2071                                      5
## 2072                                       
## 2073                                       
## 2074                                       
## 2075                                      5
## 2076                                     19
## 2077                                       
## 2078                                       
## 2079                                       
## 2080                                     16
## 2081                                       
## 2082                                       
## 2083                                      5
## 2084                                       
## 2085                                       
## 2086                                      5
## 2087                                       
## 2088                                     16
## 2089                                       
## 2090                                     19
## 2091                                       
## 2092                                       
## 2093                                       
## 2094                                     19
## 2095                                       
## 2096                                       
## 2097                                       
## 2098                                      5
## 2099                                       
## 2100                                       
## 2101                                       
## 2102                                       
## 2103                                      5
## 2104                                       
## 2105                                       
## 2106                                      5
## 2107                                     16
## 2108                                       
## 2109                                     19
## 2110                                     16
## 2111                                     19
## 2112                                       
## 2113                                      5
## 2114                                     16
## 2115                                       
## 2116                                      5
## 2117                                       
## 2118                                       
## 2119                                       
## 2120                                       
## 2121                                       
## 2122                                      5
## 2123                                       
## 2124                                       
## 2125                                       
## 2126                                     19
## 2127                                     16
## 2128                                       
## 2129                                      5
## 2130                                       
## 2131                                       
## 2132                                     19
## 2133                                       
## 2134                                       
## 2135                                       
## 2136                                       
## 2137                                       
## 2138                                     19
## 2139                                     19
## 2140                                     19
## 2141                                     19
## 2142                                      5
## 2143                                       
## 2144                                      5
## 2145                                     19
## 2146                                       
## 2147                                       
## 2148                                       
## 2149                                      5
## 2150                                       
## 2151                                       
## 2152                                     19
## 2153                                       
## 2154                                       
## 2155                                     16
## 2156                                       
## 2157                                     19
## 2158                                       
## 2159                                       
## 2160                                       
## 2161                                       
## 2162                                     19
## 2163                                     16
## 2164                                       
## 2165                                       
## 2166                                       
## 2167                                      5
## 2168                                       
## 2169                                     19
## 2170                                       
## 2171                                       
## 2172                                       
## 2173                                       
## 2174                                       
## 2175                                       
## 2176                                     19
## 2177                                     16
## 2178                                       
## 2179                                       
## 2180                                       
## 2181                                       
## 2182                                      5
## 2183                                       
## 2184                                     19
## 2185                                     19
## 2186                                      5
## 2187                                      5
## 2188                                       
## 2189                                       
## 2190                                       
## 2191                                       
## 2192                                       
## 2193                                       
## 2194                                      5
## 2195                                       
## 2196                                     19
## 2197                                       
## 2198                                     16
## 2199                                       
## 2200                                     19
## 2201                                       
## 2202                                     16
## 2203                                     16
## 2204                                       
## 2205                                       
## 2206                                     19
## 2207                                       
## 2208                                       
## 2209                                       
## 2210                                     19
## 2211                                       
## 2212                                       
## 2213                                      5
## 2214                                       
## 2215                                       
## 2216                                       
## 2217                                       
## 2218                                       
## 2219                                     16
## 2220                                       
## 2221                                       
## 2222                                       
## 2223                                      5
## 2224                                       
## 2225                                     19
## 2226                                       
## 2227                                      5
## 2228                                      5
## 2229                                       
## 2230                                       
## 2231                                      5
## 2232                                       
## 2233                                       
## 2234                                     16
## 2235                                     16
## 2236                                       
## 2237                                      5
## 2238                                      5
## 2239                                       
## 2240                                      5
## 2241                                     19
## 2242                                       
## 2243                                       
## 2244                                       
## 2245                                       
## 2246                                      5
## 2247                                       
## 2248                                     16
## 2249                                       
## 2250                                     19
## 2251                                       
## 2252                                       
## 2253                                       
## 2254                                       
## 2255                                     19
## 2256                                     16
## 2257                                       
## 2258                                      5
## 2259                                     19
## 2260                                       
## 2261                                       
## 2262                                       
## 2263                                       
## 2264                                       
## 2265                                       
## 2266                                     19
## 2267                                     19
## 2268                                       
## 2269                                      5
## 2270                                     16
## 2271                                      5
## 2272                                       
## 2273                                       
## 2274                                       
## 2275                                     19
## 2276                                       
## 2277                                       
## 2278                                       
## 2279                                      5
## 2280                                       
## 2281                                      5
## 2282                                       
## 2283                                       
## 2284                                      5
## 2285                                       
## 2286                                       
## 2287                                     19
## 2288                                     16
## 2289                                       
## 2290                                       
## 2291                                       
## 2292                                       
## 2293                                      5
## 2294                                       
## 2295                                     16
## 2296                                     16
## 2297                                       
## 2298                                      5
## 2299                                       
## 2300                                      5
## 2301                                       
## 2302                                       
## 2303                                       
## 2304                                      5
## 2305                                     19
## 2306                                     19
## 2307                                     19
## 2308                                       
## 2309                                       
## 2310                                       
## 2311                                     16
## 2312                                       
## 2313                                      5
## 2314                                       
## 2315                                      5
## 2316                                     16
## 2317                                       
## 2318                                     19
## 2319                                      5
## 2320                                      5
## 2321                                      5
## 2322                                       
## 2323                                       
## 2324                                     16
## 2325                                       
## 2326                                       
## 2327                                      5
## 2328                                       
## 2329                                     16
## 2330                                     16
## 2331                                     16
## 2332                                     19
## 2333                                     19
## 2334                                       
## 2335                                       
## 2336                                     16
## 2337                                     19
## 2338                                       
## 2339                                     16
## 2340                                       
## 2341                                      5
## 2342                                     16
## 2343                                      5
## 2344                                       
## 2345                                     19
## 2346                                      5
## 2347                                       
## 2348                                       
## 2349                                     16
## 2350                                       
## 2351                                       
## 2352                                       
## 2353                                      5
## 2354                                       
## 2355                                     19
## 2356                                       
## 2357                                      5
## 2358                                       
## 2359                                       
## 2360                                     19
## 2361                                       
## 2362                                       
## 2363                                       
## 2364                                       
## 2365                                       
## 2366                                     19
## 2367                                      5
## 2368                                       
## 2369                                     19
## 2370                                     16
## 2371                                       
## 2372                                       
## 2373                                       
## 2374                                     19
## 2375                                       
## 2376                                      5
## 2377                                       
## 2378                                     16
## 2379                                     16
## 2380                                       
## 2381                                      5
## 2382                                       
## 2383                                     19
## 2384                                     19
## 2385                                       
## 2386                                       
## 2387                                       
## 2388                                      5
## 2389                                       
## 2390                                     19
## 2391                                       
## 2392                                      5
## 2393                                      5
## 2394                                       
## 2395                                     19
## 2396                                     19
## 2397                                      5
## 2398                                       
## 2399                                       
## 2400                                     16
## 2401                                       
## 2402                                     19
## 2403                                     16
## 2404                                     16
## 2405                                       
## 2406                                       
## 2407                                       
## 2408                                       
## 2409                                      5
## 2410                                     19
## 2411                                       
## 2412                                     16
## 2413                                       
## 2414                                      5
## 2415                                       
## 2416                                      5
## 2417                                       
## 2418                                      5
## 2419                                     19
## 2420                                       
## 2421                                       
## 2422                                       
## 2423                                       
## 2424                                     16
## 2425                                       
## 2426                                     19
## 2427                                       
## 2428                                     19
## 2429                                     16
## 2430                                     16
## 2431                                      5
## 2432                                     19
## 2433                                      5
## 2434                                       
## 2435                                       
## 2436                                       
## 2437                                      5
## 2438                                     19
## 2439                                       
## 2440                                     19
## 2441                                       
## 2442                                     16
## 2443                                       
## 2444                                     19
## 2445                                      5
## 2446                                       
## 2447                                      5
## 2448                                       
## 2449                                     19
## 2450                                       
## 2451                                       
## 2452                                       
## 2453                                       
## 2454                                       
## 2455                                       
## 2456                                     19
## 2457                                       
## 2458                                      5
## 2459                                       
## 2460                                       
## 2461                                       
## 2462                                       
## 2463                                      5
## 2464                                       
## 2465                                     16
## 2466                                      5
## 2467                                       
## 2468                                     19
## 2469                                       
## 2470                                       
## 2471                                       
## 2472                                     19
## 2473                                      5
## 2474                                     16
## 2475                                       
## 2476                                       
## 2477                                       
## 2478                                       
## 2479                                     16
## 2480                                       
## 2481                                       
## 2482                                       
## 2483                                     16
## 2484                                       
## 2485                                     16
## 2486                                       
## 2487                                     19
## 2488                                      5
## 2489                                     19
## 2490                                       
## 2491                                       
## 2492                                       
## 2493                                     19
## 2494                                     19
## 2495                                       
## 2496                                      5
## 2497                                     19
## 2498                                       
## 2499                                     19
## 2500                                       
## 2501                                       
## 2502                                       
## 2503                                       
## 2504                                       
## 2505                                       
## 2506                                     19
## 2507                                       
## 2508                                       
## 2509                                       
## 2510                                       
## 2511                                       
## 2512                                       
## 2513                                      5
## 2514                                       
## 2515                                       
## 2516                                       
## 2517                                       
## 2518                                     16
## 2519                                       
## 2520                                     19
## 2521                                       
## 2522                                       
## 2523                                       
## 2524                                     19
## 2525                                       
## 2526                                       
## 2527                                       
## 2528                                       
## 2529                                      5
## 2530                                       
## 2531                                       
## 2532                                     16
## 2533                                       
## 2534                                       
## 2535                                       
## 2536                                      5
## 2537                                       
## 2538                                     19
## 2539                                     19
## 2540                                     19
## 2541                                       
## 2542                                       
## 2543                                      5
## 2544                                      5
## 2545                                       
## 2546                                      5
## 2547                                     19
## 2548                                       
## 2549                                       
## 2550                                     19
## 2551                                       
## 2552                                     19
## 2553                                       
## 2554                                      5
## 2555                                       
## 2556                                      5
## 2557                                     19
## 2558                                     19
## 2559                                      5
## 2560                                       
## 2561                                      5
## 2562                                       
## 2563                                      5
## 2564                                       
## 2565                                       
## 2566                                      5
## 2567                                       
## 2568                                       
## 2569                                      5
## 2570                                       
## 2571                                       
## 2572                                       
## 2573                                     19
## 2574                                       
## 2575                                       
## 2576                                       
## 2577                                       
## 2578                                       
## 2579                                       
## 2580                                     16
## 2581                                       
## 2582                                     16
## 2583                                     19
## 2584                                       
## 2585                                     19
## 2586                                       
## 2587                                     16
## 2588                                     16
## 2589                                       
## 2590                                       
## 2591                                      5
## 2592                                       
## 2593                                       
## 2594                                       
## 2595                                     16
## 2596                                     19
## 2597                                       
## 2598                                       
## 2599                                      5
## 2600                                     16
## 2601                                       
## 2602                                       
## 2603                                      5
## 2604                                      5
## 2605                                       
## 2606                                     19
## 2607                                     19
## 2608                                       
## 2609                                     19
## 2610                                       
## 2611                                       
## 2612                                       
## 2613                                       
## 2614                                       
## 2615                                       
## 2616                                      5
## 2617                                     16
## 2618                                       
## 2619                                       
## 2620                                       
## 2621                                       
## 2622                                       
## 2623                                       
## 2624                                     16
## 2625                                     19
## 2626                                       
## 2627                                     16
## 2628                                       
## 2629                                      5
## 2630                                       
## 2631                                     19
## 2632                                     19
## 2633                                       
## 2634                                       
## 2635                                       
## 2636                                      5
## 2637                                       
## 2638                                       
## 2639                                       
## 2640                                      5
## 2641                                       
## 2642                                       
## 2643                                       
## 2644                                       
## 2645                                       
## 2646                                       
## 2647                                       
## 2648                                     19
## 2649                                       
## 2650                                       
## 2651                                       
## 2652                                       
## 2653                                       
## 2654                                       
## 2655                                     19
## 2656                                       
## 2657                                       
## 2658                                       
## 2659                                       
## 2660                                     16
## 2661                                     19
## 2662                                     16
## 2663                                       
## 2664                                       
## 2665                                       
## 2666                                       
## 2667                                      5
## 2668                                      5
## 2669                                       
## 2670                                      5
## 2671                                       
## 2672                                       
## 2673                                      5
## 2674                                       
## 2675                                      5
## 2676                                      5
## 2677                                       
## 2678                                     19
## 2679                                       
## 2680                                       
## 2681                                     19
## 2682                                       
## 2683                                     19
## 2684                                      5
## 2685                                       
## 2686                                      5
## 2687                                       
## 2688                                       
## 2689                                     19
## 2690                                     19
## 2691                                       
## 2692                                       
## 2693                                      5
## 2694                                       
## 2695                                       
## 2696                                       
## 2697                                       
## 2698                                     19
## 2699                                       
## 2700                                       
## 2701                                       
## 2702                                      5
## 2703                                     19
## 2704                                       
## 2705                                       
## 2706                                      5
## 2707                                       
## 2708                                     19
## 2709                                       
## 2710                                       
## 2711                                      5
## 2712                                     16
## 2713                                       
## 2714                                       
## 2715                                       
## 2716                                       
## 2717                                       
## 2718                                     16
## 2719                                       
## 2720                                       
## 2721                                       
## 2722                                       
## 2723                                       
## 2724                                       
## 2725                                     19
## 2726                                       
## 2727                                       
## 2728                                       
## 2729                                      5
## 2730                                      5
## 2731                                      5
## 2732                                     16
## 2733                                       
## 2734                                     16
## 2735                                       
## 2736                                       
## 2737                                       
## 2738                                     16
## 2739                                       
## 2740                                     16
## 2741                                       
## 2742                                       
## 2743                                     16
## 2744                                       
## 2745                                       
## 2746                                       
## 2747                                      5
## 2748                                     19
## 2749                                       
## 2750                                       
## 2751                                       
## 2752                                       
## 2753                                     19
## 2754                                       
## 2755                                       
## 2756                                       
## 2757                                       
## 2758                                       
## 2759                                     16
## 2760                                       
## 2761                                       
## 2762                                       
## 2763                                     19
## 2764                                       
## 2765                                       
## 2766                                       
## 2767                                       
## 2768                                       
## 2769                                       
## 2770                                       
## 2771                                     16
## 2772                                      5
## 2773                                      5
## 2774                                       
## 2775                                     19
## 2776                                       
## 2777                                       
## 2778                                       
## 2779                                       
## 2780                                       
## 2781                                       
## 2782                                      5
## 2783                                       
## 2784                                     16
## 2785                                       
## 2786                                     19
## 2787                                       
## 2788                                       
## 2789                                     16
## 2790                                       
## 2791                                       
## 2792                                       
## 2793                                       
## 2794                                     16
## 2795                                      5
## 2796                                       
## 2797                                       
## 2798                                       
## 2799                                       
## 2800                                       
## 2801                                       
## 2802                                     19
## 2803                                       
## 2804                                       
## 2805                                      5
## 2806                                      5
## 2807                                       
## 2808                                       
## 2809                                       
## 2810                                       
## 2811                                       
## 2812                                      5
## 2813                                       
## 2814                                       
## 2815                                     16
## 2816                                       
## 2817                                     19
## 2818                                       
## 2819                                       
## 2820                                     19
## 2821                                     19
## 2822                                       
## 2823                                       
## 2824                                      5
## 2825                                       
## 2826                                      5
## 2827                                     19
## 2828                                     19
## 2829                                     16
## 2830                                      5
## 2831                                       
## 2832                                     19
## 2833                                       
## 2834                                       
## 2835                                     16
## 2836                                       
## 2837                                       
## 2838                                       
## 2839                                       
## 2840                                       
## 2841                                       
## 2842                                       
## 2843                                     19
## 2844                                       
## 2845                                     19
## 2846                                     19
## 2847                                     19
## 2848                                       
## 2849                                       
## 2850                                       
## 2851                                      5
## 2852                                       
## 2853                                      5
## 2854                                     16
## 2855                                       
## 2856                                       
## 2857                                     16
## 2858                                       
## 2859                                       
## 2860                                       
## 2861                                       
## 2862                                      5
## 2863                                       
## 2864                                       
## 2865                                       
## 2866                                       
## 2867                                      5
## 2868                                       
## 2869                                       
## 2870                                      5
## 2871                                       
## 2872                                       
## 2873                                       
## 2874                                      5
## 2875                                       
## 2876                                       
## 2877                                       
## 2878                                       
## 2879                                     16
## 2880                                     19
## 2881                                      5
## 2882                                     16
## 2883                                       
## 2884                                     19
## 2885                                       
## 2886                                       
## 2887                                       
## 2888                                      5
## 2889                                     16
## 2890                                       
## 2891                                     16
## 2892                                       
## 2893                                       
## 2894                                     16
## 2895                                       
## 2896                                       
## 2897                                       
## 2898                                       
## 2899                                       
## 2900                                     16
## 2901                                       
## 2902                                     16
## 2903                                       
## 2904                                      5
## 2905                                       
## 2906                                      5
## 2907                                       
## 2908                                       
## 2909                                       
## 2910                                      5
## 2911                                       
## 2912                                       
## 2913                                       
## 2914                                       
## 2915                                       
## 2916                                       
## 2917                                       
## 2918                                       
## 2919                                       
## 2920                                       
## 2921                                       
## 2922                                       
## 2923                                       
## 2924                                       
## 2925                                       
## 2926                                     19
## 2927                                       
## 2928                                       
## 2929                                       
## 2930                                       
## 2931                                      5
## 2932                                       
## 2933                                       
## 2934                                     19
## 2935                                      5
## 2936                                       
## 2937                                       
## 2938                                      5
## 2939                                       
## 2940                                       
## 2941                                       
## 2942                                      5
## 2943                                       
## 2944                                     16
## 2945                                       
## 2946                                      5
## 2947                                       
## 2948                                       
## 2949                                      5
## 2950                                     19
## 2951                                       
## 2952                                     16
## 2953                                       
## 2954                                       
## 2955                                       
## 2956                                      5
## 2957                                     19
## 2958                                       
## 2959                                     16
## 2960                                       
## 2961                                       
## 2962                                       
## 2963                                      5
## 2964                                       
## 2965                                       
## 2966                                     19
## 2967                                       
## 2968                                       
## 2969                                       
## 2970                                       
## 2971                                       
## 2972                                       
## 2973                                       
## 2974                                       
## 2975                                      5
## 2976                                       
## 2977                                       
## 2978                                      5
## 2979                                       
## 2980                                       
## 2981                                       
## 2982                                       
## 2983                                       
## 2984                                      5
## 2985                                       
## 2986                                       
## 2987                                       
## 2988                                     16
## 2989                                       
## 2990                                       
## 2991                                       
## 2992                                       
## 2993                                     16
## 2994                                      5
## 2995                                       
## 2996                                      5
## 2997                                     19
## 2998                                      5
## 2999                                       
## 3000                                       
## 3001                                      5
## 3002                                       
## 3003                                       
## 3004                                      5
## 3005                                       
## 3006                                       
## 3007                                     19
## 3008                                      5
## 3009                                       
## 3010                                       
## 3011                                       
## 3012                                       
## 3013                                      5
## 3014                                       
## 3015                                     19
## 3016                                       
## 3017                                     16
## 3018                                       
## 3019                                       
## 3020                                       
## 3021                                       
## 3022                                     19
## 3023                                      5
## 3024                                       
## 3025                                       
## 3026                                       
## 3027                                     19
## 3028                                       
## 3029                                       
## 3030                                     16
## 3031                                       
## 3032                                       
## 3033                                       
## 3034                                       
## 3035                                       
## 3036                                       
## 3037                                     19
## 3038                                       
## 3039                                      5
## 3040                                       
## 3041                                       
## 3042                                       
## 3043                                      5
## 3044                                       
## 3045                                     19
## 3046                                       
## 3047                                       
## 3048                                       
## 3049                                     19
## 3050                                       
## 3051                                       
## 3052                                       
## 3053                                       
## 3054                                       
## 3055                                       
## 3056                                       
## 3057                                     19
## 3058                                       
## 3059                                       
## 3060                                     19
## 3061                                     19
## 3062                                      5
## 3063                                       
## 3064                                       
## 3065                                       
## 3066                                       
## 3067                                       
## 3068                                     19
## 3069                                       
## 3070                                       
## 3071                                       
## 3072                                      5
## 3073                                       
## 3074                                       
## 3075                                       
## 3076                                       
## 3077                                      5
## 3078                                       
## 3079                                       
## 3080                                       
## 3081                                       
## 3082                                       
## 3083                                      5
## 3084                                     19
## 3085                                       
## 3086                                       
## 3087                                       
## 3088                                     19
## 3089                                       
## 3090                                       
## 3091                                       
## 3092                                       
## 3093                                       
## 3094                                       
## 3095                                       
## 3096                                       
## 3097                                       
## 3098                                       
## 3099                                       
## 3100                                       
## 3101                                       
## 3102                                       
## 3103                                       
## 3104                                       
## 3105                                     16
## 3106                                       
## 3107                                     16
## 3108                                       
## 3109                                       
## 3110                                     19
## 3111                                     16
## 3112                                       
## 3113                                       
## 3114                                       
## 3115                                      5
## 3116                                     19
## 3117                                     19
## 3118                                       
## 3119                                      5
## 3120                                       
## 3121                                       
## 3122                                       
## 3123                                     19
## 3124                                       
## 3125                                       
## 3126                                       
## 3127                                       
## 3128                                       
## 3129                                     16
## 3130                                     19
## 3131                                     19
## 3132                                       
## 3133                                       
## 3134                                       
## 3135                                     19
## 3136                                       
## 3137                                     19
## 3138                                     19
## 3139                                     19
## 3140                                       
## 3141                                       
## 3142                                       
## 3143                                       
## 3144                                     16
## 3145                                       
## 3146                                       
## 3147                                       
## 3148                                       
## 3149                                       
## 3150                                       
## 3151                                       
## 3152                                       
## 3153                                       
## 3154                                      5
## 3155                                     16
## 3156                                       
## 3157                                       
## 3158                                       
## 3159                                       
## 3160                                       
## 3161                                     23
## 3162                                       
## 3163                                       
## 3164                                      5
## 3165                                       
## 3166                                       
## 3167                                       
## 3168                                       
## 3169                                       
## 3170                                      5
## 3171                                       
## 3172                                      5
## 3173                                       
## 3174                                       
## 3175                                     16
## 3176                                       
## 3177                                       
## 3178                                       
## 3179                                      5
## 3180                                       
## 3181                                       
## 3182                                       
## 3183                                     19
## 3184                                      5
## 3185                                       
## 3186                                       
## 3187                                       
## 3188                                       
## 3189                                      5
## 3190                                       
## 3191                                     16
## 3192                                       
## 3193                                       
## 3194                                       
## 3195                                       
## 3196                                       
## 3197                                     16
## 3198                                       
## 3199                                       
## 3200                                       
## 3201                                     19
## 3202                                       
## 3203                                       
## 3204                                      5
## 3205                                       
## 3206                                      5
## 3207                                     19
## 3208                                     16
## 3209                                       
## 3210                                       
## 3211                                       
## 3212                                       
## 3213                                     19
## 3214                                     19
## 3215                                       
## 3216                                     19
## 3217                                       
## 3218                                       
## 3219                                       
## 3220                                       
## 3221                                     16
## 3222                                       
## 3223                                       
## 3224                                       
## 3225                                     16
## 3226                                       
## 3227                                       
## 3228                                       
## 3229                                       
## 3230                                       
## 3231                                       
## 3232                                      5
## 3233                                      5
## 3234                                      5
## 3235                                       
## 3236                                      5
## 3237                                       
## 3238                                       
## 3239                                     16
## 3240                                       
## 3241                                       
## 3242                                       
## 3243                                       
## 3244                                       
## 3245                                     19
## 3246                                       
## 3247                                       
## 3248                                     19
## 3249                                       
## 3250                                      5
## 3251                                     16
## 3252                                       
## 3253                                       
## 3254                                       
## 3255                                       
## 3256                                       
## 3257                                     19
## 3258                                       
## 3259                                      5
## 3260                                       
## 3261                                       
## 3262                                     16
## 3263                                      5
## 3264                                      5
## 3265                                     19
## 3266                                       
## 3267                                       
## 3268                                     19
## 3269                                       
## 3270                                     19
## 3271                                       
## 3272                                     16
## 3273                                       
## 3274                                     16
## 3275                                      5
## 3276                                      5
## 3277                                       
## 3278                                     16
## 3279                                     19
## 3280                                      5
## 3281                                       
## 3282                                       
## 3283                                       
## 3284                                       
## 3285                                       
## 3286                                     16
## 3287                                     19
## 3288                                       
## 3289                                      5
## 3290                                       
## 3291                                       
## 3292                                      5
## 3293                                       
## 3294                                       
## 3295                                       
## 3296                                     19
## 3297                                     16
## 3298                                       
## 3299                                       
## 3300                                       
## 3301                                       
## 3302                                       
## 3303                                     19
## 3304                                       
## 3305                                       
## 3306                                      5
## 3307                                       
## 3308                                       
## 3309                                     19
## 3310                                       
## 3311                                       
## 3312                                       
## 3313                                       
## 3314                                       
## 3315                                       
## 3316                                     19
## 3317                                     16
## 3318                                       
## 3319                                     16
## 3320                                       
## 3321                                       
## 3322                                       
## 3323                                     16
## 3324                                       
## 3325                                     19
## 3326                                     16
## 3327                                       
## 3328                                       
## 3329                                       
## 3330                                       
## 3331                                       
## 3332                                       
## 3333                                       
## 3334                                       
## 3335                                       
## 3336                                       
## 3337                                       
## 3338                                       
## 3339                                      5
## 3340                                       
## 3341                                       
## 3342                                       
## 3343                                       
## 3344                                       
## 3345                                       
## 3346                                       
## 3347                                       
## 3348                                     19
## 3349                                       
## 3350                                       
## 3351                                     19
## 3352                                       
## 3353                                     16
## 3354                                     16
## 3355                                     19
## 3356                                       
## 3357                                       
## 3358                                       
## 3359                                       
## 3360                                     19
## 3361                                       
## 3362                                       
## 3363                                       
## 3364                                       
## 3365                                       
## 3366                                      5
## 3367                                       
## 3368                                       
## 3369                                       
## 3370                                      5
## 3371                                       
## 3372                                     16
## 3373                                       
## 3374                                      5
## 3375                                       
## 3376                                     19
## 3377                                     16
## 3378                                       
## 3379                                       
## 3380                                       
## 3381                                      5
## 3382                                      5
## 3383                                     19
## 3384                                      5
## 3385                                       
## 3386                                       
## 3387                                     16
## 3388                                       
## 3389                                       
## 3390                                       
## 3391                                       
## 3392                                      5
## 3393                                      5
## 3394                                       
## 3395                                      5
## 3396                                     16
## 3397                                       
## 3398                                     19
## 3399                                       
## 3400                                       
## 3401                                      5
## 3402                                     16
## 3403                                     19
## 3404                                       
## 3405                                     19
## 3406                                       
## 3407                                       
## 3408                                       
## 3409                                       
## 3410                                       
## 3411                                     16
## 3412                                       
## 3413                                       
## 3414                                      5
## 3415                                       
## 3416                                     16
## 3417                                       
## 3418                                     16
## 3419                                       
## 3420                                       
## 3421                                       
## 3422                                       
## 3423                                     16
## 3424                                       
## 3425                                       
## 3426                                     16
## 3427                                       
## 3428                                     16
## 3429                                       
## 3430                                       
## 3431                                       
## 3432                                       
## 3433                                       
## 3434                                       
## 3435                                       
## 3436                                       
## 3437                                       
## 3438                                       
## 3439                                       
## 3440                                       
## 3441                                      5
## 3442                                       
## 3443                                     19
## 3444                                       
## 3445                                       
## 3446                                     19
## 3447                                     16
## 3448                                     19
##      Safety_of_care_national_comparison
## 1                         Not Available
## 2                         Not Available
## 3                         Not Available
## 4            Above the national average
## 5                         Not Available
## 6                         Not Available
## 7                         Not Available
## 8                         Not Available
## 9                         Not Available
## 10                        Not Available
## 11                        Not Available
## 12           Below the national average
## 13                        Not Available
## 14                        Not Available
## 15                        Not Available
## 16                        Not Available
## 17                        Not Available
## 18                        Not Available
## 19                        Not Available
## 20                        Not Available
## 21                        Not Available
## 22                        Not Available
## 23                        Not Available
## 24                        Not Available
## 25                        Not Available
## 26                        Not Available
## 27                        Not Available
## 28                        Not Available
## 29                        Not Available
## 30                        Not Available
## 31                        Not Available
## 32                        Not Available
## 33                        Not Available
## 34                        Not Available
## 35                        Not Available
## 36                        Not Available
## 37                        Not Available
## 38                        Not Available
## 39                        Not Available
## 40                        Not Available
## 41                        Not Available
## 42                        Not Available
## 43           Below the national average
## 44                        Not Available
## 45                        Not Available
## 46                        Not Available
## 47                        Not Available
## 48                        Not Available
## 49                        Not Available
## 50                        Not Available
## 51                        Not Available
## 52                        Not Available
## 53                        Not Available
## 54                        Not Available
## 55                        Not Available
## 56                        Not Available
## 57                        Not Available
## 58                        Not Available
## 59                        Not Available
## 60           Above the national average
## 61                        Not Available
## 62                        Not Available
## 63                        Not Available
## 64                        Not Available
## 65           Below the national average
## 66                        Not Available
## 67           Below the national average
## 68                        Not Available
## 69         Same as the national average
## 70           Above the national average
## 71           Above the national average
## 72         Same as the national average
## 73         Same as the national average
## 74                        Not Available
## 75                        Not Available
## 76         Same as the national average
## 77                        Not Available
## 78           Above the national average
## 79         Same as the national average
## 80         Same as the national average
## 81                        Not Available
## 82                        Not Available
## 83                        Not Available
## 84           Above the national average
## 85                        Not Available
## 86                        Not Available
## 87           Below the national average
## 88                        Not Available
## 89                        Not Available
## 90         Same as the national average
## 91           Below the national average
## 92         Same as the national average
## 93           Above the national average
## 94           Above the national average
## 95                        Not Available
## 96                        Not Available
## 97           Below the national average
## 98                        Not Available
## 99                        Not Available
## 100                       Not Available
## 101                       Not Available
## 102          Above the national average
## 103          Above the national average
## 104          Below the national average
## 105          Above the national average
## 106          Below the national average
## 107          Above the national average
## 108          Below the national average
## 109          Above the national average
## 110                       Not Available
## 111                       Not Available
## 112                       Not Available
## 113          Above the national average
## 114          Above the national average
## 115        Same as the national average
## 116                       Not Available
## 117                       Not Available
## 118                       Not Available
## 119                       Not Available
## 120                       Not Available
## 121                       Not Available
## 122                       Not Available
## 123          Above the national average
## 124          Below the national average
## 125                       Not Available
## 126                       Not Available
## 127                       Not Available
## 128          Above the national average
## 129                       Not Available
## 130                       Not Available
## 131          Below the national average
## 132                       Not Available
## 133          Above the national average
## 134                       Not Available
## 135                       Not Available
## 136                       Not Available
## 137                       Not Available
## 138                       Not Available
## 139          Below the national average
## 140        Same as the national average
## 141                       Not Available
## 142                       Not Available
## 143                       Not Available
## 144          Above the national average
## 145          Above the national average
## 146                       Not Available
## 147                       Not Available
## 148          Below the national average
## 149                       Not Available
## 150                       Not Available
## 151          Below the national average
## 152                       Not Available
## 153        Same as the national average
## 154                       Not Available
## 155          Below the national average
## 156          Below the national average
## 157                       Not Available
## 158                       Not Available
## 159                       Not Available
## 160        Same as the national average
## 161                       Not Available
## 162                       Not Available
## 163          Above the national average
## 164          Below the national average
## 165          Above the national average
## 166                       Not Available
## 167          Above the national average
## 168          Below the national average
## 169                       Not Available
## 170          Below the national average
## 171                       Not Available
## 172          Below the national average
## 173                       Not Available
## 174          Below the national average
## 175                       Not Available
## 176          Below the national average
## 177        Same as the national average
## 178                       Not Available
## 179                       Not Available
## 180          Above the national average
## 181                       Not Available
## 182                       Not Available
## 183          Below the national average
## 184                       Not Available
## 185        Same as the national average
## 186                       Not Available
## 187        Same as the national average
## 188                       Not Available
## 189          Below the national average
## 190                       Not Available
## 191                       Not Available
## 192          Below the national average
## 193                       Not Available
## 194          Below the national average
## 195                       Not Available
## 196          Above the national average
## 197                       Not Available
## 198          Above the national average
## 199                       Not Available
## 200                       Not Available
## 201                       Not Available
## 202        Same as the national average
## 203                       Not Available
## 204        Same as the national average
## 205                       Not Available
## 206                       Not Available
## 207                       Not Available
## 208          Above the national average
## 209          Above the national average
## 210                       Not Available
## 211                       Not Available
## 212                       Not Available
## 213                       Not Available
## 214                       Not Available
## 215                       Not Available
## 216                       Not Available
## 217          Above the national average
## 218          Below the national average
## 219                       Not Available
## 220                       Not Available
## 221          Above the national average
## 222                       Not Available
## 223          Below the national average
## 224                       Not Available
## 225          Below the national average
## 226                       Not Available
## 227                       Not Available
## 228                       Not Available
## 229          Above the national average
## 230                       Not Available
## 231                       Not Available
## 232        Same as the national average
## 233                       Not Available
## 234        Same as the national average
## 235          Below the national average
## 236        Same as the national average
## 237          Above the national average
## 238          Above the national average
## 239          Above the national average
## 240          Below the national average
## 241        Same as the national average
## 242        Same as the national average
## 243          Above the national average
## 244        Same as the national average
## 245          Below the national average
## 246                       Not Available
## 247          Below the national average
## 248                       Not Available
## 249                       Not Available
## 250                       Not Available
## 251          Above the national average
## 252                       Not Available
## 253          Below the national average
## 254                       Not Available
## 255          Above the national average
## 256                       Not Available
## 257          Above the national average
## 258          Below the national average
## 259                       Not Available
## 260          Below the national average
## 261                       Not Available
## 262                       Not Available
## 263        Same as the national average
## 264                       Not Available
## 265        Same as the national average
## 266                       Not Available
## 267          Above the national average
## 268                       Not Available
## 269        Same as the national average
## 270                       Not Available
## 271        Same as the national average
## 272                       Not Available
## 273                       Not Available
## 274                       Not Available
## 275                       Not Available
## 276          Below the national average
## 277                       Not Available
## 278                       Not Available
## 279        Same as the national average
## 280                       Not Available
## 281        Same as the national average
## 282        Same as the national average
## 283          Above the national average
## 284                       Not Available
## 285                       Not Available
## 286                       Not Available
## 287                       Not Available
## 288        Same as the national average
## 289                       Not Available
## 290          Below the national average
## 291                       Not Available
## 292        Same as the national average
## 293          Below the national average
## 294                       Not Available
## 295                       Not Available
## 296                       Not Available
## 297          Above the national average
## 298          Above the national average
## 299                       Not Available
## 300                       Not Available
## 301                       Not Available
## 302                       Not Available
## 303          Above the national average
## 304                       Not Available
## 305                       Not Available
## 306                       Not Available
## 307                       Not Available
## 308                       Not Available
## 309                       Not Available
## 310                       Not Available
## 311          Above the national average
## 312          Above the national average
## 313          Below the national average
## 314        Same as the national average
## 315                       Not Available
## 316        Same as the national average
## 317          Below the national average
## 318          Above the national average
## 319                       Not Available
## 320          Above the national average
## 321          Above the national average
## 322          Above the national average
## 323        Same as the national average
## 324                       Not Available
## 325        Same as the national average
## 326                       Not Available
## 327          Below the national average
## 328        Same as the national average
## 329                       Not Available
## 330                       Not Available
## 331          Below the national average
## 332          Below the national average
## 333          Above the national average
## 334          Above the national average
## 335          Above the national average
## 336                       Not Available
## 337          Below the national average
## 338                       Not Available
## 339          Above the national average
## 340          Below the national average
## 341          Above the national average
## 342                       Not Available
## 343          Above the national average
## 344                       Not Available
## 345          Above the national average
## 346          Above the national average
## 347                       Not Available
## 348                       Not Available
## 349          Above the national average
## 350          Above the national average
## 351                       Not Available
## 352          Below the national average
## 353                       Not Available
## 354          Below the national average
## 355                       Not Available
## 356          Above the national average
## 357          Above the national average
## 358          Above the national average
## 359        Same as the national average
## 360                       Not Available
## 361        Same as the national average
## 362        Same as the national average
## 363          Below the national average
## 364                       Not Available
## 365        Same as the national average
## 366          Above the national average
## 367          Below the national average
## 368          Below the national average
## 369          Below the national average
## 370          Below the national average
## 371        Same as the national average
## 372        Same as the national average
## 373          Above the national average
## 374          Below the national average
## 375                       Not Available
## 376                       Not Available
## 377                       Not Available
## 378                       Not Available
## 379                       Not Available
## 380          Above the national average
## 381          Above the national average
## 382                       Not Available
## 383        Same as the national average
## 384                       Not Available
## 385                       Not Available
## 386                       Not Available
## 387          Above the national average
## 388                       Not Available
## 389          Below the national average
## 390          Below the national average
## 391          Above the national average
## 392          Above the national average
## 393                       Not Available
## 394          Above the national average
## 395          Below the national average
## 396        Same as the national average
## 397                       Not Available
## 398        Same as the national average
## 399        Same as the national average
## 400          Above the national average
## 401                       Not Available
## 402                       Not Available
## 403                       Not Available
## 404          Below the national average
## 405                       Not Available
## 406        Same as the national average
## 407                       Not Available
## 408                       Not Available
## 409                       Not Available
## 410                       Not Available
## 411          Below the national average
## 412          Above the national average
## 413                       Not Available
## 414          Above the national average
## 415                       Not Available
## 416          Above the national average
## 417                       Not Available
## 418                       Not Available
## 419        Same as the national average
## 420                       Not Available
## 421                       Not Available
## 422          Above the national average
## 423          Above the national average
## 424                       Not Available
## 425                       Not Available
## 426          Above the national average
## 427                       Not Available
## 428          Above the national average
## 429                       Not Available
## 430          Below the national average
## 431          Above the national average
## 432                       Not Available
## 433          Above the national average
## 434          Above the national average
## 435                       Not Available
## 436                       Not Available
## 437                       Not Available
## 438        Same as the national average
## 439          Below the national average
## 440                       Not Available
## 441                       Not Available
## 442                       Not Available
## 443                       Not Available
## 444          Above the national average
## 445                       Not Available
## 446          Below the national average
## 447          Below the national average
## 448                       Not Available
## 449          Below the national average
## 450          Below the national average
## 451                       Not Available
## 452                       Not Available
## 453                       Not Available
## 454          Above the national average
## 455        Same as the national average
## 456          Below the national average
## 457                       Not Available
## 458          Below the national average
## 459          Below the national average
## 460          Below the national average
## 461          Above the national average
## 462        Same as the national average
## 463                       Not Available
## 464          Below the national average
## 465        Same as the national average
## 466        Same as the national average
## 467          Below the national average
## 468          Above the national average
## 469                       Not Available
## 470          Below the national average
## 471          Above the national average
## 472                       Not Available
## 473          Above the national average
## 474        Same as the national average
## 475                       Not Available
## 476                       Not Available
## 477          Above the national average
## 478          Above the national average
## 479          Below the national average
## 480          Below the national average
## 481        Same as the national average
## 482          Above the national average
## 483        Same as the national average
## 484        Same as the national average
## 485          Below the national average
## 486                       Not Available
## 487                       Not Available
## 488          Below the national average
## 489          Below the national average
## 490                       Not Available
## 491          Below the national average
## 492          Above the national average
## 493          Above the national average
## 494          Above the national average
## 495        Same as the national average
## 496          Below the national average
## 497          Below the national average
## 498          Above the national average
## 499                       Not Available
## 500                       Not Available
## 501                       Not Available
## 502                       Not Available
## 503          Above the national average
## 504          Below the national average
## 505                       Not Available
## 506                       Not Available
## 507                       Not Available
## 508                       Not Available
## 509                       Not Available
## 510          Below the national average
## 511                       Not Available
## 512          Below the national average
## 513          Below the national average
## 514          Above the national average
## 515                       Not Available
## 516                       Not Available
## 517                       Not Available
## 518          Below the national average
## 519        Same as the national average
## 520          Below the national average
## 521                       Not Available
## 522                       Not Available
## 523          Below the national average
## 524          Below the national average
## 525        Same as the national average
## 526          Above the national average
## 527          Above the national average
## 528                       Not Available
## 529                       Not Available
## 530          Above the national average
## 531                       Not Available
## 532                       Not Available
## 533          Above the national average
## 534          Above the national average
## 535                       Not Available
## 536          Above the national average
## 537          Above the national average
## 538                       Not Available
## 539          Above the national average
## 540                       Not Available
## 541          Below the national average
## 542                       Not Available
## 543                       Not Available
## 544                       Not Available
## 545          Below the national average
## 546          Below the national average
## 547          Above the national average
## 548                       Not Available
## 549          Below the national average
## 550          Below the national average
## 551          Below the national average
## 552        Same as the national average
## 553                       Not Available
## 554                       Not Available
## 555          Below the national average
## 556          Above the national average
## 557          Below the national average
## 558        Same as the national average
## 559          Below the national average
## 560          Above the national average
## 561          Above the national average
## 562          Below the national average
## 563                       Not Available
## 564        Same as the national average
## 565                       Not Available
## 566          Below the national average
## 567                       Not Available
## 568        Same as the national average
## 569                       Not Available
## 570                       Not Available
## 571          Above the national average
## 572          Below the national average
## 573          Above the national average
## 574          Below the national average
## 575                       Not Available
## 576          Below the national average
## 577          Below the national average
## 578          Below the national average
## 579                       Not Available
## 580          Below the national average
## 581                       Not Available
## 582          Above the national average
## 583          Below the national average
## 584          Below the national average
## 585                       Not Available
## 586                       Not Available
## 587                       Not Available
## 588        Same as the national average
## 589                       Not Available
## 590                       Not Available
## 591          Above the national average
## 592                       Not Available
## 593                       Not Available
## 594                       Not Available
## 595          Below the national average
## 596                       Not Available
## 597          Above the national average
## 598                       Not Available
## 599                       Not Available
## 600          Above the national average
## 601                       Not Available
## 602          Below the national average
## 603          Below the national average
## 604        Same as the national average
## 605                       Not Available
## 606                       Not Available
## 607                       Not Available
## 608          Above the national average
## 609                       Not Available
## 610                       Not Available
## 611                       Not Available
## 612                       Not Available
## 613          Below the national average
## 614                       Not Available
## 615          Below the national average
## 616        Same as the national average
## 617                       Not Available
## 618          Below the national average
## 619          Above the national average
## 620          Below the national average
## 621                       Not Available
## 622        Same as the national average
## 623                       Not Available
## 624                       Not Available
## 625          Above the national average
## 626          Above the national average
## 627          Below the national average
## 628                       Not Available
## 629          Below the national average
## 630                       Not Available
## 631                       Not Available
## 632          Above the national average
## 633                       Not Available
## 634        Same as the national average
## 635          Above the national average
## 636                       Not Available
## 637                       Not Available
## 638                       Not Available
## 639        Same as the national average
## 640          Below the national average
## 641                       Not Available
## 642                       Not Available
## 643        Same as the national average
## 644          Below the national average
## 645                       Not Available
## 646                       Not Available
## 647                       Not Available
## 648                       Not Available
## 649                       Not Available
## 650          Below the national average
## 651                       Not Available
## 652                       Not Available
## 653          Above the national average
## 654          Above the national average
## 655        Same as the national average
## 656          Below the national average
## 657        Same as the national average
## 658        Same as the national average
## 659                       Not Available
## 660          Above the national average
## 661                       Not Available
## 662          Above the national average
## 663          Above the national average
## 664                       Not Available
## 665                       Not Available
## 666                       Not Available
## 667        Same as the national average
## 668                       Not Available
## 669                       Not Available
## 670          Below the national average
## 671          Below the national average
## 672          Below the national average
## 673                       Not Available
## 674                       Not Available
## 675        Same as the national average
## 676          Below the national average
## 677                       Not Available
## 678          Below the national average
## 679                       Not Available
## 680                       Not Available
## 681          Above the national average
## 682        Same as the national average
## 683                       Not Available
## 684                       Not Available
## 685          Above the national average
## 686          Above the national average
## 687                       Not Available
## 688                       Not Available
## 689                       Not Available
## 690                       Not Available
## 691                       Not Available
## 692          Above the national average
## 693                       Not Available
## 694        Same as the national average
## 695          Below the national average
## 696                       Not Available
## 697                       Not Available
## 698                       Not Available
## 699          Below the national average
## 700                       Not Available
## 701                       Not Available
## 702                       Not Available
## 703                       Not Available
## 704          Above the national average
## 705                       Not Available
## 706                       Not Available
## 707          Below the national average
## 708                       Not Available
## 709                       Not Available
## 710                       Not Available
## 711                       Not Available
## 712          Below the national average
## 713                       Not Available
## 714                       Not Available
## 715          Above the national average
## 716        Same as the national average
## 717                       Not Available
## 718          Above the national average
## 719                       Not Available
## 720                       Not Available
## 721        Same as the national average
## 722                       Not Available
## 723        Same as the national average
## 724          Above the national average
## 725        Same as the national average
## 726                       Not Available
## 727          Below the national average
## 728                       Not Available
## 729          Above the national average
## 730                       Not Available
## 731          Below the national average
## 732          Above the national average
## 733        Same as the national average
## 734                       Not Available
## 735                       Not Available
## 736                       Not Available
## 737          Below the national average
## 738                       Not Available
## 739          Above the national average
## 740                       Not Available
## 741                       Not Available
## 742        Same as the national average
## 743        Same as the national average
## 744          Above the national average
## 745                       Not Available
## 746          Below the national average
## 747          Below the national average
## 748          Above the national average
## 749                       Not Available
## 750                       Not Available
## 751                       Not Available
## 752          Below the national average
## 753        Same as the national average
## 754                       Not Available
## 755          Below the national average
## 756                       Not Available
## 757          Below the national average
## 758                       Not Available
## 759                       Not Available
## 760          Below the national average
## 761                       Not Available
## 762                       Not Available
## 763                       Not Available
## 764                       Not Available
## 765        Same as the national average
## 766                       Not Available
## 767          Above the national average
## 768                       Not Available
## 769        Same as the national average
## 770          Below the national average
## 771                       Not Available
## 772          Above the national average
## 773          Below the national average
## 774          Above the national average
## 775          Above the national average
## 776          Below the national average
## 777                       Not Available
## 778          Above the national average
## 779        Same as the national average
## 780        Same as the national average
## 781                       Not Available
## 782        Same as the national average
## 783                       Not Available
## 784          Above the national average
## 785                       Not Available
## 786                       Not Available
## 787        Same as the national average
## 788          Below the national average
## 789        Same as the national average
## 790                       Not Available
## 791          Above the national average
## 792                       Not Available
## 793                       Not Available
## 794          Below the national average
## 795          Below the national average
## 796        Same as the national average
## 797          Above the national average
## 798                       Not Available
## 799          Above the national average
## 800          Above the national average
## 801          Above the national average
## 802          Above the national average
## 803                       Not Available
## 804                       Not Available
## 805          Below the national average
## 806                       Not Available
## 807                       Not Available
## 808          Above the national average
## 809                       Not Available
## 810                       Not Available
## 811        Same as the national average
## 812          Below the national average
## 813                       Not Available
## 814                       Not Available
## 815          Above the national average
## 816                       Not Available
## 817                       Not Available
## 818          Below the national average
## 819          Above the national average
## 820        Same as the national average
## 821          Above the national average
## 822                       Not Available
## 823                       Not Available
## 824          Below the national average
## 825                       Not Available
## 826          Below the national average
## 827          Above the national average
## 828          Below the national average
## 829                       Not Available
## 830          Above the national average
## 831                       Not Available
## 832                       Not Available
## 833          Below the national average
## 834                       Not Available
## 835                       Not Available
## 836          Below the national average
## 837                       Not Available
## 838        Same as the national average
## 839          Above the national average
## 840          Above the national average
## 841          Below the national average
## 842                       Not Available
## 843                       Not Available
## 844          Below the national average
## 845                       Not Available
## 846                       Not Available
## 847                       Not Available
## 848                       Not Available
## 849                       Not Available
## 850                       Not Available
## 851          Below the national average
## 852          Above the national average
## 853                       Not Available
## 854          Above the national average
## 855          Below the national average
## 856          Above the national average
## 857                       Not Available
## 858          Above the national average
## 859                       Not Available
## 860        Same as the national average
## 861          Above the national average
## 862                       Not Available
## 863                       Not Available
## 864                       Not Available
## 865                       Not Available
## 866          Above the national average
## 867          Below the national average
## 868          Below the national average
## 869          Above the national average
## 870          Below the national average
## 871        Same as the national average
## 872          Above the national average
## 873          Below the national average
## 874          Above the national average
## 875          Below the national average
## 876          Above the national average
## 877                       Not Available
## 878                       Not Available
## 879                       Not Available
## 880        Same as the national average
## 881          Above the national average
## 882                       Not Available
## 883        Same as the national average
## 884          Below the national average
## 885          Above the national average
## 886                       Not Available
## 887          Below the national average
## 888          Below the national average
## 889          Below the national average
## 890                       Not Available
## 891                       Not Available
## 892          Below the national average
## 893          Below the national average
## 894          Above the national average
## 895          Below the national average
## 896                       Not Available
## 897          Below the national average
## 898                       Not Available
## 899                       Not Available
## 900                       Not Available
## 901          Above the national average
## 902                       Not Available
## 903                       Not Available
## 904                       Not Available
## 905          Below the national average
## 906                       Not Available
## 907          Below the national average
## 908                       Not Available
## 909                       Not Available
## 910                       Not Available
## 911          Above the national average
## 912                       Not Available
## 913          Above the national average
## 914                       Not Available
## 915                       Not Available
## 916                       Not Available
## 917                       Not Available
## 918          Above the national average
## 919                       Not Available
## 920                       Not Available
## 921                       Not Available
## 922                       Not Available
## 923                       Not Available
## 924          Above the national average
## 925          Above the national average
## 926          Above the national average
## 927          Below the national average
## 928        Same as the national average
## 929                       Not Available
## 930          Above the national average
## 931                       Not Available
## 932                       Not Available
## 933                       Not Available
## 934          Above the national average
## 935          Above the national average
## 936                       Not Available
## 937          Below the national average
## 938                       Not Available
## 939          Above the national average
## 940          Above the national average
## 941        Same as the national average
## 942          Above the national average
## 943                       Not Available
## 944        Same as the national average
## 945          Below the national average
## 946                       Not Available
## 947                       Not Available
## 948                       Not Available
## 949                       Not Available
## 950          Above the national average
## 951          Below the national average
## 952                       Not Available
## 953                       Not Available
## 954                       Not Available
## 955          Below the national average
## 956          Above the national average
## 957                       Not Available
## 958                       Not Available
## 959          Above the national average
## 960          Below the national average
## 961        Same as the national average
## 962                       Not Available
## 963                       Not Available
## 964                       Not Available
## 965          Below the national average
## 966          Below the national average
## 967          Above the national average
## 968          Above the national average
## 969          Above the national average
## 970          Below the national average
## 971                       Not Available
## 972                       Not Available
## 973                       Not Available
## 974                       Not Available
## 975                       Not Available
## 976                       Not Available
## 977        Same as the national average
## 978          Below the national average
## 979                       Not Available
## 980                       Not Available
## 981          Above the national average
## 982                       Not Available
## 983                       Not Available
## 984          Above the national average
## 985          Above the national average
## 986                       Not Available
## 987        Same as the national average
## 988                       Not Available
## 989                       Not Available
## 990                       Not Available
## 991          Below the national average
## 992                       Not Available
## 993          Above the national average
## 994          Above the national average
## 995          Above the national average
## 996          Below the national average
## 997                       Not Available
## 998          Below the national average
## 999          Above the national average
## 1000                      Not Available
## 1001                      Not Available
## 1002                      Not Available
## 1003         Below the national average
## 1004                      Not Available
## 1005                      Not Available
## 1006         Above the national average
## 1007         Above the national average
## 1008         Above the national average
## 1009                      Not Available
## 1010         Below the national average
## 1011                      Not Available
## 1012                      Not Available
## 1013         Above the national average
## 1014         Above the national average
## 1015                      Not Available
## 1016                      Not Available
## 1017         Below the national average
## 1018                      Not Available
## 1019                      Not Available
## 1020                      Not Available
## 1021                      Not Available
## 1022                      Not Available
## 1023         Above the national average
## 1024         Below the national average
## 1025                      Not Available
## 1026                      Not Available
## 1027                      Not Available
## 1028                      Not Available
## 1029                      Not Available
## 1030       Same as the national average
## 1031                      Not Available
## 1032                      Not Available
## 1033         Above the national average
## 1034         Below the national average
## 1035                      Not Available
## 1036                      Not Available
## 1037                      Not Available
## 1038                      Not Available
## 1039                      Not Available
## 1040         Above the national average
## 1041                      Not Available
## 1042                      Not Available
## 1043         Above the national average
## 1044                      Not Available
## 1045         Below the national average
## 1046         Above the national average
## 1047         Above the national average
## 1048                      Not Available
## 1049                      Not Available
## 1050                      Not Available
## 1051                      Not Available
## 1052                      Not Available
## 1053         Below the national average
## 1054       Same as the national average
## 1055         Below the national average
## 1056         Above the national average
## 1057         Below the national average
## 1058         Below the national average
## 1059         Above the national average
## 1060                      Not Available
## 1061                      Not Available
## 1062                      Not Available
## 1063         Above the national average
## 1064         Above the national average
## 1065         Below the national average
## 1066         Above the national average
## 1067       Same as the national average
## 1068                      Not Available
## 1069         Below the national average
## 1070                      Not Available
## 1071         Above the national average
## 1072                      Not Available
## 1073                      Not Available
## 1074                      Not Available
## 1075                      Not Available
## 1076                      Not Available
## 1077       Same as the national average
## 1078         Above the national average
## 1079         Below the national average
## 1080                      Not Available
## 1081         Below the national average
## 1082         Above the national average
## 1083         Below the national average
## 1084                      Not Available
## 1085         Above the national average
## 1086         Above the national average
## 1087                      Not Available
## 1088                      Not Available
## 1089         Below the national average
## 1090                      Not Available
## 1091         Below the national average
## 1092         Above the national average
## 1093         Below the national average
## 1094                      Not Available
## 1095                      Not Available
## 1096                      Not Available
## 1097                      Not Available
## 1098       Same as the national average
## 1099       Same as the national average
## 1100                      Not Available
## 1101       Same as the national average
## 1102                      Not Available
## 1103                      Not Available
## 1104         Above the national average
## 1105         Above the national average
## 1106                      Not Available
## 1107                      Not Available
## 1108         Above the national average
## 1109                      Not Available
## 1110         Below the national average
## 1111                      Not Available
## 1112                      Not Available
## 1113                      Not Available
## 1114                      Not Available
## 1115                      Not Available
## 1116         Above the national average
## 1117                      Not Available
## 1118                      Not Available
## 1119                      Not Available
## 1120                      Not Available
## 1121       Same as the national average
## 1122       Same as the national average
## 1123         Above the national average
## 1124                      Not Available
## 1125         Below the national average
## 1126         Below the national average
## 1127         Above the national average
## 1128         Above the national average
## 1129         Above the national average
## 1130                      Not Available
## 1131       Same as the national average
## 1132         Below the national average
## 1133                      Not Available
## 1134         Above the national average
## 1135         Above the national average
## 1136         Below the national average
## 1137                      Not Available
## 1138         Below the national average
## 1139                      Not Available
## 1140         Above the national average
## 1141                      Not Available
## 1142         Below the national average
## 1143         Above the national average
## 1144                      Not Available
## 1145                      Not Available
## 1146                      Not Available
## 1147                      Not Available
## 1148                      Not Available
## 1149                      Not Available
## 1150                      Not Available
## 1151       Same as the national average
## 1152         Above the national average
## 1153                      Not Available
## 1154                      Not Available
## 1155         Above the national average
## 1156                      Not Available
## 1157         Below the national average
## 1158         Below the national average
## 1159         Below the national average
## 1160         Above the national average
## 1161                      Not Available
## 1162                      Not Available
## 1163         Below the national average
## 1164         Above the national average
## 1165                      Not Available
## 1166         Above the national average
## 1167                      Not Available
## 1168                      Not Available
## 1169                      Not Available
## 1170         Below the national average
## 1171                      Not Available
## 1172       Same as the national average
## 1173                      Not Available
## 1174                      Not Available
## 1175                      Not Available
## 1176         Above the national average
## 1177         Above the national average
## 1178                      Not Available
## 1179                      Not Available
## 1180                      Not Available
## 1181                      Not Available
## 1182         Below the national average
## 1183       Same as the national average
## 1184                      Not Available
## 1185                      Not Available
## 1186         Below the national average
## 1187         Above the national average
## 1188                      Not Available
## 1189       Same as the national average
## 1190       Same as the national average
## 1191         Below the national average
## 1192         Above the national average
## 1193                      Not Available
## 1194                      Not Available
## 1195                      Not Available
## 1196       Same as the national average
## 1197                      Not Available
## 1198         Above the national average
## 1199                      Not Available
## 1200                      Not Available
## 1201                      Not Available
## 1202                      Not Available
## 1203         Below the national average
## 1204                      Not Available
## 1205       Same as the national average
## 1206                      Not Available
## 1207                      Not Available
## 1208                      Not Available
## 1209         Above the national average
## 1210         Below the national average
## 1211         Below the national average
## 1212                      Not Available
## 1213                      Not Available
## 1214         Above the national average
## 1215       Same as the national average
## 1216                      Not Available
## 1217                      Not Available
## 1218         Below the national average
## 1219                      Not Available
## 1220         Below the national average
## 1221                      Not Available
## 1222         Below the national average
## 1223                      Not Available
## 1224         Above the national average
## 1225                      Not Available
## 1226         Above the national average
## 1227                      Not Available
## 1228         Above the national average
## 1229         Above the national average
## 1230                      Not Available
## 1231                      Not Available
## 1232                      Not Available
## 1233                      Not Available
## 1234                      Not Available
## 1235                      Not Available
## 1236       Same as the national average
## 1237                      Not Available
## 1238       Same as the national average
## 1239                      Not Available
## 1240         Below the national average
## 1241                      Not Available
## 1242                      Not Available
## 1243         Above the national average
## 1244         Below the national average
## 1245         Above the national average
## 1246         Below the national average
## 1247                      Not Available
## 1248                      Not Available
## 1249         Below the national average
## 1250         Above the national average
## 1251       Same as the national average
## 1252                      Not Available
## 1253                      Not Available
## 1254                      Not Available
## 1255                      Not Available
## 1256         Above the national average
## 1257       Same as the national average
## 1258         Above the national average
## 1259                      Not Available
## 1260         Below the national average
## 1261                      Not Available
## 1262                      Not Available
## 1263       Same as the national average
## 1264                      Not Available
## 1265         Above the national average
## 1266         Below the national average
## 1267                      Not Available
## 1268         Below the national average
## 1269                      Not Available
## 1270       Same as the national average
## 1271         Below the national average
## 1272                      Not Available
## 1273         Below the national average
## 1274       Same as the national average
## 1275         Below the national average
## 1276                      Not Available
## 1277         Above the national average
## 1278         Below the national average
## 1279                      Not Available
## 1280         Below the national average
## 1281         Below the national average
## 1282       Same as the national average
## 1283                      Not Available
## 1284         Below the national average
## 1285                      Not Available
## 1286         Above the national average
## 1287       Same as the national average
## 1288                      Not Available
## 1289                      Not Available
## 1290                      Not Available
## 1291         Above the national average
## 1292         Above the national average
## 1293                      Not Available
## 1294                      Not Available
## 1295                      Not Available
## 1296         Below the national average
## 1297                      Not Available
## 1298       Same as the national average
## 1299                      Not Available
## 1300         Above the national average
## 1301                      Not Available
## 1302       Same as the national average
## 1303                      Not Available
## 1304       Same as the national average
## 1305         Above the national average
## 1306                      Not Available
## 1307         Above the national average
## 1308         Below the national average
## 1309                      Not Available
## 1310         Below the national average
## 1311                      Not Available
## 1312         Above the national average
## 1313                      Not Available
## 1314       Same as the national average
## 1315                      Not Available
## 1316                      Not Available
## 1317       Same as the national average
## 1318       Same as the national average
## 1319         Below the national average
## 1320         Above the national average
## 1321         Below the national average
## 1322         Above the national average
## 1323                      Not Available
## 1324       Same as the national average
## 1325         Above the national average
## 1326         Below the national average
## 1327                      Not Available
## 1328       Same as the national average
## 1329         Above the national average
## 1330                      Not Available
## 1331       Same as the national average
## 1332         Below the national average
## 1333                      Not Available
## 1334                      Not Available
## 1335         Below the national average
## 1336                      Not Available
## 1337         Below the national average
## 1338                      Not Available
## 1339         Above the national average
## 1340                      Not Available
## 1341                      Not Available
## 1342       Same as the national average
## 1343                      Not Available
## 1344                      Not Available
## 1345         Above the national average
## 1346         Below the national average
## 1347                      Not Available
## 1348       Same as the national average
## 1349                      Not Available
## 1350         Above the national average
## 1351       Same as the national average
## 1352         Below the national average
## 1353                      Not Available
## 1354                      Not Available
## 1355         Below the national average
## 1356                      Not Available
## 1357                      Not Available
## 1358         Above the national average
## 1359                      Not Available
## 1360                      Not Available
## 1361         Above the national average
## 1362       Same as the national average
## 1363         Above the national average
## 1364         Above the national average
## 1365                      Not Available
## 1366                      Not Available
## 1367         Below the national average
## 1368         Above the national average
## 1369                      Not Available
## 1370       Same as the national average
## 1371                      Not Available
## 1372                      Not Available
## 1373                      Not Available
## 1374         Above the national average
## 1375         Below the national average
## 1376         Above the national average
## 1377                      Not Available
## 1378                      Not Available
## 1379                      Not Available
## 1380                      Not Available
## 1381                      Not Available
## 1382         Above the national average
## 1383                      Not Available
## 1384                      Not Available
## 1385         Above the national average
## 1386       Same as the national average
## 1387         Below the national average
## 1388         Above the national average
## 1389         Above the national average
## 1390         Above the national average
## 1391                      Not Available
## 1392         Above the national average
## 1393         Below the national average
## 1394         Above the national average
## 1395         Above the national average
## 1396       Same as the national average
## 1397         Below the national average
## 1398         Above the national average
## 1399                      Not Available
## 1400                      Not Available
## 1401         Above the national average
## 1402                      Not Available
## 1403                      Not Available
## 1404         Below the national average
## 1405                      Not Available
## 1406                      Not Available
## 1407                      Not Available
## 1408         Below the national average
## 1409         Below the national average
## 1410                      Not Available
## 1411         Below the national average
## 1412         Above the national average
## 1413         Above the national average
## 1414                      Not Available
## 1415         Below the national average
## 1416                      Not Available
## 1417         Above the national average
## 1418         Above the national average
## 1419                      Not Available
## 1420                      Not Available
## 1421                      Not Available
## 1422         Above the national average
## 1423         Above the national average
## 1424                      Not Available
## 1425         Below the national average
## 1426                      Not Available
## 1427                      Not Available
## 1428       Same as the national average
## 1429         Above the national average
## 1430                      Not Available
## 1431                      Not Available
## 1432                      Not Available
## 1433                      Not Available
## 1434                      Not Available
## 1435         Above the national average
## 1436                      Not Available
## 1437       Same as the national average
## 1438         Above the national average
## 1439         Below the national average
## 1440                      Not Available
## 1441                      Not Available
## 1442                      Not Available
## 1443         Above the national average
## 1444       Same as the national average
## 1445         Above the national average
## 1446         Above the national average
## 1447         Above the national average
## 1448                      Not Available
## 1449                      Not Available
## 1450                      Not Available
## 1451         Above the national average
## 1452         Below the national average
## 1453         Above the national average
## 1454         Above the national average
## 1455         Above the national average
## 1456                      Not Available
## 1457         Above the national average
## 1458                      Not Available
## 1459                      Not Available
## 1460                      Not Available
## 1461                      Not Available
## 1462                      Not Available
## 1463                      Not Available
## 1464         Above the national average
## 1465                      Not Available
## 1466         Above the national average
## 1467                      Not Available
## 1468         Below the national average
## 1469                      Not Available
## 1470         Below the national average
## 1471         Above the national average
## 1472       Same as the national average
## 1473                      Not Available
## 1474                      Not Available
## 1475                      Not Available
## 1476         Above the national average
## 1477       Same as the national average
## 1478                      Not Available
## 1479         Above the national average
## 1480                      Not Available
## 1481         Below the national average
## 1482                      Not Available
## 1483         Below the national average
## 1484         Above the national average
## 1485                      Not Available
## 1486         Below the national average
## 1487                      Not Available
## 1488         Above the national average
## 1489                      Not Available
## 1490         Above the national average
## 1491         Above the national average
## 1492         Above the national average
## 1493                      Not Available
## 1494                      Not Available
## 1495         Above the national average
## 1496       Same as the national average
## 1497       Same as the national average
## 1498                      Not Available
## 1499                      Not Available
## 1500         Below the national average
## 1501         Above the national average
## 1502       Same as the national average
## 1503         Above the national average
## 1504         Below the national average
## 1505         Below the national average
## 1506         Above the national average
## 1507         Below the national average
## 1508         Above the national average
## 1509       Same as the national average
## 1510                      Not Available
## 1511                      Not Available
## 1512                      Not Available
## 1513                      Not Available
## 1514                      Not Available
## 1515         Below the national average
## 1516         Below the national average
## 1517         Above the national average
## 1518                      Not Available
## 1519                      Not Available
## 1520                      Not Available
## 1521                      Not Available
## 1522         Above the national average
## 1523                      Not Available
## 1524                      Not Available
## 1525                      Not Available
## 1526       Same as the national average
## 1527                      Not Available
## 1528         Above the national average
## 1529         Below the national average
## 1530         Below the national average
## 1531                      Not Available
## 1532         Above the national average
## 1533         Above the national average
## 1534       Same as the national average
## 1535         Above the national average
## 1536         Above the national average
## 1537         Below the national average
## 1538         Below the national average
## 1539                      Not Available
## 1540         Below the national average
## 1541         Above the national average
## 1542         Below the national average
## 1543         Above the national average
## 1544         Above the national average
## 1545         Below the national average
## 1546         Above the national average
## 1547                      Not Available
## 1548                      Not Available
## 1549         Below the national average
## 1550                      Not Available
## 1551                      Not Available
## 1552       Same as the national average
## 1553         Above the national average
## 1554                      Not Available
## 1555                      Not Available
## 1556                      Not Available
## 1557         Below the national average
## 1558                      Not Available
## 1559         Below the national average
## 1560                      Not Available
## 1561                      Not Available
## 1562                      Not Available
## 1563         Above the national average
## 1564         Above the national average
## 1565         Above the national average
## 1566       Same as the national average
## 1567       Same as the national average
## 1568                      Not Available
## 1569                      Not Available
## 1570         Above the national average
## 1571                      Not Available
## 1572                      Not Available
## 1573         Below the national average
## 1574                      Not Available
## 1575         Above the national average
## 1576         Below the national average
## 1577                      Not Available
## 1578       Same as the national average
## 1579         Above the national average
## 1580         Above the national average
## 1581                      Not Available
## 1582         Below the national average
## 1583                      Not Available
## 1584         Above the national average
## 1585         Above the national average
## 1586       Same as the national average
## 1587       Same as the national average
## 1588                      Not Available
## 1589         Above the national average
## 1590         Below the national average
## 1591         Below the national average
## 1592                      Not Available
## 1593         Below the national average
## 1594         Below the national average
## 1595                      Not Available
## 1596         Above the national average
## 1597         Above the national average
## 1598                      Not Available
## 1599         Below the national average
## 1600         Below the national average
## 1601         Above the national average
## 1602                      Not Available
## 1603         Below the national average
## 1604         Below the national average
## 1605                      Not Available
## 1606       Same as the national average
## 1607                      Not Available
## 1608         Below the national average
## 1609         Above the national average
## 1610                      Not Available
## 1611         Above the national average
## 1612         Above the national average
## 1613                      Not Available
## 1614                      Not Available
## 1615         Above the national average
## 1616                      Not Available
## 1617                      Not Available
## 1618                      Not Available
## 1619         Below the national average
## 1620                      Not Available
## 1621         Below the national average
## 1622         Above the national average
## 1623                      Not Available
## 1624                      Not Available
## 1625         Above the national average
## 1626                      Not Available
## 1627                      Not Available
## 1628         Above the national average
## 1629                      Not Available
## 1630         Below the national average
## 1631         Above the national average
## 1632         Above the national average
## 1633       Same as the national average
## 1634         Above the national average
## 1635       Same as the national average
## 1636                      Not Available
## 1637         Above the national average
## 1638         Below the national average
## 1639                      Not Available
## 1640       Same as the national average
## 1641                      Not Available
## 1642                      Not Available
## 1643                      Not Available
## 1644                      Not Available
## 1645                      Not Available
## 1646       Same as the national average
## 1647                      Not Available
## 1648                      Not Available
## 1649                      Not Available
## 1650         Above the national average
## 1651                      Not Available
## 1652         Above the national average
## 1653       Same as the national average
## 1654                      Not Available
## 1655                      Not Available
## 1656       Same as the national average
## 1657                      Not Available
## 1658                      Not Available
## 1659         Above the national average
## 1660         Below the national average
## 1661                      Not Available
## 1662                      Not Available
## 1663         Below the national average
## 1664         Below the national average
## 1665       Same as the national average
## 1666         Below the national average
## 1667         Above the national average
## 1668                      Not Available
## 1669                      Not Available
## 1670                      Not Available
## 1671                      Not Available
## 1672                      Not Available
## 1673       Same as the national average
## 1674         Above the national average
## 1675         Below the national average
## 1676         Above the national average
## 1677       Same as the national average
## 1678         Below the national average
## 1679                      Not Available
## 1680         Above the national average
## 1681       Same as the national average
## 1682                      Not Available
## 1683                      Not Available
## 1684         Above the national average
## 1685                      Not Available
## 1686         Above the national average
## 1687                      Not Available
## 1688                      Not Available
## 1689         Below the national average
## 1690                      Not Available
## 1691                      Not Available
## 1692                      Not Available
## 1693                      Not Available
## 1694                      Not Available
## 1695                      Not Available
## 1696         Above the national average
## 1697                      Not Available
## 1698                      Not Available
## 1699         Above the national average
## 1700                      Not Available
## 1701         Below the national average
## 1702                      Not Available
## 1703       Same as the national average
## 1704                      Not Available
## 1705                      Not Available
## 1706         Above the national average
## 1707         Above the national average
## 1708                      Not Available
## 1709                      Not Available
## 1710         Below the national average
## 1711         Below the national average
## 1712         Below the national average
## 1713                      Not Available
## 1714                      Not Available
## 1715         Below the national average
## 1716         Below the national average
## 1717       Same as the national average
## 1718                      Not Available
## 1719         Below the national average
## 1720                      Not Available
## 1721                      Not Available
## 1722                      Not Available
## 1723         Above the national average
## 1724                      Not Available
## 1725                      Not Available
## 1726       Same as the national average
## 1727                      Not Available
## 1728                      Not Available
## 1729         Above the national average
## 1730                      Not Available
## 1731                      Not Available
## 1732         Below the national average
## 1733         Above the national average
## 1734                      Not Available
## 1735         Above the national average
## 1736                      Not Available
## 1737                      Not Available
## 1738         Below the national average
## 1739                      Not Available
## 1740       Same as the national average
## 1741                      Not Available
## 1742         Above the national average
## 1743       Same as the national average
## 1744       Same as the national average
## 1745                      Not Available
## 1746                      Not Available
## 1747                      Not Available
## 1748                      Not Available
## 1749                      Not Available
## 1750                      Not Available
## 1751                      Not Available
## 1752         Above the national average
## 1753                      Not Available
## 1754                      Not Available
## 1755         Above the national average
## 1756         Below the national average
## 1757                      Not Available
## 1758         Below the national average
## 1759                      Not Available
## 1760                      Not Available
## 1761         Below the national average
## 1762         Above the national average
## 1763                      Not Available
## 1764                      Not Available
## 1765         Below the national average
## 1766                      Not Available
## 1767         Above the national average
## 1768                      Not Available
## 1769                      Not Available
## 1770                      Not Available
## 1771                      Not Available
## 1772                      Not Available
## 1773                      Not Available
## 1774         Above the national average
## 1775                      Not Available
## 1776         Above the national average
## 1777         Above the national average
## 1778                      Not Available
## 1779                      Not Available
## 1780                      Not Available
## 1781                      Not Available
## 1782         Above the national average
## 1783         Above the national average
## 1784         Above the national average
## 1785                      Not Available
## 1786                      Not Available
## 1787                      Not Available
## 1788         Above the national average
## 1789                      Not Available
## 1790         Above the national average
## 1791         Below the national average
## 1792                      Not Available
## 1793         Above the national average
## 1794         Above the national average
## 1795                      Not Available
## 1796         Below the national average
## 1797         Below the national average
## 1798         Below the national average
## 1799         Above the national average
## 1800         Below the national average
## 1801                      Not Available
## 1802         Below the national average
## 1803       Same as the national average
## 1804         Above the national average
## 1805                      Not Available
## 1806                      Not Available
## 1807                      Not Available
## 1808                      Not Available
## 1809                      Not Available
## 1810         Above the national average
## 1811                      Not Available
## 1812         Below the national average
## 1813                      Not Available
## 1814                      Not Available
## 1815         Above the national average
## 1816                      Not Available
## 1817         Above the national average
## 1818                      Not Available
## 1819                      Not Available
## 1820         Above the national average
## 1821         Below the national average
## 1822                      Not Available
## 1823                      Not Available
## 1824         Below the national average
## 1825         Above the national average
## 1826                      Not Available
## 1827                      Not Available
## 1828         Below the national average
## 1829                      Not Available
## 1830         Below the national average
## 1831       Same as the national average
## 1832                      Not Available
## 1833         Below the national average
## 1834                      Not Available
## 1835                      Not Available
## 1836       Same as the national average
## 1837         Below the national average
## 1838                      Not Available
## 1839                      Not Available
## 1840                      Not Available
## 1841       Same as the national average
## 1842                      Not Available
## 1843         Below the national average
## 1844                      Not Available
## 1845                      Not Available
## 1846                      Not Available
## 1847                      Not Available
## 1848       Same as the national average
## 1849                      Not Available
## 1850                      Not Available
## 1851                      Not Available
## 1852                      Not Available
## 1853       Same as the national average
## 1854         Above the national average
## 1855                      Not Available
## 1856                      Not Available
## 1857                      Not Available
## 1858         Below the national average
## 1859                      Not Available
## 1860         Above the national average
## 1861                      Not Available
## 1862         Below the national average
## 1863       Same as the national average
## 1864         Below the national average
## 1865         Above the national average
## 1866                      Not Available
## 1867         Above the national average
## 1868                      Not Available
## 1869       Same as the national average
## 1870                      Not Available
## 1871         Below the national average
## 1872         Above the national average
## 1873         Below the national average
## 1874                      Not Available
## 1875       Same as the national average
## 1876                      Not Available
## 1877                      Not Available
## 1878         Above the national average
## 1879                      Not Available
## 1880         Above the national average
## 1881         Above the national average
## 1882                      Not Available
## 1883                      Not Available
## 1884         Above the national average
## 1885         Below the national average
## 1886                      Not Available
## 1887                      Not Available
## 1888                      Not Available
## 1889         Above the national average
## 1890                      Not Available
## 1891         Below the national average
## 1892                      Not Available
## 1893         Above the national average
## 1894         Above the national average
## 1895         Below the national average
## 1896                      Not Available
## 1897                      Not Available
## 1898         Above the national average
## 1899                      Not Available
## 1900         Above the national average
## 1901                      Not Available
## 1902                      Not Available
## 1903                      Not Available
## 1904         Above the national average
## 1905                      Not Available
## 1906                      Not Available
## 1907       Same as the national average
## 1908         Above the national average
## 1909         Above the national average
## 1910         Below the national average
## 1911                      Not Available
## 1912                      Not Available
## 1913         Above the national average
## 1914       Same as the national average
## 1915                      Not Available
## 1916                      Not Available
## 1917         Above the national average
## 1918         Above the national average
## 1919                      Not Available
## 1920                      Not Available
## 1921                      Not Available
## 1922                      Not Available
## 1923                      Not Available
## 1924                      Not Available
## 1925       Same as the national average
## 1926       Same as the national average
## 1927         Below the national average
## 1928         Above the national average
## 1929         Above the national average
## 1930         Above the national average
## 1931         Above the national average
## 1932                      Not Available
## 1933       Same as the national average
## 1934         Above the national average
## 1935                      Not Available
## 1936       Same as the national average
## 1937                      Not Available
## 1938                      Not Available
## 1939       Same as the national average
## 1940                      Not Available
## 1941                      Not Available
## 1942                      Not Available
## 1943                      Not Available
## 1944       Same as the national average
## 1945       Same as the national average
## 1946         Above the national average
## 1947         Below the national average
## 1948                      Not Available
## 1949                      Not Available
## 1950         Below the national average
## 1951                      Not Available
## 1952                      Not Available
## 1953         Above the national average
## 1954         Below the national average
## 1955         Below the national average
## 1956                      Not Available
## 1957                      Not Available
## 1958         Above the national average
## 1959                      Not Available
## 1960         Above the national average
## 1961         Above the national average
## 1962         Below the national average
## 1963                      Not Available
## 1964         Below the national average
## 1965         Above the national average
## 1966                      Not Available
## 1967                      Not Available
## 1968                      Not Available
## 1969                      Not Available
## 1970                      Not Available
## 1971                      Not Available
## 1972         Above the national average
## 1973                      Not Available
## 1974         Above the national average
## 1975       Same as the national average
## 1976                      Not Available
## 1977                      Not Available
## 1978         Above the national average
## 1979         Above the national average
## 1980         Below the national average
## 1981                      Not Available
## 1982                      Not Available
## 1983       Same as the national average
## 1984                      Not Available
## 1985         Below the national average
## 1986         Below the national average
## 1987                      Not Available
## 1988                      Not Available
## 1989                      Not Available
## 1990                      Not Available
## 1991         Above the national average
## 1992         Below the national average
## 1993         Below the national average
## 1994                      Not Available
## 1995         Below the national average
## 1996         Above the national average
## 1997                      Not Available
## 1998         Below the national average
## 1999                      Not Available
## 2000       Same as the national average
## 2001                      Not Available
## 2002       Same as the national average
## 2003                      Not Available
## 2004         Above the national average
## 2005                      Not Available
## 2006                      Not Available
## 2007         Above the national average
## 2008                      Not Available
## 2009                      Not Available
## 2010         Below the national average
## 2011                      Not Available
## 2012                      Not Available
## 2013                      Not Available
## 2014                      Not Available
## 2015         Below the national average
## 2016       Same as the national average
## 2017                      Not Available
## 2018       Same as the national average
## 2019                      Not Available
## 2020         Below the national average
## 2021                      Not Available
## 2022         Below the national average
## 2023                      Not Available
## 2024         Above the national average
## 2025         Below the national average
## 2026         Below the national average
## 2027                      Not Available
## 2028         Above the national average
## 2029         Above the national average
## 2030                      Not Available
## 2031                      Not Available
## 2032         Below the national average
## 2033                      Not Available
## 2034                      Not Available
## 2035         Below the national average
## 2036                      Not Available
## 2037         Above the national average
## 2038                      Not Available
## 2039         Above the national average
## 2040         Above the national average
## 2041         Below the national average
## 2042         Above the national average
## 2043                      Not Available
## 2044         Below the national average
## 2045                      Not Available
## 2046         Below the national average
## 2047                      Not Available
## 2048         Below the national average
## 2049                      Not Available
## 2050                      Not Available
## 2051                      Not Available
## 2052                      Not Available
## 2053                      Not Available
## 2054         Above the national average
## 2055       Same as the national average
## 2056         Above the national average
## 2057                      Not Available
## 2058                      Not Available
## 2059         Above the national average
## 2060                      Not Available
## 2061                      Not Available
## 2062                      Not Available
## 2063                      Not Available
## 2064         Below the national average
## 2065         Above the national average
## 2066         Above the national average
## 2067                      Not Available
## 2068         Above the national average
## 2069         Below the national average
## 2070         Above the national average
## 2071                      Not Available
## 2072       Same as the national average
## 2073         Below the national average
## 2074                      Not Available
## 2075                      Not Available
## 2076                      Not Available
## 2077         Above the national average
## 2078         Above the national average
## 2079                      Not Available
## 2080                      Not Available
## 2081                      Not Available
## 2082         Below the national average
## 2083                      Not Available
## 2084         Below the national average
## 2085         Below the national average
## 2086                      Not Available
## 2087         Below the national average
## 2088                      Not Available
## 2089                      Not Available
## 2090                      Not Available
## 2091         Below the national average
## 2092                      Not Available
## 2093                      Not Available
## 2094                      Not Available
## 2095         Below the national average
## 2096         Below the national average
## 2097         Above the national average
## 2098                      Not Available
## 2099         Below the national average
## 2100         Above the national average
## 2101         Below the national average
## 2102         Above the national average
## 2103                      Not Available
## 2104         Above the national average
## 2105         Above the national average
## 2106                      Not Available
## 2107                      Not Available
## 2108                      Not Available
## 2109                      Not Available
## 2110                      Not Available
## 2111                      Not Available
## 2112       Same as the national average
## 2113                      Not Available
## 2114                      Not Available
## 2115       Same as the national average
## 2116                      Not Available
## 2117       Same as the national average
## 2118         Above the national average
## 2119                      Not Available
## 2120                      Not Available
## 2121                      Not Available
## 2122         Above the national average
## 2123                      Not Available
## 2124         Above the national average
## 2125       Same as the national average
## 2126                      Not Available
## 2127                      Not Available
## 2128         Above the national average
## 2129                      Not Available
## 2130         Above the national average
## 2131                      Not Available
## 2132                      Not Available
## 2133         Below the national average
## 2134         Above the national average
## 2135         Below the national average
## 2136         Below the national average
## 2137         Above the national average
## 2138                      Not Available
## 2139                      Not Available
## 2140                      Not Available
## 2141                      Not Available
## 2142                      Not Available
## 2143         Below the national average
## 2144                      Not Available
## 2145                      Not Available
## 2146         Above the national average
## 2147                      Not Available
## 2148         Above the national average
## 2149                      Not Available
## 2150         Above the national average
## 2151         Above the national average
## 2152                      Not Available
## 2153                      Not Available
## 2154         Below the national average
## 2155                      Not Available
## 2156                      Not Available
## 2157                      Not Available
## 2158         Above the national average
## 2159         Above the national average
## 2160         Below the national average
## 2161         Above the national average
## 2162                      Not Available
## 2163                      Not Available
## 2164         Below the national average
## 2165                      Not Available
## 2166         Below the national average
## 2167                      Not Available
## 2168                      Not Available
## 2169                      Not Available
## 2170         Below the national average
## 2171         Below the national average
## 2172         Above the national average
## 2173       Same as the national average
## 2174         Below the national average
## 2175         Above the national average
## 2176                      Not Available
## 2177         Above the national average
## 2178         Above the national average
## 2179                      Not Available
## 2180         Above the national average
## 2181         Below the national average
## 2182                      Not Available
## 2183                      Not Available
## 2184                      Not Available
## 2185                      Not Available
## 2186                      Not Available
## 2187                      Not Available
## 2188                      Not Available
## 2189                      Not Available
## 2190         Above the national average
## 2191         Above the national average
## 2192                      Not Available
## 2193                      Not Available
## 2194                      Not Available
## 2195         Below the national average
## 2196                      Not Available
## 2197       Same as the national average
## 2198                      Not Available
## 2199         Below the national average
## 2200                      Not Available
## 2201       Same as the national average
## 2202                      Not Available
## 2203                      Not Available
## 2204       Same as the national average
## 2205       Same as the national average
## 2206                      Not Available
## 2207                      Not Available
## 2208         Above the national average
## 2209       Same as the national average
## 2210                      Not Available
## 2211         Above the national average
## 2212         Below the national average
## 2213                      Not Available
## 2214         Above the national average
## 2215         Below the national average
## 2216                      Not Available
## 2217       Same as the national average
## 2218         Above the national average
## 2219       Same as the national average
## 2220         Below the national average
## 2221         Below the national average
## 2222         Above the national average
## 2223                      Not Available
## 2224       Same as the national average
## 2225                      Not Available
## 2226                      Not Available
## 2227                      Not Available
## 2228                      Not Available
## 2229         Above the national average
## 2230                      Not Available
## 2231                      Not Available
## 2232       Same as the national average
## 2233                      Not Available
## 2234                      Not Available
## 2235                      Not Available
## 2236                      Not Available
## 2237                      Not Available
## 2238                      Not Available
## 2239                      Not Available
## 2240                      Not Available
## 2241                      Not Available
## 2242         Below the national average
## 2243                      Not Available
## 2244         Below the national average
## 2245         Above the national average
## 2246                      Not Available
## 2247         Below the national average
## 2248                      Not Available
## 2249         Below the national average
## 2250                      Not Available
## 2251                      Not Available
## 2252         Above the national average
## 2253                      Not Available
## 2254       Same as the national average
## 2255                      Not Available
## 2256                      Not Available
## 2257                      Not Available
## 2258                      Not Available
## 2259                      Not Available
## 2260         Below the national average
## 2261         Above the national average
## 2262         Above the national average
## 2263         Above the national average
## 2264       Same as the national average
## 2265         Below the national average
## 2266                      Not Available
## 2267                      Not Available
## 2268         Below the national average
## 2269                      Not Available
## 2270                      Not Available
## 2271                      Not Available
## 2272         Below the national average
## 2273       Same as the national average
## 2274                      Not Available
## 2275                      Not Available
## 2276         Above the national average
## 2277         Above the national average
## 2278       Same as the national average
## 2279                      Not Available
## 2280       Same as the national average
## 2281                      Not Available
## 2282         Below the national average
## 2283         Above the national average
## 2284                      Not Available
## 2285         Above the national average
## 2286         Above the national average
## 2287                      Not Available
## 2288                      Not Available
## 2289         Below the national average
## 2290       Same as the national average
## 2291         Below the national average
## 2292                      Not Available
## 2293       Same as the national average
## 2294                      Not Available
## 2295                      Not Available
## 2296                      Not Available
## 2297         Above the national average
## 2298                      Not Available
## 2299       Same as the national average
## 2300                      Not Available
## 2301                      Not Available
## 2302                      Not Available
## 2303                      Not Available
## 2304                      Not Available
## 2305                      Not Available
## 2306                      Not Available
## 2307                      Not Available
## 2308                      Not Available
## 2309         Below the national average
## 2310       Same as the national average
## 2311                      Not Available
## 2312         Above the national average
## 2313                      Not Available
## 2314         Above the national average
## 2315       Same as the national average
## 2316                      Not Available
## 2317         Above the national average
## 2318                      Not Available
## 2319                      Not Available
## 2320                      Not Available
## 2321                      Not Available
## 2322         Above the national average
## 2323                      Not Available
## 2324                      Not Available
## 2325       Same as the national average
## 2326                      Not Available
## 2327         Above the national average
## 2328         Above the national average
## 2329         Above the national average
## 2330                      Not Available
## 2331                      Not Available
## 2332                      Not Available
## 2333                      Not Available
## 2334                      Not Available
## 2335                      Not Available
## 2336                      Not Available
## 2337                      Not Available
## 2338                      Not Available
## 2339                      Not Available
## 2340                      Not Available
## 2341                      Not Available
## 2342                      Not Available
## 2343                      Not Available
## 2344         Below the national average
## 2345                      Not Available
## 2346                      Not Available
## 2347         Below the national average
## 2348       Same as the national average
## 2349                      Not Available
## 2350         Above the national average
## 2351         Above the national average
## 2352                      Not Available
## 2353                      Not Available
## 2354         Above the national average
## 2355                      Not Available
## 2356       Same as the national average
## 2357         Above the national average
## 2358         Above the national average
## 2359       Same as the national average
## 2360                      Not Available
## 2361         Above the national average
## 2362       Same as the national average
## 2363                      Not Available
## 2364         Below the national average
## 2365                      Not Available
## 2366                      Not Available
## 2367                      Not Available
## 2368       Same as the national average
## 2369                      Not Available
## 2370                      Not Available
## 2371         Above the national average
## 2372         Above the national average
## 2373                      Not Available
## 2374                      Not Available
## 2375         Below the national average
## 2376                      Not Available
## 2377                      Not Available
## 2378                      Not Available
## 2379                      Not Available
## 2380         Above the national average
## 2381                      Not Available
## 2382                      Not Available
## 2383                      Not Available
## 2384                      Not Available
## 2385                      Not Available
## 2386                      Not Available
## 2387         Above the national average
## 2388                      Not Available
## 2389         Below the national average
## 2390                      Not Available
## 2391         Above the national average
## 2392                      Not Available
## 2393                      Not Available
## 2394                      Not Available
## 2395                      Not Available
## 2396                      Not Available
## 2397                      Not Available
## 2398         Below the national average
## 2399         Below the national average
## 2400                      Not Available
## 2401         Below the national average
## 2402                      Not Available
## 2403                      Not Available
## 2404       Same as the national average
## 2405                      Not Available
## 2406         Above the national average
## 2407         Below the national average
## 2408         Below the national average
## 2409                      Not Available
## 2410                      Not Available
## 2411         Above the national average
## 2412                      Not Available
## 2413       Same as the national average
## 2414                      Not Available
## 2415                      Not Available
## 2416                      Not Available
## 2417                      Not Available
## 2418                      Not Available
## 2419                      Not Available
## 2420         Above the national average
## 2421         Above the national average
## 2422         Above the national average
## 2423       Same as the national average
## 2424                      Not Available
## 2425         Below the national average
## 2426                      Not Available
## 2427         Above the national average
## 2428                      Not Available
## 2429                      Not Available
## 2430         Above the national average
## 2431                      Not Available
## 2432                      Not Available
## 2433                      Not Available
## 2434                      Not Available
## 2435         Below the national average
## 2436         Below the national average
## 2437                      Not Available
## 2438                      Not Available
## 2439       Same as the national average
## 2440                      Not Available
## 2441         Above the national average
## 2442                      Not Available
## 2443       Same as the national average
## 2444                      Not Available
## 2445                      Not Available
## 2446         Above the national average
## 2447                      Not Available
## 2448         Above the national average
## 2449                      Not Available
## 2450         Below the national average
## 2451                      Not Available
## 2452         Below the national average
## 2453                      Not Available
## 2454                      Not Available
## 2455         Below the national average
## 2456                      Not Available
## 2457         Below the national average
## 2458                      Not Available
## 2459       Same as the national average
## 2460         Above the national average
## 2461         Below the national average
## 2462       Same as the national average
## 2463                      Not Available
## 2464         Above the national average
## 2465                      Not Available
## 2466                      Not Available
## 2467         Below the national average
## 2468                      Not Available
## 2469         Above the national average
## 2470         Above the national average
## 2471         Below the national average
## 2472                      Not Available
## 2473                      Not Available
## 2474                      Not Available
## 2475       Same as the national average
## 2476         Above the national average
## 2477         Below the national average
## 2478         Above the national average
## 2479                      Not Available
## 2480         Above the national average
## 2481         Above the national average
## 2482                      Not Available
## 2483         Above the national average
## 2484         Below the national average
## 2485                      Not Available
## 2486         Below the national average
## 2487                      Not Available
## 2488                      Not Available
## 2489                      Not Available
## 2490       Same as the national average
## 2491         Above the national average
## 2492                      Not Available
## 2493                      Not Available
## 2494                      Not Available
## 2495         Below the national average
## 2496                      Not Available
## 2497                      Not Available
## 2498       Same as the national average
## 2499                      Not Available
## 2500         Above the national average
## 2501                      Not Available
## 2502                      Not Available
## 2503       Same as the national average
## 2504         Above the national average
## 2505         Above the national average
## 2506                      Not Available
## 2507         Below the national average
## 2508         Above the national average
## 2509       Same as the national average
## 2510                      Not Available
## 2511       Same as the national average
## 2512         Below the national average
## 2513                      Not Available
## 2514                      Not Available
## 2515         Above the national average
## 2516         Below the national average
## 2517         Below the national average
## 2518                      Not Available
## 2519         Below the national average
## 2520                      Not Available
## 2521       Same as the national average
## 2522         Above the national average
## 2523         Above the national average
## 2524                      Not Available
## 2525                      Not Available
## 2526         Above the national average
## 2527         Below the national average
## 2528         Above the national average
## 2529                      Not Available
## 2530         Above the national average
## 2531                      Not Available
## 2532                      Not Available
## 2533                      Not Available
## 2534       Same as the national average
## 2535         Above the national average
## 2536                      Not Available
## 2537       Same as the national average
## 2538                      Not Available
## 2539                      Not Available
## 2540                      Not Available
## 2541                      Not Available
## 2542                      Not Available
## 2543                      Not Available
## 2544                      Not Available
## 2545         Below the national average
## 2546                      Not Available
## 2547                      Not Available
## 2548         Above the national average
## 2549         Above the national average
## 2550                      Not Available
## 2551                      Not Available
## 2552                      Not Available
## 2553         Above the national average
## 2554                      Not Available
## 2555         Above the national average
## 2556                      Not Available
## 2557                      Not Available
## 2558                      Not Available
## 2559         Above the national average
## 2560         Above the national average
## 2561                      Not Available
## 2562         Above the national average
## 2563                      Not Available
## 2564         Above the national average
## 2565         Above the national average
## 2566                      Not Available
## 2567         Above the national average
## 2568         Above the national average
## 2569                      Not Available
## 2570         Above the national average
## 2571                      Not Available
## 2572                      Not Available
## 2573                      Not Available
## 2574         Below the national average
## 2575         Above the national average
## 2576         Above the national average
## 2577       Same as the national average
## 2578                      Not Available
## 2579       Same as the national average
## 2580                      Not Available
## 2581         Below the national average
## 2582                      Not Available
## 2583                      Not Available
## 2584         Above the national average
## 2585                      Not Available
## 2586                      Not Available
## 2587                      Not Available
## 2588                      Not Available
## 2589                      Not Available
## 2590         Above the national average
## 2591         Below the national average
## 2592         Above the national average
## 2593       Same as the national average
## 2594                      Not Available
## 2595                      Not Available
## 2596                      Not Available
## 2597                      Not Available
## 2598         Above the national average
## 2599       Same as the national average
## 2600                      Not Available
## 2601         Below the national average
## 2602         Below the national average
## 2603                      Not Available
## 2604                      Not Available
## 2605       Same as the national average
## 2606                      Not Available
## 2607                      Not Available
## 2608                      Not Available
## 2609                      Not Available
## 2610         Above the national average
## 2611                      Not Available
## 2612         Above the national average
## 2613                      Not Available
## 2614         Above the national average
## 2615       Same as the national average
## 2616                      Not Available
## 2617                      Not Available
## 2618       Same as the national average
## 2619         Above the national average
## 2620       Same as the national average
## 2621                      Not Available
## 2622         Above the national average
## 2623         Above the national average
## 2624                      Not Available
## 2625                      Not Available
## 2626                      Not Available
## 2627                      Not Available
## 2628         Below the national average
## 2629                      Not Available
## 2630         Below the national average
## 2631                      Not Available
## 2632                      Not Available
## 2633       Same as the national average
## 2634         Above the national average
## 2635         Above the national average
## 2636                      Not Available
## 2637       Same as the national average
## 2638         Below the national average
## 2639         Above the national average
## 2640       Same as the national average
## 2641       Same as the national average
## 2642                      Not Available
## 2643         Above the national average
## 2644                      Not Available
## 2645       Same as the national average
## 2646         Above the national average
## 2647         Below the national average
## 2648                      Not Available
## 2649       Same as the national average
## 2650         Above the national average
## 2651                      Not Available
## 2652         Below the national average
## 2653                      Not Available
## 2654                      Not Available
## 2655                      Not Available
## 2656         Above the national average
## 2657                      Not Available
## 2658         Below the national average
## 2659         Above the national average
## 2660                      Not Available
## 2661                      Not Available
## 2662                      Not Available
## 2663         Above the national average
## 2664       Same as the national average
## 2665         Above the national average
## 2666                      Not Available
## 2667                      Not Available
## 2668                      Not Available
## 2669         Above the national average
## 2670                      Not Available
## 2671         Above the national average
## 2672       Same as the national average
## 2673                      Not Available
## 2674         Above the national average
## 2675                      Not Available
## 2676                      Not Available
## 2677         Above the national average
## 2678                      Not Available
## 2679                      Not Available
## 2680         Above the national average
## 2681                      Not Available
## 2682         Below the national average
## 2683                      Not Available
## 2684                      Not Available
## 2685         Above the national average
## 2686                      Not Available
## 2687         Above the national average
## 2688         Above the national average
## 2689                      Not Available
## 2690                      Not Available
## 2691         Below the national average
## 2692         Above the national average
## 2693                      Not Available
## 2694       Same as the national average
## 2695                      Not Available
## 2696         Below the national average
## 2697       Same as the national average
## 2698                      Not Available
## 2699                      Not Available
## 2700         Below the national average
## 2701         Below the national average
## 2702                      Not Available
## 2703                      Not Available
## 2704         Below the national average
## 2705         Above the national average
## 2706                      Not Available
## 2707         Below the national average
## 2708                      Not Available
## 2709         Below the national average
## 2710         Above the national average
## 2711                      Not Available
## 2712                      Not Available
## 2713                      Not Available
## 2714                      Not Available
## 2715                      Not Available
## 2716         Below the national average
## 2717                      Not Available
## 2718         Above the national average
## 2719         Below the national average
## 2720                      Not Available
## 2721       Same as the national average
## 2722         Below the national average
## 2723         Below the national average
## 2724         Above the national average
## 2725                      Not Available
## 2726       Same as the national average
## 2727                      Not Available
## 2728         Above the national average
## 2729                      Not Available
## 2730                      Not Available
## 2731                      Not Available
## 2732                      Not Available
## 2733         Below the national average
## 2734                      Not Available
## 2735       Same as the national average
## 2736       Same as the national average
## 2737         Below the national average
## 2738         Above the national average
## 2739                      Not Available
## 2740                      Not Available
## 2741                      Not Available
## 2742                      Not Available
## 2743                      Not Available
## 2744                      Not Available
## 2745                      Not Available
## 2746         Below the national average
## 2747                      Not Available
## 2748                      Not Available
## 2749       Same as the national average
## 2750       Same as the national average
## 2751         Below the national average
## 2752       Same as the national average
## 2753                      Not Available
## 2754                      Not Available
## 2755         Below the national average
## 2756                      Not Available
## 2757         Above the national average
## 2758       Same as the national average
## 2759                      Not Available
## 2760       Same as the national average
## 2761         Below the national average
## 2762         Above the national average
## 2763                      Not Available
## 2764                      Not Available
## 2765                      Not Available
## 2766         Above the national average
## 2767                      Not Available
## 2768       Same as the national average
## 2769                      Not Available
## 2770         Above the national average
## 2771                      Not Available
## 2772                      Not Available
## 2773                      Not Available
## 2774         Below the national average
## 2775                      Not Available
## 2776                      Not Available
## 2777                      Not Available
## 2778                      Not Available
## 2779         Below the national average
## 2780         Above the national average
## 2781         Below the national average
## 2782                      Not Available
## 2783         Below the national average
## 2784       Same as the national average
## 2785                      Not Available
## 2786                      Not Available
## 2787       Same as the national average
## 2788                      Not Available
## 2789                      Not Available
## 2790       Same as the national average
## 2791                      Not Available
## 2792         Above the national average
## 2793       Same as the national average
## 2794                      Not Available
## 2795                      Not Available
## 2796         Above the national average
## 2797         Above the national average
## 2798       Same as the national average
## 2799         Above the national average
## 2800         Above the national average
## 2801       Same as the national average
## 2802                      Not Available
## 2803         Below the national average
## 2804         Below the national average
## 2805                      Not Available
## 2806                      Not Available
## 2807         Below the national average
## 2808         Above the national average
## 2809                      Not Available
## 2810         Above the national average
## 2811         Above the national average
## 2812                      Not Available
## 2813         Below the national average
## 2814                      Not Available
## 2815                      Not Available
## 2816                      Not Available
## 2817                      Not Available
## 2818       Same as the national average
## 2819         Below the national average
## 2820                      Not Available
## 2821                      Not Available
## 2822                      Not Available
## 2823         Below the national average
## 2824                      Not Available
## 2825         Above the national average
## 2826                      Not Available
## 2827                      Not Available
## 2828                      Not Available
## 2829                      Not Available
## 2830                      Not Available
## 2831                      Not Available
## 2832                      Not Available
## 2833       Same as the national average
## 2834         Below the national average
## 2835                      Not Available
## 2836         Below the national average
## 2837                      Not Available
## 2838         Below the national average
## 2839         Below the national average
## 2840                      Not Available
## 2841       Same as the national average
## 2842                      Not Available
## 2843                      Not Available
## 2844                      Not Available
## 2845                      Not Available
## 2846                      Not Available
## 2847                      Not Available
## 2848         Above the national average
## 2849                      Not Available
## 2850                      Not Available
## 2851                      Not Available
## 2852                      Not Available
## 2853                      Not Available
## 2854       Same as the national average
## 2855                      Not Available
## 2856                      Not Available
## 2857       Same as the national average
## 2858         Above the national average
## 2859         Above the national average
## 2860                      Not Available
## 2861         Below the national average
## 2862                      Not Available
## 2863         Below the national average
## 2864         Above the national average
## 2865         Below the national average
## 2866         Above the national average
## 2867                      Not Available
## 2868         Below the national average
## 2869                      Not Available
## 2870                      Not Available
## 2871         Below the national average
## 2872         Above the national average
## 2873         Above the national average
## 2874                      Not Available
## 2875                      Not Available
## 2876                      Not Available
## 2877                      Not Available
## 2878         Above the national average
## 2879                      Not Available
## 2880                      Not Available
## 2881         Below the national average
## 2882                      Not Available
## 2883         Below the national average
## 2884                      Not Available
## 2885       Same as the national average
## 2886         Below the national average
## 2887                      Not Available
## 2888                      Not Available
## 2889                      Not Available
## 2890         Below the national average
## 2891                      Not Available
## 2892         Above the national average
## 2893         Above the national average
## 2894                      Not Available
## 2895         Below the national average
## 2896         Above the national average
## 2897         Below the national average
## 2898         Below the national average
## 2899         Below the national average
## 2900                      Not Available
## 2901         Below the national average
## 2902                      Not Available
## 2903                      Not Available
## 2904                      Not Available
## 2905         Below the national average
## 2906       Same as the national average
## 2907         Below the national average
## 2908         Above the national average
## 2909         Above the national average
## 2910                      Not Available
## 2911         Above the national average
## 2912         Below the national average
## 2913       Same as the national average
## 2914                      Not Available
## 2915       Same as the national average
## 2916       Same as the national average
## 2917         Below the national average
## 2918                      Not Available
## 2919         Above the national average
## 2920         Above the national average
## 2921                      Not Available
## 2922                      Not Available
## 2923         Above the national average
## 2924         Above the national average
## 2925       Same as the national average
## 2926                      Not Available
## 2927                      Not Available
## 2928       Same as the national average
## 2929         Below the national average
## 2930         Below the national average
## 2931                      Not Available
## 2932         Above the national average
## 2933                      Not Available
## 2934                      Not Available
## 2935                      Not Available
## 2936         Below the national average
## 2937                      Not Available
## 2938                      Not Available
## 2939       Same as the national average
## 2940                      Not Available
## 2941         Above the national average
## 2942                      Not Available
## 2943         Above the national average
## 2944                      Not Available
## 2945         Above the national average
## 2946                      Not Available
## 2947         Above the national average
## 2948                      Not Available
## 2949                      Not Available
## 2950                      Not Available
## 2951         Above the national average
## 2952                      Not Available
## 2953         Above the national average
## 2954       Same as the national average
## 2955         Below the national average
## 2956                      Not Available
## 2957                      Not Available
## 2958       Same as the national average
## 2959                      Not Available
## 2960         Above the national average
## 2961         Above the national average
## 2962                      Not Available
## 2963                      Not Available
## 2964       Same as the national average
## 2965         Below the national average
## 2966                      Not Available
## 2967         Below the national average
## 2968         Below the national average
## 2969         Below the national average
## 2970                      Not Available
## 2971         Below the national average
## 2972         Above the national average
## 2973         Above the national average
## 2974         Above the national average
## 2975                      Not Available
## 2976                      Not Available
## 2977         Above the national average
## 2978                      Not Available
## 2979       Same as the national average
## 2980                      Not Available
## 2981       Same as the national average
## 2982       Same as the national average
## 2983         Above the national average
## 2984                      Not Available
## 2985         Above the national average
## 2986         Above the national average
## 2987         Above the national average
## 2988                      Not Available
## 2989       Same as the national average
## 2990         Above the national average
## 2991       Same as the national average
## 2992         Above the national average
## 2993         Above the national average
## 2994                      Not Available
## 2995         Above the national average
## 2996                      Not Available
## 2997                      Not Available
## 2998                      Not Available
## 2999         Above the national average
## 3000         Below the national average
## 3001                      Not Available
## 3002         Above the national average
## 3003                      Not Available
## 3004                      Not Available
## 3005                      Not Available
## 3006                      Not Available
## 3007                      Not Available
## 3008                      Not Available
## 3009       Same as the national average
## 3010         Above the national average
## 3011                      Not Available
## 3012         Below the national average
## 3013                      Not Available
## 3014         Below the national average
## 3015                      Not Available
## 3016                      Not Available
## 3017                      Not Available
## 3018         Above the national average
## 3019         Above the national average
## 3020                      Not Available
## 3021         Above the national average
## 3022                      Not Available
## 3023                      Not Available
## 3024         Above the national average
## 3025         Above the national average
## 3026         Below the national average
## 3027                      Not Available
## 3028       Same as the national average
## 3029         Below the national average
## 3030         Above the national average
## 3031         Below the national average
## 3032         Below the national average
## 3033         Below the national average
## 3034       Same as the national average
## 3035                      Not Available
## 3036         Above the national average
## 3037                      Not Available
## 3038                      Not Available
## 3039         Above the national average
## 3040         Above the national average
## 3041         Below the national average
## 3042         Below the national average
## 3043                      Not Available
## 3044         Below the national average
## 3045                      Not Available
## 3046                      Not Available
## 3047         Above the national average
## 3048       Same as the national average
## 3049                      Not Available
## 3050       Same as the national average
## 3051       Same as the national average
## 3052         Above the national average
## 3053                      Not Available
## 3054         Below the national average
## 3055         Above the national average
## 3056         Below the national average
## 3057                      Not Available
## 3058         Above the national average
## 3059         Below the national average
## 3060                      Not Available
## 3061                      Not Available
## 3062                      Not Available
## 3063         Above the national average
## 3064       Same as the national average
## 3065         Above the national average
## 3066         Above the national average
## 3067       Same as the national average
## 3068                      Not Available
## 3069       Same as the national average
## 3070         Above the national average
## 3071                      Not Available
## 3072                      Not Available
## 3073                      Not Available
## 3074         Above the national average
## 3075         Above the national average
## 3076                      Not Available
## 3077                      Not Available
## 3078         Above the national average
## 3079       Same as the national average
## 3080                      Not Available
## 3081         Above the national average
## 3082       Same as the national average
## 3083                      Not Available
## 3084                      Not Available
## 3085                      Not Available
## 3086         Above the national average
## 3087         Above the national average
## 3088                      Not Available
## 3089                      Not Available
## 3090         Above the national average
## 3091         Above the national average
## 3092         Above the national average
## 3093         Below the national average
## 3094                      Not Available
## 3095         Above the national average
## 3096       Same as the national average
## 3097         Above the national average
## 3098                      Not Available
## 3099       Same as the national average
## 3100         Above the national average
## 3101         Below the national average
## 3102         Below the national average
## 3103                      Not Available
## 3104         Below the national average
## 3105                      Not Available
## 3106         Above the national average
## 3107                      Not Available
## 3108         Above the national average
## 3109       Same as the national average
## 3110                      Not Available
## 3111                      Not Available
## 3112                      Not Available
## 3113         Below the national average
## 3114         Below the national average
## 3115                      Not Available
## 3116                      Not Available
## 3117                      Not Available
## 3118         Below the national average
## 3119                      Not Available
## 3120         Above the national average
## 3121       Same as the national average
## 3122         Above the national average
## 3123                      Not Available
## 3124         Below the national average
## 3125                      Not Available
## 3126         Above the national average
## 3127                      Not Available
## 3128         Below the national average
## 3129                      Not Available
## 3130                      Not Available
## 3131                      Not Available
## 3132         Above the national average
## 3133         Below the national average
## 3134                      Not Available
## 3135                      Not Available
## 3136                      Not Available
## 3137                      Not Available
## 3138                      Not Available
## 3139                      Not Available
## 3140         Below the national average
## 3141                      Not Available
## 3142       Same as the national average
## 3143         Above the national average
## 3144                      Not Available
## 3145         Below the national average
## 3146         Above the national average
## 3147         Below the national average
## 3148         Above the national average
## 3149                      Not Available
## 3150         Above the national average
## 3151         Above the national average
## 3152         Above the national average
## 3153         Below the national average
## 3154       Same as the national average
## 3155                      Not Available
## 3156         Below the national average
## 3157         Above the national average
## 3158       Same as the national average
## 3159       Same as the national average
## 3160         Above the national average
## 3161         Above the national average
## 3162         Above the national average
## 3163         Above the national average
## 3164                      Not Available
## 3165                      Not Available
## 3166                      Not Available
## 3167         Below the national average
## 3168       Same as the national average
## 3169         Above the national average
## 3170         Above the national average
## 3171         Below the national average
## 3172                      Not Available
## 3173         Above the national average
## 3174         Below the national average
## 3175                      Not Available
## 3176         Below the national average
## 3177         Above the national average
## 3178         Above the national average
## 3179                      Not Available
## 3180                      Not Available
## 3181         Above the national average
## 3182         Above the national average
## 3183                      Not Available
## 3184       Same as the national average
## 3185         Above the national average
## 3186         Above the national average
## 3187         Below the national average
## 3188                      Not Available
## 3189                      Not Available
## 3190                      Not Available
## 3191                      Not Available
## 3192         Above the national average
## 3193         Below the national average
## 3194                      Not Available
## 3195                      Not Available
## 3196                      Not Available
## 3197                      Not Available
## 3198         Below the national average
## 3199       Same as the national average
## 3200         Above the national average
## 3201                      Not Available
## 3202       Same as the national average
## 3203       Same as the national average
## 3204         Above the national average
## 3205         Above the national average
## 3206                      Not Available
## 3207                      Not Available
## 3208                      Not Available
## 3209                      Not Available
## 3210         Below the national average
## 3211         Above the national average
## 3212         Above the national average
## 3213                      Not Available
## 3214                      Not Available
## 3215         Below the national average
## 3216                      Not Available
## 3217       Same as the national average
## 3218         Below the national average
## 3219         Above the national average
## 3220         Above the national average
## 3221                      Not Available
## 3222         Above the national average
## 3223         Below the national average
## 3224         Above the national average
## 3225                      Not Available
## 3226         Below the national average
## 3227         Above the national average
## 3228                      Not Available
## 3229         Above the national average
## 3230         Above the national average
## 3231         Below the national average
## 3232                      Not Available
## 3233                      Not Available
## 3234                      Not Available
## 3235         Above the national average
## 3236                      Not Available
## 3237                      Not Available
## 3238         Above the national average
## 3239                      Not Available
## 3240                      Not Available
## 3241         Below the national average
## 3242                      Not Available
## 3243         Above the national average
## 3244         Below the national average
## 3245                      Not Available
## 3246         Above the national average
## 3247         Above the national average
## 3248                      Not Available
## 3249       Same as the national average
## 3250                      Not Available
## 3251                      Not Available
## 3252         Above the national average
## 3253                      Not Available
## 3254                      Not Available
## 3255                      Not Available
## 3256                      Not Available
## 3257                      Not Available
## 3258         Below the national average
## 3259                      Not Available
## 3260         Above the national average
## 3261         Above the national average
## 3262       Same as the national average
## 3263                      Not Available
## 3264                      Not Available
## 3265                      Not Available
## 3266         Above the national average
## 3267         Below the national average
## 3268                      Not Available
## 3269       Same as the national average
## 3270                      Not Available
## 3271       Same as the national average
## 3272                      Not Available
## 3273         Above the national average
## 3274                      Not Available
## 3275                      Not Available
## 3276                      Not Available
## 3277         Above the national average
## 3278                      Not Available
## 3279                      Not Available
## 3280                      Not Available
## 3281         Below the national average
## 3282       Same as the national average
## 3283       Same as the national average
## 3284         Above the national average
## 3285                      Not Available
## 3286                      Not Available
## 3287                      Not Available
## 3288         Below the national average
## 3289         Above the national average
## 3290                      Not Available
## 3291         Below the national average
## 3292                      Not Available
## 3293         Above the national average
## 3294         Above the national average
## 3295         Above the national average
## 3296                      Not Available
## 3297                      Not Available
## 3298         Below the national average
## 3299         Below the national average
## 3300         Below the national average
## 3301         Above the national average
## 3302         Below the national average
## 3303                      Not Available
## 3304         Above the national average
## 3305         Below the national average
## 3306                      Not Available
## 3307       Same as the national average
## 3308       Same as the national average
## 3309                      Not Available
## 3310         Above the national average
## 3311         Above the national average
## 3312       Same as the national average
## 3313         Below the national average
## 3314                      Not Available
## 3315         Above the national average
## 3316                      Not Available
## 3317                      Not Available
## 3318                      Not Available
## 3319                      Not Available
## 3320       Same as the national average
## 3321       Same as the national average
## 3322         Above the national average
## 3323                      Not Available
## 3324       Same as the national average
## 3325                      Not Available
## 3326       Same as the national average
## 3327         Below the national average
## 3328         Below the national average
## 3329                      Not Available
## 3330         Below the national average
## 3331                      Not Available
## 3332                      Not Available
## 3333         Below the national average
## 3334         Above the national average
## 3335         Below the national average
## 3336         Below the national average
## 3337       Same as the national average
## 3338                      Not Available
## 3339                      Not Available
## 3340         Above the national average
## 3341         Below the national average
## 3342         Below the national average
## 3343         Above the national average
## 3344         Above the national average
## 3345                      Not Available
## 3346         Below the national average
## 3347         Above the national average
## 3348                      Not Available
## 3349         Above the national average
## 3350         Below the national average
## 3351                      Not Available
## 3352                      Not Available
## 3353                      Not Available
## 3354                      Not Available
## 3355                      Not Available
## 3356                      Not Available
## 3357         Below the national average
## 3358                      Not Available
## 3359                      Not Available
## 3360                      Not Available
## 3361       Same as the national average
## 3362                      Not Available
## 3363                      Not Available
## 3364         Above the national average
## 3365         Below the national average
## 3366                      Not Available
## 3367                      Not Available
## 3368                      Not Available
## 3369         Above the national average
## 3370                      Not Available
## 3371       Same as the national average
## 3372                      Not Available
## 3373         Above the national average
## 3374                      Not Available
## 3375                      Not Available
## 3376                      Not Available
## 3377                      Not Available
## 3378                      Not Available
## 3379         Above the national average
## 3380         Below the national average
## 3381                      Not Available
## 3382                      Not Available
## 3383                      Not Available
## 3384                      Not Available
## 3385         Below the national average
## 3386                      Not Available
## 3387                      Not Available
## 3388         Above the national average
## 3389         Above the national average
## 3390                      Not Available
## 3391         Above the national average
## 3392                      Not Available
## 3393                      Not Available
## 3394         Above the national average
## 3395                      Not Available
## 3396                      Not Available
## 3397                      Not Available
## 3398                      Not Available
## 3399         Below the national average
## 3400         Below the national average
## 3401                      Not Available
## 3402                      Not Available
## 3403                      Not Available
## 3404       Same as the national average
## 3405                      Not Available
## 3406         Above the national average
## 3407       Same as the national average
## 3408         Above the national average
## 3409                      Not Available
## 3410         Above the national average
## 3411                      Not Available
## 3412                      Not Available
## 3413         Below the national average
## 3414                      Not Available
## 3415         Above the national average
## 3416                      Not Available
## 3417         Above the national average
## 3418                      Not Available
## 3419         Below the national average
## 3420         Above the national average
## 3421         Above the national average
## 3422         Below the national average
## 3423                      Not Available
## 3424         Above the national average
## 3425                      Not Available
## 3426                      Not Available
## 3427         Above the national average
## 3428                      Not Available
## 3429         Below the national average
## 3430         Below the national average
## 3431         Below the national average
## 3432         Above the national average
## 3433                      Not Available
## 3434         Above the national average
## 3435                      Not Available
## 3436         Above the national average
## 3437         Above the national average
## 3438         Above the national average
## 3439         Below the national average
## 3440                      Not Available
## 3441                      Not Available
## 3442         Above the national average
## 3443                      Not Available
## 3444         Below the national average
## 3445         Above the national average
## 3446                      Not Available
## 3447                      Not Available
## 3448                      Not Available
##      Safety_of_care_national_comparison_footnote
## 1                                             16
## 2                                             19
## 3                                             19
## 4                                               
## 5                                             19
## 6                                              5
## 7                                             19
## 8                                             16
## 9                                             19
## 10                                            19
## 11                                            19
## 12                                              
## 13                                            19
## 14                                            19
## 15                                            16
## 16                                            19
## 17                                            16
## 18                                            16
## 19                                            19
## 20                                            19
## 21                                             5
## 22                                            16
## 23                                             5
## 24                                            19
## 25                                             5
## 26                                             5
## 27                                            19
## 28                                            16
## 29                                            19
## 30                                             5
## 31                                            16
## 32                                            19
## 33                                            19
## 34                                            19
## 35                                            16
## 36                                            19
## 37                                            19
## 38                                            16
## 39                                             5
## 40                                            19
## 41                                            19
## 42                                             5
## 43                                              
## 44                                             5
## 45                                            19
## 46                                            19
## 47                                            16
## 48                                            19
## 49                                             5
## 50                                            19
## 51                                            19
## 52                                            19
## 53                                            19
## 54                                            19
## 55                                            19
## 56                                            16
## 57                                             5
## 58                                             5
## 59                                             5
## 60                                              
## 61                                            19
## 62                                            16
## 63                                            19
## 64                                             5
## 65                                              
## 66                                             5
## 67                                              
## 68                                             5
## 69                                              
## 70                                              
## 71                                              
## 72                                              
## 73                                              
## 74                                            16
## 75                                            16
## 76                                              
## 77                                            16
## 78                                              
## 79                                              
## 80                                              
## 81                                            19
## 82                                            16
## 83                                            19
## 84                                              
## 85                                            19
## 86                                            16
## 87                                              
## 88                                            19
## 89                                             5
## 90                                              
## 91                                              
## 92                                              
## 93                                              
## 94                                              
## 95                                             5
## 96                                             5
## 97                                              
## 98                                             5
## 99                                             5
## 100                                            5
## 101                                           16
## 102                                             
## 103                                             
## 104                                             
## 105                                             
## 106                                             
## 107                                             
## 108                                             
## 109                                             
## 110                                            5
## 111                                            5
## 112                                           16
## 113                                             
## 114                                             
## 115                                             
## 116                                           19
## 117                                           19
## 118                                            5
## 119                                            5
## 120                                           16
## 121                                            5
## 122                                           19
## 123                                             
## 124                                             
## 125                                           16
## 126                                            5
## 127                                            5
## 128                                             
## 129                                           19
## 130                                            5
## 131                                             
## 132                                           16
## 133                                             
## 134                                            5
## 135                                           16
## 136                                            5
## 137                                           16
## 138                                           19
## 139                                             
## 140                                             
## 141                                           16
## 142                                           19
## 143                                           19
## 144                                             
## 145                                             
## 146                                           16
## 147                                            5
## 148                                             
## 149                                            5
## 150                                            5
## 151                                             
## 152                                           16
## 153                                             
## 154                                            5
## 155                                             
## 156                                             
## 157                                           16
## 158                                            5
## 159                                            5
## 160                                             
## 161                                           19
## 162                                            5
## 163                                             
## 164                                             
## 165                                             
## 166                                           19
## 167                                             
## 168                                             
## 169                                            5
## 170                                             
## 171                                           19
## 172                                             
## 173                                           16
## 174                                             
## 175                                           16
## 176                                             
## 177                                             
## 178                                            5
## 179                                            5
## 180                                             
## 181                                            5
## 182                                            5
## 183                                             
## 184                                           19
## 185                                             
## 186                                            5
## 187                                             
## 188                                            5
## 189                                             
## 190                                            5
## 191                                            5
## 192                                             
## 193                                           19
## 194                                             
## 195                                           19
## 196                                             
## 197                                            5
## 198                                             
## 199                                            5
## 200                                           16
## 201                                           19
## 202                                             
## 203                                           19
## 204                                             
## 205                                            5
## 206                                           16
## 207                                            5
## 208                                             
## 209                                             
## 210                                            5
## 211                                           19
## 212                                           16
## 213                                           16
## 214                                            5
## 215                                           16
## 216                                            5
## 217                                             
## 218                                             
## 219                                           16
## 220                                           16
## 221                                             
## 222                                            5
## 223                                             
## 224                                           16
## 225                                             
## 226                                           16
## 227                                           16
## 228                                            5
## 229                                             
## 230                                           16
## 231                                           16
## 232                                             
## 233                                           16
## 234                                             
## 235                                             
## 236                                             
## 237                                             
## 238                                             
## 239                                             
## 240                                             
## 241                                             
## 242                                             
## 243                                             
## 244                                             
## 245                                             
## 246                                            5
## 247                                             
## 248                                            5
## 249                                           19
## 250                                           16
## 251                                             
## 252                                           19
## 253                                             
## 254                                           16
## 255                                             
## 256                                            5
## 257                                             
## 258                                             
## 259                                           16
## 260                                           23
## 261                                           19
## 262                                            5
## 263                                             
## 264                                           16
## 265                                             
## 266                                           16
## 267                                             
## 268                                           19
## 269                                             
## 270                                            5
## 271                                             
## 272                                           16
## 273                                           16
## 274                                           16
## 275                                           16
## 276                                             
## 277                                           16
## 278                                           16
## 279                                             
## 280                                           16
## 281                                             
## 282                                             
## 283                                             
## 284                                           16
## 285                                           16
## 286                                           16
## 287                                           19
## 288                                             
## 289                                            5
## 290                                             
## 291                                           16
## 292                                             
## 293                                             
## 294                                           19
## 295                                           16
## 296                                           19
## 297                                             
## 298                                             
## 299                                           19
## 300                                           16
## 301                                           19
## 302                                           16
## 303                                             
## 304                                           19
## 305                                           19
## 306                                           19
## 307                                            5
## 308                                            5
## 309                                           19
## 310                                            5
## 311                                             
## 312                                             
## 313                                             
## 314                                             
## 315                                           16
## 316                                             
## 317                                             
## 318                                             
## 319                                            5
## 320                                             
## 321                                             
## 322                                             
## 323                                             
## 324                                           19
## 325                                             
## 326                                           16
## 327                                             
## 328                                             
## 329                                            5
## 330                                           19
## 331                                             
## 332                                             
## 333                                             
## 334                                             
## 335                                             
## 336                                           19
## 337                                             
## 338                                           19
## 339                                             
## 340                                             
## 341                                             
## 342                                           16
## 343                                             
## 344                                           19
## 345                                             
## 346                                             
## 347                                           19
## 348                                            5
## 349                                             
## 350                                             
## 351                                            5
## 352                                             
## 353                                            5
## 354                                             
## 355                                           16
## 356                                             
## 357                                             
## 358                                             
## 359                                             
## 360                                           19
## 361                                             
## 362                                             
## 363                                             
## 364                                            5
## 365                                             
## 366                                             
## 367                                             
## 368                                             
## 369                                             
## 370                                             
## 371                                             
## 372                                             
## 373                                             
## 374                                             
## 375                                           19
## 376                                           16
## 377                                            5
## 378                                            5
## 379                                            5
## 380                                             
## 381                                             
## 382                                           19
## 383                                             
## 384                                           19
## 385                                           19
## 386                                            5
## 387                                             
## 388                                           16
## 389                                             
## 390                                             
## 391                                             
## 392                                             
## 393                                            5
## 394                                             
## 395                                             
## 396                                             
## 397                                            5
## 398                                             
## 399                                             
## 400                                             
## 401                                           19
## 402                                            5
## 403                                           16
## 404                                             
## 405                                           19
## 406                                             
## 407                                           19
## 408                                           16
## 409                                           16
## 410                                            5
## 411                                             
## 412                                             
## 413                                            5
## 414                                             
## 415                                           16
## 416                                             
## 417                                           19
## 418                                           19
## 419                                             
## 420                                            5
## 421                                           19
## 422                                             
## 423                                             
## 424                                           19
## 425                                            5
## 426                                             
## 427                                           16
## 428                                             
## 429                                            5
## 430                                             
## 431                                             
## 432                                            5
## 433                                             
## 434                                             
## 435                                           16
## 436                                            5
## 437                                            5
## 438                                             
## 439                                             
## 440                                           19
## 441                                            5
## 442                                           16
## 443                                            5
## 444                                             
## 445                                           16
## 446                                             
## 447                                             
## 448                                           19
## 449                                             
## 450                                             
## 451                                           19
## 452                                           16
## 453                                           16
## 454                                             
## 455                                             
## 456                                             
## 457                                           16
## 458                                             
## 459                                             
## 460                                             
## 461                                             
## 462                                             
## 463                                           16
## 464                                             
## 465                                             
## 466                                             
## 467                                             
## 468                                             
## 469                                            5
## 470                                             
## 471                                             
## 472                                           16
## 473                                             
## 474                                             
## 475                                           19
## 476                                           16
## 477                                             
## 478                                             
## 479                                             
## 480                                             
## 481                                             
## 482                                             
## 483                                             
## 484                                             
## 485                                             
## 486                                           19
## 487                                           16
## 488                                             
## 489                                             
## 490                                            5
## 491                                             
## 492                                             
## 493                                             
## 494                                             
## 495                                             
## 496                                             
## 497                                             
## 498                                             
## 499                                           16
## 500                                           16
## 501                                            5
## 502                                           19
## 503                                             
## 504                                             
## 505                                            5
## 506                                           19
## 507                                           19
## 508                                           16
## 509                                           19
## 510                                             
## 511                                           16
## 512                                             
## 513                                             
## 514                                             
## 515                                            5
## 516                                           16
## 517                                           19
## 518                                             
## 519                                             
## 520                                             
## 521                                           16
## 522                                           16
## 523                                             
## 524                                             
## 525                                             
## 526                                             
## 527                                             
## 528                                           19
## 529                                            5
## 530                                             
## 531                                           16
## 532                                            5
## 533                                             
## 534                                             
## 535                                           16
## 536                                             
## 537                                             
## 538                                            5
## 539                                             
## 540                                            5
## 541                                             
## 542                                           16
## 543                                           19
## 544                                           16
## 545                                             
## 546                                             
## 547                                             
## 548                                           16
## 549                                             
## 550                                             
## 551                                             
## 552                                             
## 553                                           19
## 554                                           16
## 555                                             
## 556                                             
## 557                                             
## 558                                             
## 559                                             
## 560                                             
## 561                                             
## 562                                             
## 563                                           16
## 564                                             
## 565                                           16
## 566                                             
## 567                                            5
## 568                                             
## 569                                           16
## 570                                           16
## 571                                             
## 572                                             
## 573                                             
## 574                                             
## 575                                           19
## 576                                             
## 577                                             
## 578                                             
## 579                                           19
## 580                                             
## 581                                           19
## 582                                             
## 583                                             
## 584                                             
## 585                                            5
## 586                                           16
## 587                                            5
## 588                                             
## 589                                           19
## 590                                            5
## 591                                             
## 592                                            5
## 593                                           16
## 594                                           19
## 595                                             
## 596                                           16
## 597                                             
## 598                                           19
## 599                                           16
## 600                                             
## 601                                           16
## 602                                             
## 603                                             
## 604                                             
## 605                                           19
## 606                                            5
## 607                                           16
## 608                                             
## 609                                           19
## 610                                           16
## 611                                           19
## 612                                           16
## 613                                             
## 614                                            5
## 615                                             
## 616                                             
## 617                                           19
## 618                                             
## 619                                             
## 620                                             
## 621                                            5
## 622                                             
## 623                                           19
## 624                                           16
## 625                                             
## 626                                             
## 627                                             
## 628                                            5
## 629                                             
## 630                                            5
## 631                                           16
## 632                                             
## 633                                            5
## 634                                             
## 635                                             
## 636                                            5
## 637                                            5
## 638                                           19
## 639                                             
## 640                                             
## 641                                           16
## 642                                            5
## 643                                             
## 644                                             
## 645                                           16
## 646                                           19
## 647                                           16
## 648                                            5
## 649                                           16
## 650                                             
## 651                                           19
## 652                                           16
## 653                                             
## 654                                             
## 655                                             
## 656                                             
## 657                                             
## 658                                             
## 659                                           16
## 660                                             
## 661                                            5
## 662                                             
## 663                                             
## 664                                           16
## 665                                            5
## 666                                            5
## 667                                             
## 668                                           19
## 669                                           16
## 670                                             
## 671                                             
## 672                                             
## 673                                           16
## 674                                            5
## 675                                             
## 676                                             
## 677                                            5
## 678                                             
## 679                                           16
## 680                                            5
## 681                                             
## 682                                             
## 683                                            5
## 684                                           16
## 685                                             
## 686                                             
## 687                                            5
## 688                                           19
## 689                                            5
## 690                                            5
## 691                                            5
## 692                                             
## 693                                            5
## 694                                             
## 695                                             
## 696                                            5
## 697                                            5
## 698                                           16
## 699                                             
## 700                                            5
## 701                                           16
## 702                                           19
## 703                                           16
## 704                                             
## 705                                            5
## 706                                           19
## 707                                             
## 708                                            5
## 709                                            5
## 710                                            5
## 711                                           16
## 712                                             
## 713                                           16
## 714                                           16
## 715                                             
## 716                                             
## 717                                           16
## 718                                             
## 719                                            5
## 720                                            5
## 721                                             
## 722                                            5
## 723                                             
## 724                                             
## 725                                             
## 726                                            5
## 727                                             
## 728                                            5
## 729                                             
## 730                                            5
## 731                                             
## 732                                             
## 733                                             
## 734                                           19
## 735                                           16
## 736                                            5
## 737                                             
## 738                                           16
## 739                                             
## 740                                           19
## 741                                           19
## 742                                             
## 743                                             
## 744                                             
## 745                                           19
## 746                                             
## 747                                             
## 748                                             
## 749                                           19
## 750                                            5
## 751                                           19
## 752                                             
## 753                                             
## 754                                            5
## 755                                             
## 756                                            5
## 757                                             
## 758                                            5
## 759                                           19
## 760                                             
## 761                                           16
## 762                                            5
## 763                                           19
## 764                                            5
## 765                                             
## 766                                            5
## 767                                             
## 768                                           19
## 769                                             
## 770                                             
## 771                                           19
## 772                                             
## 773                                             
## 774                                             
## 775                                             
## 776                                             
## 777                                           16
## 778                                             
## 779                                             
## 780                                             
## 781                                            5
## 782                                             
## 783                                           19
## 784                                             
## 785                                           16
## 786                                            5
## 787                                             
## 788                                             
## 789                                             
## 790                                           16
## 791                                             
## 792                                           16
## 793                                           19
## 794                                             
## 795                                             
## 796                                             
## 797                                             
## 798                                           19
## 799                                             
## 800                                             
## 801                                             
## 802                                             
## 803                                           19
## 804                                           16
## 805                                             
## 806                                            5
## 807                                           19
## 808                                             
## 809                                            5
## 810                                           16
## 811                                             
## 812                                             
## 813                                           16
## 814                                            5
## 815                                             
## 816                                            5
## 817                                           19
## 818                                             
## 819                                             
## 820                                             
## 821                                             
## 822                                           16
## 823                                            5
## 824                                             
## 825                                           16
## 826                                             
## 827                                             
## 828                                             
## 829                                            5
## 830                                             
## 831                                            5
## 832                                           16
## 833                                             
## 834                                            5
## 835                                           16
## 836                                             
## 837                                           19
## 838                                             
## 839                                             
## 840                                             
## 841                                             
## 842                                           19
## 843                                           16
## 844                                             
## 845                                            5
## 846                                            5
## 847                                            5
## 848                                           16
## 849                                           19
## 850                                            5
## 851                                             
## 852                                             
## 853                                            5
## 854                                             
## 855                                             
## 856                                             
## 857                                           16
## 858                                             
## 859                                            5
## 860                                             
## 861                                             
## 862                                           16
## 863                                            5
## 864                                           19
## 865                                           19
## 866                                             
## 867                                             
## 868                                             
## 869                                             
## 870                                             
## 871                                             
## 872                                             
## 873                                             
## 874                                             
## 875                                             
## 876                                             
## 877                                           19
## 878                                           16
## 879                                            5
## 880                                             
## 881                                             
## 882                                           19
## 883                                             
## 884                                             
## 885                                             
## 886                                            5
## 887                                             
## 888                                             
## 889                                             
## 890                                           16
## 891                                            5
## 892                                             
## 893                                             
## 894                                             
## 895                                             
## 896                                            5
## 897                                             
## 898                                           19
## 899                                            5
## 900                                           19
## 901                                             
## 902                                           16
## 903                                            5
## 904                                            5
## 905                                             
## 906                                            5
## 907                                             
## 908                                           16
## 909                                           19
## 910                                            5
## 911                                             
## 912                                           16
## 913                                             
## 914                                           19
## 915                                           16
## 916                                           16
## 917                                           19
## 918                                             
## 919                                            5
## 920                                           19
## 921                                            5
## 922                                            5
## 923                                            5
## 924                                             
## 925                                             
## 926                                             
## 927                                             
## 928                                             
## 929                                           16
## 930                                             
## 931                                           16
## 932                                           19
## 933                                           19
## 934                                             
## 935                                             
## 936                                           19
## 937                                             
## 938                                           19
## 939                                             
## 940                                             
## 941                                             
## 942                                             
## 943                                           19
## 944                                             
## 945                                             
## 946                                            5
## 947                                            5
## 948                                           16
## 949                                           19
## 950                                             
## 951                                             
## 952                                           16
## 953                                           16
## 954                                           16
## 955                                             
## 956                                             
## 957                                            5
## 958                                           16
## 959                                             
## 960                                             
## 961                                             
## 962                                            5
## 963                                           16
## 964                                            5
## 965                                             
## 966                                             
## 967                                             
## 968                                             
## 969                                             
## 970                                             
## 971                                            5
## 972                                            5
## 973                                           19
## 974                                            5
## 975                                            5
## 976                                           16
## 977                                             
## 978                                             
## 979                                           16
## 980                                           19
## 981                                             
## 982                                            5
## 983                                            5
## 984                                             
## 985                                             
## 986                                           19
## 987                                             
## 988                                            5
## 989                                            5
## 990                                            5
## 991                                             
## 992                                            5
## 993                                             
## 994                                             
## 995                                             
## 996                                             
## 997                                           19
## 998                                             
## 999                                             
## 1000                                          19
## 1001                                          19
## 1002                                          16
## 1003                                            
## 1004                                          16
## 1005                                          16
## 1006                                            
## 1007                                            
## 1008                                            
## 1009                                          19
## 1010                                            
## 1011                                          19
## 1012                                          19
## 1013                                            
## 1014                                            
## 1015                                          16
## 1016                                          16
## 1017                                            
## 1018                                           5
## 1019                                           5
## 1020                                           5
## 1021                                           5
## 1022                                           5
## 1023                                            
## 1024                                            
## 1025                                          19
## 1026                                           5
## 1027                                          19
## 1028                                           5
## 1029                                           5
## 1030                                            
## 1031                                          16
## 1032                                           5
## 1033                                            
## 1034                                            
## 1035                                          16
## 1036                                           5
## 1037                                           5
## 1038                                          16
## 1039                                          16
## 1040                                            
## 1041                                           5
## 1042                                           5
## 1043                                            
## 1044                                          16
## 1045                                            
## 1046                                            
## 1047                                            
## 1048                                          19
## 1049                                          16
## 1050                                          19
## 1051                                          19
## 1052                                           5
## 1053                                            
## 1054                                            
## 1055                                            
## 1056                                            
## 1057                                            
## 1058                                            
## 1059                                            
## 1060                                           5
## 1061                                          16
## 1062                                           5
## 1063                                            
## 1064                                            
## 1065                                            
## 1066                                            
## 1067                                            
## 1068                                          16
## 1069                                            
## 1070                                           5
## 1071                                            
## 1072                                          19
## 1073                                           5
## 1074                                          19
## 1075                                           5
## 1076                                          16
## 1077                                            
## 1078                                            
## 1079                                            
## 1080                                          16
## 1081                                            
## 1082                                            
## 1083                                            
## 1084                                          16
## 1085                                            
## 1086                                            
## 1087                                          16
## 1088                                           5
## 1089                                            
## 1090                                          19
## 1091                                            
## 1092                                            
## 1093                                            
## 1094                                           5
## 1095                                          19
## 1096                                          16
## 1097                                           5
## 1098                                            
## 1099                                            
## 1100                                           5
## 1101                                            
## 1102                                           5
## 1103                                          19
## 1104                                            
## 1105                                            
## 1106                                          16
## 1107                                          19
## 1108                                            
## 1109                                           5
## 1110                                            
## 1111                                           5
## 1112                                          19
## 1113                                           5
## 1114                                           5
## 1115                                           5
## 1116                                            
## 1117                                          19
## 1118                                           5
## 1119                                          16
## 1120                                          16
## 1121                                            
## 1122                                            
## 1123                                            
## 1124                                          19
## 1125                                            
## 1126                                            
## 1127                                            
## 1128                                            
## 1129                                            
## 1130                                           5
## 1131                                            
## 1132                                            
## 1133                                          16
## 1134                                            
## 1135                                            
## 1136                                            
## 1137                                          19
## 1138                                            
## 1139                                          19
## 1140                                            
## 1141                                          16
## 1142                                            
## 1143                                            
## 1144                                           5
## 1145                                          16
## 1146                                           5
## 1147                                          16
## 1148                                          16
## 1149                                           5
## 1150                                          19
## 1151                                            
## 1152                                            
## 1153                                           5
## 1154                                          16
## 1155                                            
## 1156                                          16
## 1157                                            
## 1158                                            
## 1159                                            
## 1160                                            
## 1161                                          19
## 1162                                          19
## 1163                                            
## 1164                                            
## 1165                                          16
## 1166                                            
## 1167                                           5
## 1168                                          19
## 1169                                          16
## 1170                                            
## 1171                                           5
## 1172                                            
## 1173                                           5
## 1174                                           5
## 1175                                          16
## 1176                                            
## 1177                                            
## 1178                                          19
## 1179                                           5
## 1180                                          16
## 1181                                          16
## 1182                                            
## 1183                                            
## 1184                                          19
## 1185                                          19
## 1186                                            
## 1187                                            
## 1188                                          16
## 1189                                            
## 1190                                            
## 1191                                            
## 1192                                            
## 1193                                           5
## 1194                                           5
## 1195                                           5
## 1196                                            
## 1197                                          16
## 1198                                            
## 1199                                          16
## 1200                                          19
## 1201                                          19
## 1202                                          19
## 1203                                            
## 1204                                          16
## 1205                                            
## 1206                                           5
## 1207                                          16
## 1208                                          19
## 1209                                            
## 1210                                            
## 1211                                            
## 1212                                           5
## 1213                                          16
## 1214                                            
## 1215                                            
## 1216                                           5
## 1217                                           5
## 1218                                            
## 1219                                           5
## 1220                                            
## 1221                                          16
## 1222                                            
## 1223                                           5
## 1224                                            
## 1225                                          16
## 1226                                            
## 1227                                           5
## 1228                                            
## 1229                                            
## 1230                                          16
## 1231                                           5
## 1232                                          16
## 1233                                          16
## 1234                                          16
## 1235                                           5
## 1236                                            
## 1237                                           5
## 1238                                            
## 1239                                           5
## 1240                                            
## 1241                                           5
## 1242                                          19
## 1243                                            
## 1244                                            
## 1245                                            
## 1246                                            
## 1247                                          16
## 1248                                          19
## 1249                                            
## 1250                                            
## 1251                                            
## 1252                                           5
## 1253                                           5
## 1254                                          16
## 1255                                          16
## 1256                                            
## 1257                                            
## 1258                                            
## 1259                                           5
## 1260                                            
## 1261                                          19
## 1262                                          19
## 1263                                            
## 1264                                          19
## 1265                                            
## 1266                                            
## 1267                                          19
## 1268                                            
## 1269                                          16
## 1270                                            
## 1271                                            
## 1272                                          16
## 1273                                            
## 1274                                            
## 1275                                            
## 1276                                          16
## 1277                                            
## 1278                                            
## 1279                                          16
## 1280                                            
## 1281                                            
## 1282                                            
## 1283                                          16
## 1284                                            
## 1285                                           5
## 1286                                            
## 1287                                            
## 1288                                          16
## 1289                                           5
## 1290                                          16
## 1291                                            
## 1292                                            
## 1293                                           5
## 1294                                          19
## 1295                                           5
## 1296                                            
## 1297                                           5
## 1298                                            
## 1299                                          16
## 1300                                            
## 1301                                          19
## 1302                                            
## 1303                                          16
## 1304                                            
## 1305                                            
## 1306                                          19
## 1307                                            
## 1308                                            
## 1309                                           5
## 1310                                            
## 1311                                           5
## 1312                                            
## 1313                                           5
## 1314                                            
## 1315                                           5
## 1316                                           5
## 1317                                            
## 1318                                            
## 1319                                            
## 1320                                            
## 1321                                            
## 1322                                            
## 1323                                           5
## 1324                                            
## 1325                                            
## 1326                                            
## 1327                                          19
## 1328                                            
## 1329                                            
## 1330                                          19
## 1331                                            
## 1332                                            
## 1333                                           5
## 1334                                          16
## 1335                                            
## 1336                                          16
## 1337                                            
## 1338                                          16
## 1339                                            
## 1340                                           5
## 1341                                           5
## 1342                                            
## 1343                                           5
## 1344                                          19
## 1345                                            
## 1346                                            
## 1347                                          16
## 1348                                            
## 1349                                          16
## 1350                                            
## 1351                                            
## 1352                                            
## 1353                                          16
## 1354                                          19
## 1355                                            
## 1356                                          19
## 1357                                          19
## 1358                                            
## 1359                                           5
## 1360                                           5
## 1361                                            
## 1362                                            
## 1363                                            
## 1364                                            
## 1365                                           5
## 1366                                           5
## 1367                                            
## 1368                                            
## 1369                                           5
## 1370                                            
## 1371                                          16
## 1372                                           5
## 1373                                           5
## 1374                                            
## 1375                                            
## 1376                                            
## 1377                                           5
## 1378                                          16
## 1379                                          16
## 1380                                           5
## 1381                                          19
## 1382                                            
## 1383                                          16
## 1384                                           5
## 1385                                            
## 1386                                            
## 1387                                            
## 1388                                            
## 1389                                            
## 1390                                            
## 1391                                           5
## 1392                                            
## 1393                                            
## 1394                                            
## 1395                                            
## 1396                                            
## 1397                                            
## 1398                                            
## 1399                                           5
## 1400                                           5
## 1401                                            
## 1402                                           5
## 1403                                           5
## 1404                                            
## 1405                                          16
## 1406                                          16
## 1407                                           5
## 1408                                            
## 1409                                            
## 1410                                           5
## 1411                                            
## 1412                                            
## 1413                                            
## 1414                                           5
## 1415                                            
## 1416                                           5
## 1417                                            
## 1418                                            
## 1419                                           5
## 1420                                          16
## 1421                                          16
## 1422                                            
## 1423                                            
## 1424                                           5
## 1425                                            
## 1426                                          16
## 1427                                           5
## 1428                                            
## 1429                                            
## 1430                                           5
## 1431                                           5
## 1432                                           5
## 1433                                           5
## 1434                                          16
## 1435                                            
## 1436                                          19
## 1437                                            
## 1438                                            
## 1439                                            
## 1440                                          19
## 1441                                          19
## 1442                                          19
## 1443                                            
## 1444                                            
## 1445                                            
## 1446                                            
## 1447                                            
## 1448                                           5
## 1449                                           5
## 1450                                           5
## 1451                                            
## 1452                                            
## 1453                                            
## 1454                                            
## 1455                                            
## 1456                                          16
## 1457                                            
## 1458                                          19
## 1459                                          19
## 1460                                           5
## 1461                                          19
## 1462                                           5
## 1463                                          16
## 1464                                            
## 1465                                          16
## 1466                                            
## 1467                                          16
## 1468                                            
## 1469                                          19
## 1470                                            
## 1471                                            
## 1472                                            
## 1473                                          16
## 1474                                          16
## 1475                                           5
## 1476                                            
## 1477                                            
## 1478                                          16
## 1479                                            
## 1480                                          16
## 1481                                            
## 1482                                          16
## 1483                                            
## 1484                                            
## 1485                                          19
## 1486                                            
## 1487                                          16
## 1488                                            
## 1489                                          19
## 1490                                            
## 1491                                            
## 1492                                            
## 1493                                          16
## 1494                                          16
## 1495                                            
## 1496                                            
## 1497                                            
## 1498                                          19
## 1499                                           5
## 1500                                            
## 1501                                            
## 1502                                            
## 1503                                            
## 1504                                            
## 1505                                            
## 1506                                            
## 1507                                            
## 1508                                            
## 1509                                            
## 1510                                           5
## 1511                                          16
## 1512                                           5
## 1513                                           5
## 1514                                          19
## 1515                                            
## 1516                                            
## 1517                                            
## 1518                                           5
## 1519                                           5
## 1520                                           5
## 1521                                          16
## 1522                                            
## 1523                                          16
## 1524                                           5
## 1525                                          16
## 1526                                            
## 1527                                          19
## 1528                                            
## 1529                                            
## 1530                                            
## 1531                                           5
## 1532                                            
## 1533                                            
## 1534                                            
## 1535                                            
## 1536                                            
## 1537                                            
## 1538                                            
## 1539                                           5
## 1540                                            
## 1541                                            
## 1542                                            
## 1543                                            
## 1544                                            
## 1545                                            
## 1546                                            
## 1547                                           5
## 1548                                          16
## 1549                                            
## 1550                                          16
## 1551                                          19
## 1552                                            
## 1553                                            
## 1554                                          16
## 1555                                          19
## 1556                                           5
## 1557                                            
## 1558                                          16
## 1559                                            
## 1560                                           5
## 1561                                          19
## 1562                                           5
## 1563                                            
## 1564                                            
## 1565                                            
## 1566                                            
## 1567                                            
## 1568                                           5
## 1569                                           5
## 1570                                            
## 1571                                          16
## 1572                                           5
## 1573                                            
## 1574                                          16
## 1575                                            
## 1576                                            
## 1577                                           5
## 1578                                            
## 1579                                            
## 1580                                            
## 1581                                          19
## 1582                                            
## 1583                                          16
## 1584                                            
## 1585                                            
## 1586                                            
## 1587                                            
## 1588                                          16
## 1589                                            
## 1590                                            
## 1591                                            
## 1592                                          16
## 1593                                            
## 1594                                            
## 1595                                           5
## 1596                                            
## 1597                                            
## 1598                                          16
## 1599                                            
## 1600                                            
## 1601                                            
## 1602                                          19
## 1603                                            
## 1604                                            
## 1605                                          19
## 1606                                            
## 1607                                          19
## 1608                                            
## 1609                                            
## 1610                                           5
## 1611                                            
## 1612                                            
## 1613                                          19
## 1614                                          16
## 1615                                            
## 1616                                           5
## 1617                                           5
## 1618                                          19
## 1619                                            
## 1620                                           5
## 1621                                            
## 1622                                            
## 1623                                           5
## 1624                                           5
## 1625                                            
## 1626                                           5
## 1627                                           5
## 1628                                            
## 1629                                          16
## 1630                                            
## 1631                                            
## 1632                                            
## 1633                                            
## 1634                                            
## 1635                                            
## 1636                                          19
## 1637                                            
## 1638                                            
## 1639                                          19
## 1640                                            
## 1641                                          16
## 1642                                          16
## 1643                                          19
## 1644                                           5
## 1645                                          16
## 1646                                            
## 1647                                          16
## 1648                                          16
## 1649                                          16
## 1650                                            
## 1651                                          16
## 1652                                            
## 1653                                            
## 1654                                          16
## 1655                                           5
## 1656                                            
## 1657                                          16
## 1658                                           5
## 1659                                            
## 1660                                            
## 1661                                          16
## 1662                                           5
## 1663                                            
## 1664                                            
## 1665                                            
## 1666                                            
## 1667                                            
## 1668                                           5
## 1669                                           5
## 1670                                          19
## 1671                                          16
## 1672                                          19
## 1673                                            
## 1674                                            
## 1675                                            
## 1676                                            
## 1677                                            
## 1678                                          23
## 1679                                          19
## 1680                                            
## 1681                                            
## 1682                                           5
## 1683                                          19
## 1684                                            
## 1685                                           5
## 1686                                            
## 1687                                           5
## 1688                                           5
## 1689                                            
## 1690                                          16
## 1691                                           5
## 1692                                           5
## 1693                                          16
## 1694                                          16
## 1695                                          19
## 1696                                            
## 1697                                           5
## 1698                                           5
## 1699                                            
## 1700                                           5
## 1701                                            
## 1702                                          16
## 1703                                            
## 1704                                          19
## 1705                                          19
## 1706                                            
## 1707                                            
## 1708                                           5
## 1709                                           5
## 1710                                            
## 1711                                            
## 1712                                            
## 1713                                           5
## 1714                                          19
## 1715                                            
## 1716                                            
## 1717                                            
## 1718                                          19
## 1719                                            
## 1720                                           5
## 1721                                          16
## 1722                                           5
## 1723                                            
## 1724                                           5
## 1725                                          16
## 1726                                            
## 1727                                          16
## 1728                                          19
## 1729                                            
## 1730                                           5
## 1731                                           5
## 1732                                            
## 1733                                            
## 1734                                           5
## 1735                                            
## 1736                                          19
## 1737                                          16
## 1738                                            
## 1739                                          16
## 1740                                            
## 1741                                          19
## 1742                                            
## 1743                                            
## 1744                                            
## 1745                                          16
## 1746                                           5
## 1747                                           5
## 1748                                           5
## 1749                                          19
## 1750                                           5
## 1751                                           5
## 1752                                            
## 1753                                          16
## 1754                                          19
## 1755                                            
## 1756                                            
## 1757                                           5
## 1758                                            
## 1759                                          16
## 1760                                           5
## 1761                                            
## 1762                                            
## 1763                                          16
## 1764                                          16
## 1765                                            
## 1766                                           5
## 1767                                            
## 1768                                           5
## 1769                                           5
## 1770                                           5
## 1771                                          16
## 1772                                          16
## 1773                                          16
## 1774                                            
## 1775                                           5
## 1776                                            
## 1777                                            
## 1778                                          19
## 1779                                          19
## 1780                                          16
## 1781                                          16
## 1782                                            
## 1783                                            
## 1784                                            
## 1785                                          16
## 1786                                          16
## 1787                                          16
## 1788                                            
## 1789                                          16
## 1790                                            
## 1791                                            
## 1792                                          16
## 1793                                            
## 1794                                            
## 1795                                          16
## 1796                                            
## 1797                                            
## 1798                                            
## 1799                                            
## 1800                                            
## 1801                                           5
## 1802                                            
## 1803                                            
## 1804                                            
## 1805                                           5
## 1806                                           5
## 1807                                           5
## 1808                                          16
## 1809                                           5
## 1810                                            
## 1811                                          16
## 1812                                            
## 1813                                           5
## 1814                                          19
## 1815                                            
## 1816                                          19
## 1817                                            
## 1818                                          19
## 1819                                           5
## 1820                                            
## 1821                                            
## 1822                                           5
## 1823                                          19
## 1824                                            
## 1825                                            
## 1826                                          16
## 1827                                          16
## 1828                                            
## 1829                                          16
## 1830                                            
## 1831                                            
## 1832                                           5
## 1833                                            
## 1834                                          16
## 1835                                          16
## 1836                                            
## 1837                                            
## 1838                                           5
## 1839                                          16
## 1840                                          19
## 1841                                            
## 1842                                          16
## 1843                                            
## 1844                                           5
## 1845                                          16
## 1846                                           5
## 1847                                          16
## 1848                                            
## 1849                                          19
## 1850                                           5
## 1851                                          16
## 1852                                          16
## 1853                                            
## 1854                                            
## 1855                                           5
## 1856                                          16
## 1857                                           5
## 1858                                            
## 1859                                          19
## 1860                                            
## 1861                                           5
## 1862                                            
## 1863                                            
## 1864                                            
## 1865                                            
## 1866                                          16
## 1867                                            
## 1868                                           5
## 1869                                            
## 1870                                          16
## 1871                                            
## 1872                                            
## 1873                                            
## 1874                                          16
## 1875                                            
## 1876                                          16
## 1877                                          16
## 1878                                            
## 1879                                          19
## 1880                                            
## 1881                                            
## 1882                                          16
## 1883                                           5
## 1884                                            
## 1885                                            
## 1886                                           5
## 1887                                          16
## 1888                                          16
## 1889                                            
## 1890                                           5
## 1891                                            
## 1892                                          16
## 1893                                            
## 1894                                            
## 1895                                            
## 1896                                          19
## 1897                                           5
## 1898                                            
## 1899                                          16
## 1900                                            
## 1901                                           5
## 1902                                           5
## 1903                                           5
## 1904                                            
## 1905                                          19
## 1906                                          16
## 1907                                            
## 1908                                            
## 1909                                            
## 1910                                            
## 1911                                          16
## 1912                                           5
## 1913                                            
## 1914                                            
## 1915                                           5
## 1916                                          16
## 1917                                            
## 1918                                            
## 1919                                          16
## 1920                                          19
## 1921                                           5
## 1922                                          16
## 1923                                           5
## 1924                                          19
## 1925                                            
## 1926                                            
## 1927                                            
## 1928                                            
## 1929                                            
## 1930                                            
## 1931                                            
## 1932                                           5
## 1933                                            
## 1934                                            
## 1935                                           5
## 1936                                            
## 1937                                          16
## 1938                                          16
## 1939                                            
## 1940                                          19
## 1941                                          19
## 1942                                           5
## 1943                                          16
## 1944                                            
## 1945                                            
## 1946                                            
## 1947                                            
## 1948                                          16
## 1949                                           5
## 1950                                            
## 1951                                           5
## 1952                                           5
## 1953                                            
## 1954                                            
## 1955                                            
## 1956                                          16
## 1957                                          19
## 1958                                            
## 1959                                          19
## 1960                                            
## 1961                                            
## 1962                                            
## 1963                                          19
## 1964                                            
## 1965                                            
## 1966                                          16
## 1967                                          19
## 1968                                           5
## 1969                                          19
## 1970                                          16
## 1971                                          19
## 1972                                            
## 1973                                           5
## 1974                                            
## 1975                                            
## 1976                                          19
## 1977                                          16
## 1978                                            
## 1979                                            
## 1980                                            
## 1981                                          16
## 1982                                          16
## 1983                                            
## 1984                                           5
## 1985                                            
## 1986                                            
## 1987                                           5
## 1988                                          16
## 1989                                          16
## 1990                                           5
## 1991                                            
## 1992                                            
## 1993                                            
## 1994                                          16
## 1995                                            
## 1996                                            
## 1997                                          16
## 1998                                            
## 1999                                           5
## 2000                                            
## 2001                                          16
## 2002                                            
## 2003                                           5
## 2004                                            
## 2005                                          16
## 2006                                          19
## 2007                                            
## 2008                                          16
## 2009                                           5
## 2010                                            
## 2011                                          19
## 2012                                           5
## 2013                                           5
## 2014                                           5
## 2015                                            
## 2016                                            
## 2017                                           5
## 2018                                            
## 2019                                          19
## 2020                                            
## 2021                                           5
## 2022                                            
## 2023                                           5
## 2024                                            
## 2025                                            
## 2026                                            
## 2027                                          16
## 2028                                            
## 2029                                            
## 2030                                          16
## 2031                                           5
## 2032                                            
## 2033                                          16
## 2034                                          16
## 2035                                            
## 2036                                          19
## 2037                                            
## 2038                                           5
## 2039                                            
## 2040                                            
## 2041                                            
## 2042                                            
## 2043                                          16
## 2044                                            
## 2045                                          16
## 2046                                            
## 2047                                           5
## 2048                                            
## 2049                                          16
## 2050                                           5
## 2051                                           5
## 2052                                           5
## 2053                                          16
## 2054                                            
## 2055                                            
## 2056                                            
## 2057                                           5
## 2058                                           5
## 2059                                            
## 2060                                          16
## 2061                                           5
## 2062                                          19
## 2063                                          16
## 2064                                            
## 2065                                            
## 2066                                            
## 2067                                          16
## 2068                                            
## 2069                                            
## 2070                                            
## 2071                                          16
## 2072                                            
## 2073                                            
## 2074                                           5
## 2075                                          16
## 2076                                          19
## 2077                                            
## 2078                                            
## 2079                                           5
## 2080                                          16
## 2081                                          16
## 2082                                            
## 2083                                          16
## 2084                                            
## 2085                                            
## 2086                                           5
## 2087                                            
## 2088                                          16
## 2089                                          16
## 2090                                          19
## 2091                                            
## 2092                                          16
## 2093                                          16
## 2094                                          19
## 2095                                            
## 2096                                            
## 2097                                            
## 2098                                           5
## 2099                                            
## 2100                                            
## 2101                                            
## 2102                                            
## 2103                                          16
## 2104                                            
## 2105                                            
## 2106                                          16
## 2107                                           5
## 2108                                           5
## 2109                                          19
## 2110                                          16
## 2111                                          19
## 2112                                            
## 2113                                           5
## 2114                                          16
## 2115                                            
## 2116                                           5
## 2117                                            
## 2118                                            
## 2119                                          16
## 2120                                           5
## 2121                                          16
## 2122                                            
## 2123                                           5
## 2124                                            
## 2125                                            
## 2126                                          19
## 2127                                           5
## 2128                                            
## 2129                                          16
## 2130                                            
## 2131                                           5
## 2132                                          19
## 2133                                            
## 2134                                            
## 2135                                            
## 2136                                            
## 2137                                            
## 2138                                          19
## 2139                                          19
## 2140                                          19
## 2141                                          19
## 2142                                          16
## 2143                                            
## 2144                                           5
## 2145                                          19
## 2146                                            
## 2147                                           5
## 2148                                            
## 2149                                          16
## 2150                                            
## 2151                                            
## 2152                                          19
## 2153                                          16
## 2154                                            
## 2155                                          16
## 2156                                           5
## 2157                                          19
## 2158                                            
## 2159                                            
## 2160                                            
## 2161                                            
## 2162                                          19
## 2163                                          16
## 2164                                            
## 2165                                          16
## 2166                                            
## 2167                                           5
## 2168                                           5
## 2169                                          19
## 2170                                            
## 2171                                            
## 2172                                            
## 2173                                            
## 2174                                            
## 2175                                            
## 2176                                          19
## 2177                                            
## 2178                                            
## 2179                                           5
## 2180                                            
## 2181                                            
## 2182                                          16
## 2183                                          16
## 2184                                          19
## 2185                                          19
## 2186                                           5
## 2187                                          16
## 2188                                          16
## 2189                                           5
## 2190                                            
## 2191                                            
## 2192                                           5
## 2193                                           5
## 2194                                           5
## 2195                                            
## 2196                                          19
## 2197                                            
## 2198                                           5
## 2199                                            
## 2200                                          19
## 2201                                            
## 2202                                          16
## 2203                                           5
## 2204                                            
## 2205                                            
## 2206                                          19
## 2207                                           5
## 2208                                            
## 2209                                            
## 2210                                          19
## 2211                                            
## 2212                                            
## 2213                                          16
## 2214                                            
## 2215                                            
## 2216                                           5
## 2217                                            
## 2218                                            
## 2219                                            
## 2220                                            
## 2221                                            
## 2222                                            
## 2223                                           5
## 2224                                            
## 2225                                          19
## 2226                                           5
## 2227                                          16
## 2228                                          16
## 2229                                            
## 2230                                           5
## 2231                                          16
## 2232                                            
## 2233                                           5
## 2234                                          16
## 2235                                          16
## 2236                                           5
## 2237                                           5
## 2238                                          16
## 2239                                           5
## 2240                                          16
## 2241                                          19
## 2242                                            
## 2243                                           5
## 2244                                            
## 2245                                            
## 2246                                          16
## 2247                                            
## 2248                                           5
## 2249                                            
## 2250                                          19
## 2251                                           5
## 2252                                            
## 2253                                           5
## 2254                                            
## 2255                                          19
## 2256                                           5
## 2257                                          16
## 2258                                           5
## 2259                                          19
## 2260                                            
## 2261                                            
## 2262                                            
## 2263                                            
## 2264                                            
## 2265                                            
## 2266                                          19
## 2267                                          19
## 2268                                            
## 2269                                          16
## 2270                                           5
## 2271                                          16
## 2272                                            
## 2273                                            
## 2274                                          16
## 2275                                          19
## 2276                                            
## 2277                                            
## 2278                                            
## 2279                                          16
## 2280                                            
## 2281                                          16
## 2282                                            
## 2283                                            
## 2284                                          16
## 2285                                            
## 2286                                            
## 2287                                          19
## 2288                                          16
## 2289                                            
## 2290                                            
## 2291                                            
## 2292                                           5
## 2293                                            
## 2294                                           5
## 2295                                          16
## 2296                                           5
## 2297                                            
## 2298                                          16
## 2299                                            
## 2300                                          16
## 2301                                          16
## 2302                                           5
## 2303                                          16
## 2304                                           5
## 2305                                          19
## 2306                                          19
## 2307                                          19
## 2308                                           5
## 2309                                            
## 2310                                            
## 2311                                          16
## 2312                                            
## 2313                                          16
## 2314                                            
## 2315                                            
## 2316                                          16
## 2317                                            
## 2318                                          19
## 2319                                          16
## 2320                                           5
## 2321                                           5
## 2322                                            
## 2323                                           5
## 2324                                           5
## 2325                                            
## 2326                                           5
## 2327                                            
## 2328                                            
## 2329                                            
## 2330                                          16
## 2331                                          16
## 2332                                          19
## 2333                                          19
## 2334                                           5
## 2335                                          16
## 2336                                          16
## 2337                                          19
## 2338                                           5
## 2339                                           5
## 2340                                           5
## 2341                                          16
## 2342                                          16
## 2343                                          16
## 2344                                            
## 2345                                          19
## 2346                                          16
## 2347                                            
## 2348                                            
## 2349                                           5
## 2350                                            
## 2351                                            
## 2352                                           5
## 2353                                           5
## 2354                                            
## 2355                                          19
## 2356                                            
## 2357                                            
## 2358                                            
## 2359                                            
## 2360                                          19
## 2361                                            
## 2362                                            
## 2363                                           5
## 2364                                            
## 2365                                          16
## 2366                                          19
## 2367                                           5
## 2368                                            
## 2369                                          19
## 2370                                          16
## 2371                                            
## 2372                                            
## 2373                                           5
## 2374                                          19
## 2375                                            
## 2376                                          16
## 2377                                           5
## 2378                                          16
## 2379                                          16
## 2380                                            
## 2381                                           5
## 2382                                           5
## 2383                                          19
## 2384                                          19
## 2385                                           5
## 2386                                           5
## 2387                                            
## 2388                                           5
## 2389                                            
## 2390                                          19
## 2391                                            
## 2392                                           5
## 2393                                          16
## 2394                                           5
## 2395                                          19
## 2396                                          19
## 2397                                           5
## 2398                                            
## 2399                                            
## 2400                                           5
## 2401                                            
## 2402                                          19
## 2403                                           5
## 2404                                            
## 2405                                          16
## 2406                                            
## 2407                                            
## 2408                                            
## 2409                                           5
## 2410                                          19
## 2411                                            
## 2412                                           5
## 2413                                            
## 2414                                          16
## 2415                                           5
## 2416                                          16
## 2417                                          16
## 2418                                          16
## 2419                                          19
## 2420                                            
## 2421                                            
## 2422                                            
## 2423                                            
## 2424                                          16
## 2425                                            
## 2426                                          19
## 2427                                            
## 2428                                          19
## 2429                                          16
## 2430                                            
## 2431                                          16
## 2432                                          19
## 2433                                          16
## 2434                                           5
## 2435                                            
## 2436                                            
## 2437                                           5
## 2438                                          19
## 2439                                            
## 2440                                          19
## 2441                                            
## 2442                                          16
## 2443                                            
## 2444                                          19
## 2445                                           5
## 2446                                            
## 2447                                           5
## 2448                                            
## 2449                                          19
## 2450                                            
## 2451                                           5
## 2452                                            
## 2453                                          16
## 2454                                           5
## 2455                                            
## 2456                                          19
## 2457                                            
## 2458                                          16
## 2459                                            
## 2460                                            
## 2461                                            
## 2462                                            
## 2463                                          16
## 2464                                            
## 2465                                          16
## 2466                                          16
## 2467                                            
## 2468                                          19
## 2469                                            
## 2470                                            
## 2471                                            
## 2472                                          19
## 2473                                           5
## 2474                                           5
## 2475                                            
## 2476                                            
## 2477                                            
## 2478                                            
## 2479                                          16
## 2480                                            
## 2481                                            
## 2482                                          16
## 2483                                            
## 2484                                            
## 2485                                          16
## 2486                                            
## 2487                                          19
## 2488                                           5
## 2489                                          19
## 2490                                            
## 2491                                            
## 2492                                           5
## 2493                                          19
## 2494                                          19
## 2495                                            
## 2496                                          16
## 2497                                          19
## 2498                                            
## 2499                                          19
## 2500                                            
## 2501                                           5
## 2502                                           5
## 2503                                            
## 2504                                            
## 2505                                            
## 2506                                          19
## 2507                                            
## 2508                                            
## 2509                                            
## 2510                                           5
## 2511                                            
## 2512                                            
## 2513                                           5
## 2514                                           5
## 2515                                            
## 2516                                            
## 2517                                            
## 2518                                          16
## 2519                                            
## 2520                                          19
## 2521                                            
## 2522                                            
## 2523                                            
## 2524                                          19
## 2525                                           5
## 2526                                            
## 2527                                            
## 2528                                            
## 2529                                           5
## 2530                                            
## 2531                                           5
## 2532                                           5
## 2533                                           5
## 2534                                            
## 2535                                            
## 2536                                          16
## 2537                                            
## 2538                                          19
## 2539                                          19
## 2540                                          19
## 2541                                           5
## 2542                                           5
## 2543                                           5
## 2544                                          16
## 2545                                            
## 2546                                          16
## 2547                                          19
## 2548                                            
## 2549                                            
## 2550                                          19
## 2551                                           5
## 2552                                          19
## 2553                                            
## 2554                                          16
## 2555                                            
## 2556                                          16
## 2557                                          19
## 2558                                          19
## 2559                                            
## 2560                                            
## 2561                                          16
## 2562                                            
## 2563                                          16
## 2564                                            
## 2565                                            
## 2566                                          16
## 2567                                            
## 2568                                            
## 2569                                          16
## 2570                                            
## 2571                                           5
## 2572                                           5
## 2573                                          19
## 2574                                            
## 2575                                            
## 2576                                            
## 2577                                            
## 2578                                           5
## 2579                                            
## 2580                                           5
## 2581                                            
## 2582                                          16
## 2583                                          19
## 2584                                            
## 2585                                          19
## 2586                                           5
## 2587                                          16
## 2588                                           5
## 2589                                           5
## 2590                                            
## 2591                                            
## 2592                                            
## 2593                                            
## 2594                                          16
## 2595                                           5
## 2596                                          19
## 2597                                           5
## 2598                                            
## 2599                                            
## 2600                                          16
## 2601                                            
## 2602                                            
## 2603                                           5
## 2604                                          16
## 2605                                            
## 2606                                          19
## 2607                                          19
## 2608                                           5
## 2609                                          19
## 2610                                            
## 2611                                          16
## 2612                                            
## 2613                                           5
## 2614                                            
## 2615                                            
## 2616                                          16
## 2617                                           5
## 2618                                            
## 2619                                            
## 2620                                            
## 2621                                           5
## 2622                                            
## 2623                                            
## 2624                                          16
## 2625                                          19
## 2626                                           5
## 2627                                          16
## 2628                                            
## 2629                                           5
## 2630                                            
## 2631                                          19
## 2632                                          19
## 2633                                            
## 2634                                            
## 2635                                            
## 2636                                          16
## 2637                                            
## 2638                                            
## 2639                                            
## 2640                                            
## 2641                                            
## 2642                                           5
## 2643                                            
## 2644                                           5
## 2645                                            
## 2646                                            
## 2647                                            
## 2648                                          19
## 2649                                            
## 2650                                            
## 2651                                           5
## 2652                                            
## 2653                                          16
## 2654                                           5
## 2655                                          19
## 2656                                            
## 2657                                           5
## 2658                                            
## 2659                                            
## 2660                                           5
## 2661                                          19
## 2662                                           5
## 2663                                            
## 2664                                            
## 2665                                            
## 2666                                           5
## 2667                                          16
## 2668                                          16
## 2669                                            
## 2670                                           5
## 2671                                            
## 2672                                            
## 2673                                           5
## 2674                                            
## 2675                                           5
## 2676                                           5
## 2677                                            
## 2678                                          19
## 2679                                           5
## 2680                                            
## 2681                                          19
## 2682                                            
## 2683                                          19
## 2684                                          16
## 2685                                            
## 2686                                           5
## 2687                                            
## 2688                                            
## 2689                                          19
## 2690                                          19
## 2691                                            
## 2692                                            
## 2693                                          16
## 2694                                            
## 2695                                           5
## 2696                                            
## 2697                                            
## 2698                                          19
## 2699                                          16
## 2700                                            
## 2701                                            
## 2702                                          16
## 2703                                          19
## 2704                                            
## 2705                                            
## 2706                                          16
## 2707                                            
## 2708                                          19
## 2709                                            
## 2710                                            
## 2711                                          16
## 2712                                          16
## 2713                                          16
## 2714                                          16
## 2715                                           5
## 2716                                            
## 2717                                          16
## 2718                                            
## 2719                                            
## 2720                                          16
## 2721                                            
## 2722                                            
## 2723                                            
## 2724                                            
## 2725                                          19
## 2726                                            
## 2727                                          16
## 2728                                            
## 2729                                           5
## 2730                                          16
## 2731                                          16
## 2732                                          16
## 2733                                            
## 2734                                          16
## 2735                                            
## 2736                                            
## 2737                                            
## 2738                                            
## 2739                                          16
## 2740                                          16
## 2741                                          16
## 2742                                           5
## 2743                                          16
## 2744                                           5
## 2745                                           5
## 2746                                            
## 2747                                           5
## 2748                                          19
## 2749                                            
## 2750                                            
## 2751                                            
## 2752                                            
## 2753                                          19
## 2754                                          16
## 2755                                            
## 2756                                           5
## 2757                                            
## 2758                                            
## 2759                                           5
## 2760                                            
## 2761                                            
## 2762                                            
## 2763                                          19
## 2764                                           5
## 2765                                           5
## 2766                                            
## 2767                                          16
## 2768                                            
## 2769                                           5
## 2770                                            
## 2771                                          16
## 2772                                           5
## 2773                                          16
## 2774                                            
## 2775                                          19
## 2776                                           5
## 2777                                           5
## 2778                                           5
## 2779                                            
## 2780                                            
## 2781                                            
## 2782                                           5
## 2783                                            
## 2784                                            
## 2785                                           5
## 2786                                          19
## 2787                                            
## 2788                                           5
## 2789                                           5
## 2790                                            
## 2791                                          16
## 2792                                            
## 2793                                            
## 2794                                           5
## 2795                                          16
## 2796                                            
## 2797                                            
## 2798                                            
## 2799                                            
## 2800                                            
## 2801                                            
## 2802                                          19
## 2803                                            
## 2804                                            
## 2805                                          16
## 2806                                           5
## 2807                                            
## 2808                                            
## 2809                                           5
## 2810                                            
## 2811                                            
## 2812                                          16
## 2813                                            
## 2814                                           5
## 2815                                          16
## 2816                                           5
## 2817                                          19
## 2818                                            
## 2819                                            
## 2820                                          19
## 2821                                          19
## 2822                                           5
## 2823                                            
## 2824                                          16
## 2825                                            
## 2826                                          16
## 2827                                          19
## 2828                                          19
## 2829                                           5
## 2830                                          16
## 2831                                           5
## 2832                                          19
## 2833                                            
## 2834                                            
## 2835                                          16
## 2836                                            
## 2837                                          16
## 2838                                            
## 2839                                            
## 2840                                           5
## 2841                                            
## 2842                                          16
## 2843                                          19
## 2844                                           5
## 2845                                          19
## 2846                                          19
## 2847                                          19
## 2848                                            
## 2849                                           5
## 2850                                           5
## 2851                                          16
## 2852                                           5
## 2853                                          16
## 2854                                            
## 2855                                           5
## 2856                                           5
## 2857                                            
## 2858                                            
## 2859                                            
## 2860                                           5
## 2861                                            
## 2862                                           5
## 2863                                            
## 2864                                            
## 2865                                            
## 2866                                            
## 2867                                          16
## 2868                                            
## 2869                                           5
## 2870                                          16
## 2871                                            
## 2872                                            
## 2873                                            
## 2874                                          16
## 2875                                           5
## 2876                                           5
## 2877                                           5
## 2878                                            
## 2879                                          16
## 2880                                          19
## 2881                                            
## 2882                                          16
## 2883                                            
## 2884                                          19
## 2885                                            
## 2886                                            
## 2887                                           5
## 2888                                          16
## 2889                                           5
## 2890                                            
## 2891                                          16
## 2892                                            
## 2893                                            
## 2894                                           5
## 2895                                            
## 2896                                            
## 2897                                            
## 2898                                            
## 2899                                            
## 2900                                          16
## 2901                                            
## 2902                                           5
## 2903                                          16
## 2904                                           5
## 2905                                            
## 2906                                            
## 2907                                            
## 2908                                            
## 2909                                            
## 2910                                           5
## 2911                                            
## 2912                                            
## 2913                                            
## 2914                                           5
## 2915                                            
## 2916                                            
## 2917                                            
## 2918                                           5
## 2919                                            
## 2920                                            
## 2921                                           5
## 2922                                           5
## 2923                                            
## 2924                                            
## 2925                                            
## 2926                                          19
## 2927                                          16
## 2928                                            
## 2929                                            
## 2930                                            
## 2931                                           5
## 2932                                            
## 2933                                          16
## 2934                                          19
## 2935                                           5
## 2936                                            
## 2937                                           5
## 2938                                           5
## 2939                                            
## 2940                                           5
## 2941                                            
## 2942                                          16
## 2943                                            
## 2944                                           5
## 2945                                            
## 2946                                           5
## 2947                                            
## 2948                                           5
## 2949                                          16
## 2950                                          19
## 2951                                            
## 2952                                          16
## 2953                                            
## 2954                                            
## 2955                                            
## 2956                                           5
## 2957                                          19
## 2958                                            
## 2959                                          16
## 2960                                            
## 2961                                            
## 2962                                          16
## 2963                                          16
## 2964                                            
## 2965                                            
## 2966                                          19
## 2967                                            
## 2968                                            
## 2969                                            
## 2970                                           5
## 2971                                            
## 2972                                            
## 2973                                            
## 2974                                            
## 2975                                          16
## 2976                                          16
## 2977                                            
## 2978                                           5
## 2979                                            
## 2980                                           5
## 2981                                            
## 2982                                            
## 2983                                            
## 2984                                          16
## 2985                                            
## 2986                                            
## 2987                                            
## 2988                                           5
## 2989                                            
## 2990                                            
## 2991                                            
## 2992                                            
## 2993                                            
## 2994                                           5
## 2995                                            
## 2996                                          16
## 2997                                          19
## 2998                                          16
## 2999                                            
## 3000                                            
## 3001                                           5
## 3002                                            
## 3003                                           5
## 3004                                          16
## 3005                                           5
## 3006                                          16
## 3007                                          19
## 3008                                           5
## 3009                                            
## 3010                                            
## 3011                                          16
## 3012                                            
## 3013                                          16
## 3014                                            
## 3015                                          19
## 3016                                          16
## 3017                                           5
## 3018                                            
## 3019                                            
## 3020                                           5
## 3021                                            
## 3022                                          19
## 3023                                          16
## 3024                                            
## 3025                                            
## 3026                                            
## 3027                                          19
## 3028                                            
## 3029                                            
## 3030                                            
## 3031                                            
## 3032                                            
## 3033                                            
## 3034                                            
## 3035                                           5
## 3036                                            
## 3037                                          19
## 3038                                           5
## 3039                                            
## 3040                                            
## 3041                                            
## 3042                                            
## 3043                                          16
## 3044                                            
## 3045                                          19
## 3046                                          16
## 3047                                            
## 3048                                            
## 3049                                          19
## 3050                                            
## 3051                                            
## 3052                                            
## 3053                                           5
## 3054                                            
## 3055                                            
## 3056                                            
## 3057                                          19
## 3058                                            
## 3059                                            
## 3060                                          19
## 3061                                          19
## 3062                                          16
## 3063                                            
## 3064                                            
## 3065                                            
## 3066                                            
## 3067                                            
## 3068                                          19
## 3069                                            
## 3070                                            
## 3071                                           5
## 3072                                          16
## 3073                                          16
## 3074                                            
## 3075                                            
## 3076                                          16
## 3077                                          16
## 3078                                            
## 3079                                            
## 3080                                           5
## 3081                                            
## 3082                                            
## 3083                                          16
## 3084                                          19
## 3085                                           5
## 3086                                            
## 3087                                            
## 3088                                          19
## 3089                                          16
## 3090                                            
## 3091                                            
## 3092                                            
## 3093                                            
## 3094                                          16
## 3095                                            
## 3096                                            
## 3097                                            
## 3098                                          16
## 3099                                            
## 3100                                            
## 3101                                            
## 3102                                            
## 3103                                          16
## 3104                                            
## 3105                                           5
## 3106                                            
## 3107                                          16
## 3108                                            
## 3109                                            
## 3110                                          19
## 3111                                           5
## 3112                                           5
## 3113                                            
## 3114                                            
## 3115                                          16
## 3116                                          19
## 3117                                          19
## 3118                                            
## 3119                                          16
## 3120                                            
## 3121                                            
## 3122                                            
## 3123                                          19
## 3124                                            
## 3125                                           5
## 3126                                            
## 3127                                           5
## 3128                                            
## 3129                                           5
## 3130                                          19
## 3131                                          19
## 3132                                            
## 3133                                            
## 3134                                           5
## 3135                                          19
## 3136                                           5
## 3137                                          19
## 3138                                          19
## 3139                                          19
## 3140                                            
## 3141                                           5
## 3142                                            
## 3143                                            
## 3144                                          16
## 3145                                            
## 3146                                            
## 3147                                            
## 3148                                            
## 3149                                           5
## 3150                                            
## 3151                                            
## 3152                                            
## 3153                                            
## 3154                                            
## 3155                                          16
## 3156                                            
## 3157                                            
## 3158                                            
## 3159                                            
## 3160                                            
## 3161                                          23
## 3162                                            
## 3163                                            
## 3164                                           5
## 3165                                           5
## 3166                                           5
## 3167                                            
## 3168                                            
## 3169                                            
## 3170                                            
## 3171                                            
## 3172                                           5
## 3173                                            
## 3174                                            
## 3175                                           5
## 3176                                            
## 3177                                            
## 3178                                            
## 3179                                          16
## 3180                                           5
## 3181                                            
## 3182                                            
## 3183                                          19
## 3184                                            
## 3185                                            
## 3186                                            
## 3187                                            
## 3188                                           5
## 3189                                          16
## 3190                                           5
## 3191                                          16
## 3192                                            
## 3193                                            
## 3194                                           5
## 3195                                          16
## 3196                                           5
## 3197                                           5
## 3198                                            
## 3199                                            
## 3200                                            
## 3201                                          19
## 3202                                            
## 3203                                            
## 3204                                            
## 3205                                            
## 3206                                           5
## 3207                                          19
## 3208                                           5
## 3209                                           5
## 3210                                            
## 3211                                            
## 3212                                            
## 3213                                          19
## 3214                                          19
## 3215                                            
## 3216                                          19
## 3217                                            
## 3218                                            
## 3219                                            
## 3220                                            
## 3221                                          16
## 3222                                            
## 3223                                            
## 3224                                            
## 3225                                           5
## 3226                                            
## 3227                                            
## 3228                                           5
## 3229                                            
## 3230                                            
## 3231                                            
## 3232                                           5
## 3233                                          16
## 3234                                           5
## 3235                                            
## 3236                                           5
## 3237                                           5
## 3238                                            
## 3239                                          16
## 3240                                           5
## 3241                                            
## 3242                                           5
## 3243                                            
## 3244                                            
## 3245                                          19
## 3246                                            
## 3247                                            
## 3248                                          19
## 3249                                            
## 3250                                          16
## 3251                                          16
## 3252                                            
## 3253                                           5
## 3254                                           5
## 3255                                          16
## 3256                                           5
## 3257                                          19
## 3258                                            
## 3259                                          16
## 3260                                            
## 3261                                            
## 3262                                            
## 3263                                           5
## 3264                                          16
## 3265                                          19
## 3266                                            
## 3267                                            
## 3268                                          19
## 3269                                            
## 3270                                          19
## 3271                                            
## 3272                                           5
## 3273                                            
## 3274                                          16
## 3275                                          16
## 3276                                          16
## 3277                                            
## 3278                                          16
## 3279                                          19
## 3280                                           5
## 3281                                            
## 3282                                            
## 3283                                            
## 3284                                            
## 3285                                           5
## 3286                                          16
## 3287                                          19
## 3288                                            
## 3289                                            
## 3290                                           5
## 3291                                            
## 3292                                           5
## 3293                                            
## 3294                                            
## 3295                                            
## 3296                                          19
## 3297                                           5
## 3298                                            
## 3299                                            
## 3300                                            
## 3301                                            
## 3302                                            
## 3303                                          19
## 3304                                            
## 3305                                            
## 3306                                          16
## 3307                                            
## 3308                                            
## 3309                                          19
## 3310                                            
## 3311                                            
## 3312                                            
## 3313                                            
## 3314                                           5
## 3315                                            
## 3316                                          19
## 3317                                           5
## 3318                                          16
## 3319                                           5
## 3320                                            
## 3321                                            
## 3322                                            
## 3323                                           5
## 3324                                            
## 3325                                          19
## 3326                                            
## 3327                                            
## 3328                                            
## 3329                                           5
## 3330                                            
## 3331                                           5
## 3332                                          16
## 3333                                            
## 3334                                            
## 3335                                            
## 3336                                            
## 3337                                            
## 3338                                          16
## 3339                                          16
## 3340                                            
## 3341                                            
## 3342                                            
## 3343                                            
## 3344                                            
## 3345                                           5
## 3346                                            
## 3347                                            
## 3348                                          19
## 3349                                            
## 3350                                            
## 3351                                          19
## 3352                                           5
## 3353                                           5
## 3354                                          16
## 3355                                          19
## 3356                                          16
## 3357                                            
## 3358                                           5
## 3359                                           5
## 3360                                          19
## 3361                                            
## 3362                                          16
## 3363                                           5
## 3364                                            
## 3365                                            
## 3366                                          16
## 3367                                           5
## 3368                                          16
## 3369                                            
## 3370                                          16
## 3371                                            
## 3372                                          16
## 3373                                            
## 3374                                           5
## 3375                                           5
## 3376                                          19
## 3377                                           5
## 3378                                          16
## 3379                                            
## 3380                                            
## 3381                                          16
## 3382                                          16
## 3383                                          19
## 3384                                          16
## 3385                                            
## 3386                                          16
## 3387                                          16
## 3388                                            
## 3389                                            
## 3390                                          16
## 3391                                            
## 3392                                          16
## 3393                                          16
## 3394                                            
## 3395                                           5
## 3396                                          16
## 3397                                           5
## 3398                                          19
## 3399                                            
## 3400                                            
## 3401                                          16
## 3402                                          16
## 3403                                          19
## 3404                                            
## 3405                                          19
## 3406                                            
## 3407                                            
## 3408                                            
## 3409                                          16
## 3410                                            
## 3411                                          16
## 3412                                           5
## 3413                                            
## 3414                                          16
## 3415                                            
## 3416                                          16
## 3417                                            
## 3418                                          16
## 3419                                            
## 3420                                            
## 3421                                            
## 3422                                            
## 3423                                          16
## 3424                                            
## 3425                                          16
## 3426                                           5
## 3427                                            
## 3428                                          16
## 3429                                            
## 3430                                            
## 3431                                            
## 3432                                            
## 3433                                           5
## 3434                                            
## 3435                                           5
## 3436                                            
## 3437                                            
## 3438                                            
## 3439                                            
## 3440                                           5
## 3441                                           5
## 3442                                            
## 3443                                          19
## 3444                                            
## 3445                                            
## 3446                                          19
## 3447                                           5
## 3448                                          19
##      Readmission_national_comparison
## 1         Below the national average
## 2                      Not Available
## 3                      Not Available
## 4         Below the national average
## 5                      Not Available
## 6         Above the national average
## 7                      Not Available
## 8                      Not Available
## 9                      Not Available
## 10                     Not Available
## 11                     Not Available
## 12        Above the national average
## 13                     Not Available
## 14                     Not Available
## 15      Same as the national average
## 16                     Not Available
## 17                     Not Available
## 18        Below the national average
## 19                     Not Available
## 20                     Not Available
## 21                     Not Available
## 22                     Not Available
## 23                     Not Available
## 24                     Not Available
## 25                     Not Available
## 26                     Not Available
## 27                     Not Available
## 28                     Not Available
## 29                     Not Available
## 30      Same as the national average
## 31                     Not Available
## 32                     Not Available
## 33                     Not Available
## 34                     Not Available
## 35                     Not Available
## 36                     Not Available
## 37                     Not Available
## 38                     Not Available
## 39        Above the national average
## 40                     Not Available
## 41                     Not Available
## 42                     Not Available
## 43        Above the national average
## 44                     Not Available
## 45                     Not Available
## 46                     Not Available
## 47                     Not Available
## 48                     Not Available
## 49                     Not Available
## 50                     Not Available
## 51                     Not Available
## 52                     Not Available
## 53                     Not Available
## 54                     Not Available
## 55                     Not Available
## 56      Same as the national average
## 57      Same as the national average
## 58                     Not Available
## 59                     Not Available
## 60        Above the national average
## 61                     Not Available
## 62                     Not Available
## 63                     Not Available
## 64        Below the national average
## 65        Below the national average
## 66      Same as the national average
## 67        Below the national average
## 68                     Not Available
## 69        Below the national average
## 70        Below the national average
## 71        Above the national average
## 72        Above the national average
## 73        Below the national average
## 74                     Not Available
## 75                     Not Available
## 76        Below the national average
## 77                     Not Available
## 78        Below the national average
## 79                     Not Available
## 80        Below the national average
## 81                     Not Available
## 82                     Not Available
## 83                     Not Available
## 84        Above the national average
## 85                     Not Available
## 86      Same as the national average
## 87      Same as the national average
## 88                     Not Available
## 89      Same as the national average
## 90        Above the national average
## 91        Above the national average
## 92        Below the national average
## 93        Above the national average
## 94      Same as the national average
## 95      Same as the national average
## 96                     Not Available
## 97        Below the national average
## 98        Below the national average
## 99                     Not Available
## 100     Same as the national average
## 101                    Not Available
## 102       Below the national average
## 103     Same as the national average
## 104       Below the national average
## 105       Above the national average
## 106     Same as the national average
## 107       Below the national average
## 108       Below the national average
## 109       Above the national average
## 110                    Not Available
## 111       Above the national average
## 112     Same as the national average
## 113       Above the national average
## 114       Below the national average
## 115       Below the national average
## 116                    Not Available
## 117                    Not Available
## 118       Above the national average
## 119                    Not Available
## 120     Same as the national average
## 121       Above the national average
## 122                    Not Available
## 123       Above the national average
## 124       Above the national average
## 125                    Not Available
## 126                    Not Available
## 127                    Not Available
## 128     Same as the national average
## 129                    Not Available
## 130     Same as the national average
## 131       Below the national average
## 132     Same as the national average
## 133       Below the national average
## 134       Below the national average
## 135       Above the national average
## 136       Below the national average
## 137                    Not Available
## 138                    Not Available
## 139       Above the national average
## 140       Above the national average
## 141     Same as the national average
## 142                    Not Available
## 143                    Not Available
## 144                    Not Available
## 145       Above the national average
## 146                    Not Available
## 147     Same as the national average
## 148       Below the national average
## 149       Below the national average
## 150       Below the national average
## 151       Below the national average
## 152                    Not Available
## 153       Above the national average
## 154     Same as the national average
## 155       Below the national average
## 156       Below the national average
## 157                    Not Available
## 158     Same as the national average
## 159                    Not Available
## 160     Same as the national average
## 161                    Not Available
## 162       Above the national average
## 163       Above the national average
## 164       Above the national average
## 165       Below the national average
## 166                    Not Available
## 167       Below the national average
## 168       Above the national average
## 169                    Not Available
## 170       Below the national average
## 171                    Not Available
## 172       Above the national average
## 173                    Not Available
## 174       Below the national average
## 175     Same as the national average
## 176       Above the national average
## 177                    Not Available
## 178     Same as the national average
## 179       Below the national average
## 180       Above the national average
## 181     Same as the national average
## 182       Above the national average
## 183       Below the national average
## 184                    Not Available
## 185       Above the national average
## 186       Above the national average
## 187       Above the national average
## 188       Above the national average
## 189       Above the national average
## 190       Above the national average
## 191                    Not Available
## 192     Same as the national average
## 193                    Not Available
## 194       Below the national average
## 195                    Not Available
## 196       Above the national average
## 197                    Not Available
## 198       Above the national average
## 199     Same as the national average
## 200                    Not Available
## 201                    Not Available
## 202       Above the national average
## 203                    Not Available
## 204     Same as the national average
## 205                    Not Available
## 206                    Not Available
## 207     Same as the national average
## 208       Above the national average
## 209       Below the national average
## 210       Above the national average
## 211                    Not Available
## 212     Same as the national average
## 213       Above the national average
## 214     Same as the national average
## 215                    Not Available
## 216       Above the national average
## 217     Same as the national average
## 218       Below the national average
## 219                    Not Available
## 220                    Not Available
## 221       Above the national average
## 222       Above the national average
## 223       Below the national average
## 224     Same as the national average
## 225       Below the national average
## 226     Same as the national average
## 227                    Not Available
## 228       Below the national average
## 229       Below the national average
## 230     Same as the national average
## 231                    Not Available
## 232     Same as the national average
## 233     Same as the national average
## 234     Same as the national average
## 235       Above the national average
## 236     Same as the national average
## 237       Above the national average
## 238       Above the national average
## 239       Above the national average
## 240                    Not Available
## 241       Above the national average
## 242       Above the national average
## 243       Above the national average
## 244       Below the national average
## 245       Below the national average
## 246       Above the national average
## 247       Below the national average
## 248                    Not Available
## 249                    Not Available
## 250                    Not Available
## 251       Above the national average
## 252                    Not Available
## 253       Below the national average
## 254                    Not Available
## 255       Above the national average
## 256       Above the national average
## 257       Above the national average
## 258       Below the national average
## 259     Same as the national average
## 260       Below the national average
## 261                    Not Available
## 262                    Not Available
## 263       Above the national average
## 264     Same as the national average
## 265     Same as the national average
## 266     Same as the national average
## 267       Above the national average
## 268                    Not Available
## 269                    Not Available
## 270     Same as the national average
## 271       Below the national average
## 272       Below the national average
## 273                    Not Available
## 274                    Not Available
## 275                    Not Available
## 276       Below the national average
## 277       Above the national average
## 278     Same as the national average
## 279       Below the national average
## 280       Below the national average
## 281       Below the national average
## 282     Same as the national average
## 283     Same as the national average
## 284                    Not Available
## 285                    Not Available
## 286     Same as the national average
## 287                    Not Available
## 288       Below the national average
## 289     Same as the national average
## 290       Below the national average
## 291                    Not Available
## 292                    Not Available
## 293       Below the national average
## 294                    Not Available
## 295                    Not Available
## 296                    Not Available
## 297       Below the national average
## 298       Below the national average
## 299                    Not Available
## 300       Above the national average
## 301                    Not Available
## 302     Same as the national average
## 303       Below the national average
## 304                    Not Available
## 305                    Not Available
## 306                    Not Available
## 307                    Not Available
## 308     Same as the national average
## 309                    Not Available
## 310                    Not Available
## 311       Below the national average
## 312       Above the national average
## 313       Below the national average
## 314       Above the national average
## 315                    Not Available
## 316     Same as the national average
## 317       Below the national average
## 318       Below the national average
## 319       Above the national average
## 320     Same as the national average
## 321       Above the national average
## 322       Above the national average
## 323       Below the national average
## 324                    Not Available
## 325       Below the national average
## 326                    Not Available
## 327       Below the national average
## 328                    Not Available
## 329       Below the national average
## 330                    Not Available
## 331       Above the national average
## 332       Above the national average
## 333       Below the national average
## 334       Below the national average
## 335     Same as the national average
## 336                    Not Available
## 337       Above the national average
## 338                    Not Available
## 339     Same as the national average
## 340       Below the national average
## 341       Below the national average
## 342       Below the national average
## 343       Above the national average
## 344                    Not Available
## 345       Above the national average
## 346       Below the national average
## 347                    Not Available
## 348       Above the national average
## 349       Below the national average
## 350       Above the national average
## 351       Above the national average
## 352       Above the national average
## 353                    Not Available
## 354       Below the national average
## 355       Above the national average
## 356       Above the national average
## 357       Below the national average
## 358       Above the national average
## 359       Below the national average
## 360                    Not Available
## 361       Above the national average
## 362       Below the national average
## 363       Above the national average
## 364       Above the national average
## 365       Above the national average
## 366       Above the national average
## 367       Above the national average
## 368       Below the national average
## 369     Same as the national average
## 370     Same as the national average
## 371     Same as the national average
## 372     Same as the national average
## 373     Same as the national average
## 374       Below the national average
## 375                    Not Available
## 376     Same as the national average
## 377                    Not Available
## 378       Below the national average
## 379                    Not Available
## 380       Above the national average
## 381     Same as the national average
## 382                    Not Available
## 383       Above the national average
## 384                    Not Available
## 385                    Not Available
## 386                    Not Available
## 387       Above the national average
## 388                    Not Available
## 389       Above the national average
## 390       Above the national average
## 391       Below the national average
## 392       Below the national average
## 393       Below the national average
## 394       Above the national average
## 395       Above the national average
## 396     Same as the national average
## 397                    Not Available
## 398       Above the national average
## 399       Below the national average
## 400     Same as the national average
## 401                    Not Available
## 402     Same as the national average
## 403                    Not Available
## 404       Below the national average
## 405                    Not Available
## 406       Below the national average
## 407                    Not Available
## 408     Same as the national average
## 409       Above the national average
## 410                    Not Available
## 411       Above the national average
## 412       Above the national average
## 413       Above the national average
## 414       Above the national average
## 415       Above the national average
## 416       Above the national average
## 417                    Not Available
## 418                    Not Available
## 419       Above the national average
## 420                    Not Available
## 421                    Not Available
## 422       Below the national average
## 423       Above the national average
## 424                    Not Available
## 425       Above the national average
## 426     Same as the national average
## 427     Same as the national average
## 428     Same as the national average
## 429                    Not Available
## 430       Above the national average
## 431       Below the national average
## 432     Same as the national average
## 433       Above the national average
## 434       Above the national average
## 435                    Not Available
## 436       Above the national average
## 437       Above the national average
## 438       Below the national average
## 439       Below the national average
## 440                    Not Available
## 441       Above the national average
## 442                    Not Available
## 443     Same as the national average
## 444     Same as the national average
## 445       Above the national average
## 446       Below the national average
## 447       Above the national average
## 448                    Not Available
## 449       Above the national average
## 450       Below the national average
## 451                    Not Available
## 452                    Not Available
## 453       Below the national average
## 454       Above the national average
## 455       Above the national average
## 456       Below the national average
## 457                    Not Available
## 458       Above the national average
## 459       Above the national average
## 460     Same as the national average
## 461       Above the national average
## 462       Below the national average
## 463       Above the national average
## 464     Same as the national average
## 465       Above the national average
## 466     Same as the national average
## 467       Below the national average
## 468       Below the national average
## 469       Above the national average
## 470       Below the national average
## 471       Below the national average
## 472     Same as the national average
## 473       Below the national average
## 474       Below the national average
## 475                    Not Available
## 476       Below the national average
## 477       Above the national average
## 478       Above the national average
## 479     Same as the national average
## 480       Below the national average
## 481       Below the national average
## 482       Above the national average
## 483       Above the national average
## 484       Below the national average
## 485       Above the national average
## 486                    Not Available
## 487     Same as the national average
## 488       Above the national average
## 489       Above the national average
## 490       Above the national average
## 491       Above the national average
## 492       Below the national average
## 493       Above the national average
## 494       Below the national average
## 495       Below the national average
## 496       Below the national average
## 497       Below the national average
## 498       Above the national average
## 499                    Not Available
## 500                    Not Available
## 501                    Not Available
## 502                    Not Available
## 503       Above the national average
## 504       Above the national average
## 505     Same as the national average
## 506                    Not Available
## 507                    Not Available
## 508     Same as the national average
## 509                    Not Available
## 510     Same as the national average
## 511                    Not Available
## 512       Above the national average
## 513       Above the national average
## 514       Below the national average
## 515       Above the national average
## 516       Above the national average
## 517                    Not Available
## 518       Above the national average
## 519       Below the national average
## 520       Above the national average
## 521     Same as the national average
## 522     Same as the national average
## 523       Below the national average
## 524       Below the national average
## 525       Below the national average
## 526       Above the national average
## 527       Above the national average
## 528                    Not Available
## 529       Above the national average
## 530     Same as the national average
## 531                    Not Available
## 532                    Not Available
## 533       Above the national average
## 534     Same as the national average
## 535     Same as the national average
## 536       Above the national average
## 537     Same as the national average
## 538                    Not Available
## 539       Below the national average
## 540       Above the national average
## 541       Below the national average
## 542     Same as the national average
## 543                    Not Available
## 544     Same as the national average
## 545       Above the national average
## 546       Above the national average
## 547       Above the national average
## 548                    Not Available
## 549       Above the national average
## 550       Below the national average
## 551       Above the national average
## 552       Below the national average
## 553                    Not Available
## 554                    Not Available
## 555       Above the national average
## 556       Above the national average
## 557       Above the national average
## 558       Above the national average
## 559       Above the national average
## 560       Below the national average
## 561       Below the national average
## 562     Same as the national average
## 563                    Not Available
## 564                    Not Available
## 565     Same as the national average
## 566       Above the national average
## 567       Above the national average
## 568       Above the national average
## 569     Same as the national average
## 570     Same as the national average
## 571       Above the national average
## 572       Below the national average
## 573       Below the national average
## 574       Below the national average
## 575                    Not Available
## 576       Below the national average
## 577       Above the national average
## 578       Above the national average
## 579                    Not Available
## 580       Below the national average
## 581                    Not Available
## 582       Above the national average
## 583       Above the national average
## 584       Below the national average
## 585       Above the national average
## 586     Same as the national average
## 587     Same as the national average
## 588       Above the national average
## 589                    Not Available
## 590                    Not Available
## 591     Same as the national average
## 592                    Not Available
## 593     Same as the national average
## 594                    Not Available
## 595       Below the national average
## 596       Above the national average
## 597       Above the national average
## 598                    Not Available
## 599                    Not Available
## 600       Above the national average
## 601     Same as the national average
## 602       Below the national average
## 603       Below the national average
## 604       Above the national average
## 605                    Not Available
## 606     Same as the national average
## 607                    Not Available
## 608       Above the national average
## 609                    Not Available
## 610     Same as the national average
## 611                    Not Available
## 612     Same as the national average
## 613       Below the national average
## 614       Above the national average
## 615       Below the national average
## 616       Above the national average
## 617                    Not Available
## 618       Above the national average
## 619       Above the national average
## 620       Above the national average
## 621       Below the national average
## 622       Above the national average
## 623                    Not Available
## 624                    Not Available
## 625       Below the national average
## 626       Below the national average
## 627     Same as the national average
## 628                    Not Available
## 629       Below the national average
## 630                    Not Available
## 631     Same as the national average
## 632       Above the national average
## 633     Same as the national average
## 634       Above the national average
## 635       Above the national average
## 636                    Not Available
## 637     Same as the national average
## 638                    Not Available
## 639       Above the national average
## 640       Below the national average
## 641       Above the national average
## 642     Same as the national average
## 643       Below the national average
## 644       Below the national average
## 645       Above the national average
## 646                    Not Available
## 647     Same as the national average
## 648       Above the national average
## 649                    Not Available
## 650     Same as the national average
## 651                    Not Available
## 652                    Not Available
## 653       Below the national average
## 654     Same as the national average
## 655     Same as the national average
## 656                    Not Available
## 657       Above the national average
## 658       Above the national average
## 659     Same as the national average
## 660       Below the national average
## 661     Same as the national average
## 662       Above the national average
## 663     Same as the national average
## 664                    Not Available
## 665                    Not Available
## 666     Same as the national average
## 667     Same as the national average
## 668                    Not Available
## 669     Same as the national average
## 670       Below the national average
## 671       Above the national average
## 672       Below the national average
## 673     Same as the national average
## 674       Above the national average
## 675       Below the national average
## 676       Above the national average
## 677                    Not Available
## 678       Below the national average
## 679                    Not Available
## 680     Same as the national average
## 681       Above the national average
## 682       Below the national average
## 683     Same as the national average
## 684                    Not Available
## 685       Below the national average
## 686       Above the national average
## 687       Above the national average
## 688                    Not Available
## 689     Same as the national average
## 690       Above the national average
## 691     Same as the national average
## 692       Above the national average
## 693       Below the national average
## 694       Below the national average
## 695       Below the national average
## 696     Same as the national average
## 697       Below the national average
## 698       Above the national average
## 699       Below the national average
## 700       Above the national average
## 701       Above the national average
## 702                    Not Available
## 703                    Not Available
## 704     Same as the national average
## 705     Same as the national average
## 706                    Not Available
## 707       Below the national average
## 708       Below the national average
## 709                    Not Available
## 710     Same as the national average
## 711                    Not Available
## 712       Below the national average
## 713     Same as the national average
## 714                    Not Available
## 715       Below the national average
## 716     Same as the national average
## 717     Same as the national average
## 718       Below the national average
## 719       Above the national average
## 720     Same as the national average
## 721       Above the national average
## 722     Same as the national average
## 723       Below the national average
## 724       Below the national average
## 725       Below the national average
## 726                    Not Available
## 727       Above the national average
## 728       Below the national average
## 729       Above the national average
## 730                    Not Available
## 731       Below the national average
## 732       Above the national average
## 733     Same as the national average
## 734                    Not Available
## 735     Same as the national average
## 736       Above the national average
## 737       Above the national average
## 738     Same as the national average
## 739       Below the national average
## 740                    Not Available
## 741                    Not Available
## 742     Same as the national average
## 743                    Not Available
## 744     Same as the national average
## 745                    Not Available
## 746       Below the national average
## 747       Below the national average
## 748       Above the national average
## 749                    Not Available
## 750       Below the national average
## 751                    Not Available
## 752       Below the national average
## 753       Below the national average
## 754     Same as the national average
## 755       Above the national average
## 756       Above the national average
## 757       Below the national average
## 758       Above the national average
## 759                    Not Available
## 760       Above the national average
## 761                    Not Available
## 762       Below the national average
## 763                    Not Available
## 764       Above the national average
## 765       Above the national average
## 766       Below the national average
## 767       Above the national average
## 768                    Not Available
## 769     Same as the national average
## 770       Above the national average
## 771                    Not Available
## 772       Above the national average
## 773       Below the national average
## 774     Same as the national average
## 775       Above the national average
## 776       Below the national average
## 777     Same as the national average
## 778       Below the national average
## 779       Above the national average
## 780       Above the national average
## 781     Same as the national average
## 782     Same as the national average
## 783                    Not Available
## 784       Below the national average
## 785       Above the national average
## 786       Below the national average
## 787       Below the national average
## 788       Below the national average
## 789       Above the national average
## 790       Above the national average
## 791                    Not Available
## 792                    Not Available
## 793                    Not Available
## 794     Same as the national average
## 795       Above the national average
## 796       Above the national average
## 797       Above the national average
## 798                    Not Available
## 799       Above the national average
## 800       Below the national average
## 801       Above the national average
## 802       Above the national average
## 803                    Not Available
## 804       Above the national average
## 805       Below the national average
## 806       Below the national average
## 807                    Not Available
## 808     Same as the national average
## 809       Above the national average
## 810     Same as the national average
## 811       Above the national average
## 812       Above the national average
## 813                    Not Available
## 814     Same as the national average
## 815                    Not Available
## 816                    Not Available
## 817                    Not Available
## 818       Below the national average
## 819       Above the national average
## 820       Above the national average
## 821       Below the national average
## 822     Same as the national average
## 823     Same as the national average
## 824       Above the national average
## 825                    Not Available
## 826       Above the national average
## 827       Above the national average
## 828     Same as the national average
## 829     Same as the national average
## 830       Below the national average
## 831       Below the national average
## 832     Same as the national average
## 833       Below the national average
## 834       Below the national average
## 835                    Not Available
## 836       Below the national average
## 837                    Not Available
## 838       Below the national average
## 839       Above the national average
## 840     Same as the national average
## 841       Above the national average
## 842                    Not Available
## 843                    Not Available
## 844       Below the national average
## 845     Same as the national average
## 846     Same as the national average
## 847       Above the national average
## 848       Above the national average
## 849                    Not Available
## 850                    Not Available
## 851       Below the national average
## 852       Above the national average
## 853                    Not Available
## 854       Below the national average
## 855       Below the national average
## 856       Below the national average
## 857                    Not Available
## 858       Above the national average
## 859                    Not Available
## 860       Below the national average
## 861     Same as the national average
## 862       Above the national average
## 863     Same as the national average
## 864                    Not Available
## 865                    Not Available
## 866       Below the national average
## 867       Below the national average
## 868       Above the national average
## 869       Below the national average
## 870       Below the national average
## 871       Above the national average
## 872     Same as the national average
## 873       Above the national average
## 874       Above the national average
## 875       Above the national average
## 876     Same as the national average
## 877                    Not Available
## 878                    Not Available
## 879     Same as the national average
## 880       Above the national average
## 881       Below the national average
## 882                    Not Available
## 883       Above the national average
## 884     Same as the national average
## 885       Below the national average
## 886     Same as the national average
## 887     Same as the national average
## 888       Above the national average
## 889       Above the national average
## 890                    Not Available
## 891       Above the national average
## 892     Same as the national average
## 893       Above the national average
## 894       Above the national average
## 895       Above the national average
## 896       Below the national average
## 897       Below the national average
## 898                    Not Available
## 899     Same as the national average
## 900                    Not Available
## 901       Below the national average
## 902       Below the national average
## 903                    Not Available
## 904     Same as the national average
## 905       Below the national average
## 906       Above the national average
## 907       Below the national average
## 908     Same as the national average
## 909                    Not Available
## 910                    Not Available
## 911       Above the national average
## 912       Below the national average
## 913       Below the national average
## 914                    Not Available
## 915                    Not Available
## 916                    Not Available
## 917                    Not Available
## 918       Above the national average
## 919       Below the national average
## 920                    Not Available
## 921                    Not Available
## 922     Same as the national average
## 923       Below the national average
## 924       Below the national average
## 925       Above the national average
## 926       Below the national average
## 927     Same as the national average
## 928     Same as the national average
## 929                    Not Available
## 930       Below the national average
## 931       Above the national average
## 932                    Not Available
## 933                    Not Available
## 934       Above the national average
## 935       Below the national average
## 936                    Not Available
## 937       Above the national average
## 938                    Not Available
## 939       Above the national average
## 940       Above the national average
## 941     Same as the national average
## 942       Above the national average
## 943                    Not Available
## 944       Above the national average
## 945       Above the national average
## 946       Above the national average
## 947     Same as the national average
## 948                    Not Available
## 949                    Not Available
## 950       Below the national average
## 951       Below the national average
## 952       Above the national average
## 953                    Not Available
## 954       Above the national average
## 955     Same as the national average
## 956       Below the national average
## 957     Same as the national average
## 958                    Not Available
## 959       Below the national average
## 960       Below the national average
## 961     Same as the national average
## 962       Above the national average
## 963                    Not Available
## 964                    Not Available
## 965       Below the national average
## 966       Below the national average
## 967       Below the national average
## 968     Same as the national average
## 969       Below the national average
## 970       Below the national average
## 971       Below the national average
## 972     Same as the national average
## 973                    Not Available
## 974       Above the national average
## 975       Above the national average
## 976                    Not Available
## 977       Below the national average
## 978       Above the national average
## 979                    Not Available
## 980                    Not Available
## 981       Above the national average
## 982       Above the national average
## 983     Same as the national average
## 984       Below the national average
## 985       Below the national average
## 986                    Not Available
## 987       Above the national average
## 988     Same as the national average
## 989     Same as the national average
## 990     Same as the national average
## 991       Above the national average
## 992     Same as the national average
## 993                    Not Available
## 994       Above the national average
## 995       Above the national average
## 996       Above the national average
## 997                    Not Available
## 998       Below the national average
## 999       Above the national average
## 1000                   Not Available
## 1001                   Not Available
## 1002                   Not Available
## 1003      Below the national average
## 1004    Same as the national average
## 1005                   Not Available
## 1006      Below the national average
## 1007      Above the national average
## 1008      Below the national average
## 1009                   Not Available
## 1010      Above the national average
## 1011                   Not Available
## 1012                   Not Available
## 1013      Above the national average
## 1014      Above the national average
## 1015    Same as the national average
## 1016    Same as the national average
## 1017      Below the national average
## 1018                   Not Available
## 1019                   Not Available
## 1020                   Not Available
## 1021                   Not Available
## 1022    Same as the national average
## 1023      Above the national average
## 1024      Above the national average
## 1025                   Not Available
## 1026    Same as the national average
## 1027                   Not Available
## 1028    Same as the national average
## 1029    Same as the national average
## 1030    Same as the national average
## 1031                   Not Available
## 1032    Same as the national average
## 1033      Below the national average
## 1034      Below the national average
## 1035                   Not Available
## 1036                   Not Available
## 1037    Same as the national average
## 1038                   Not Available
## 1039                   Not Available
## 1040      Above the national average
## 1041                   Not Available
## 1042    Same as the national average
## 1043      Below the national average
## 1044      Below the national average
## 1045      Above the national average
## 1046      Below the national average
## 1047      Above the national average
## 1048                   Not Available
## 1049    Same as the national average
## 1050                   Not Available
## 1051                   Not Available
## 1052                   Not Available
## 1053      Below the national average
## 1054      Above the national average
## 1055      Below the national average
## 1056      Above the national average
## 1057      Below the national average
## 1058      Below the national average
## 1059      Above the national average
## 1060    Same as the national average
## 1061    Same as the national average
## 1062      Below the national average
## 1063    Same as the national average
## 1064      Above the national average
## 1065      Below the national average
## 1066      Above the national average
## 1067      Below the national average
## 1068                   Not Available
## 1069      Below the national average
## 1070    Same as the national average
## 1071      Below the national average
## 1072                   Not Available
## 1073      Above the national average
## 1074                   Not Available
## 1075    Same as the national average
## 1076                   Not Available
## 1077      Above the national average
## 1078      Above the national average
## 1079      Above the national average
## 1080                   Not Available
## 1081      Above the national average
## 1082      Above the national average
## 1083      Below the national average
## 1084      Above the national average
## 1085    Same as the national average
## 1086    Same as the national average
## 1087                   Not Available
## 1088      Above the national average
## 1089      Below the national average
## 1090                   Not Available
## 1091      Below the national average
## 1092      Below the national average
## 1093      Above the national average
## 1094    Same as the national average
## 1095                   Not Available
## 1096    Same as the national average
## 1097      Above the national average
## 1098    Same as the national average
## 1099      Below the national average
## 1100      Above the national average
## 1101      Below the national average
## 1102    Same as the national average
## 1103                   Not Available
## 1104      Below the national average
## 1105      Above the national average
## 1106    Same as the national average
## 1107                   Not Available
## 1108      Below the national average
## 1109                   Not Available
## 1110      Below the national average
## 1111    Same as the national average
## 1112                   Not Available
## 1113    Same as the national average
## 1114      Above the national average
## 1115      Above the national average
## 1116      Above the national average
## 1117                   Not Available
## 1118                   Not Available
## 1119      Below the national average
## 1120                   Not Available
## 1121      Below the national average
## 1122    Same as the national average
## 1123      Below the national average
## 1124                   Not Available
## 1125      Below the national average
## 1126      Above the national average
## 1127      Above the national average
## 1128      Above the national average
## 1129      Below the national average
## 1130                   Not Available
## 1131      Above the national average
## 1132      Below the national average
## 1133                   Not Available
## 1134      Above the national average
## 1135    Same as the national average
## 1136      Below the national average
## 1137                   Not Available
## 1138      Below the national average
## 1139                   Not Available
## 1140      Below the national average
## 1141                   Not Available
## 1142    Same as the national average
## 1143                   Not Available
## 1144    Same as the national average
## 1145                   Not Available
## 1146      Above the national average
## 1147                   Not Available
## 1148                   Not Available
## 1149                   Not Available
## 1150                   Not Available
## 1151      Below the national average
## 1152      Below the national average
## 1153                   Not Available
## 1154      Below the national average
## 1155      Below the national average
## 1156                   Not Available
## 1157      Above the national average
## 1158      Below the national average
## 1159    Same as the national average
## 1160      Above the national average
## 1161                   Not Available
## 1162                   Not Available
## 1163      Below the national average
## 1164      Below the national average
## 1165                   Not Available
## 1166      Below the national average
## 1167    Same as the national average
## 1168                   Not Available
## 1169      Above the national average
## 1170      Below the national average
## 1171    Same as the national average
## 1172      Below the national average
## 1173                   Not Available
## 1174    Same as the national average
## 1175      Above the national average
## 1176    Same as the national average
## 1177      Below the national average
## 1178                   Not Available
## 1179    Same as the national average
## 1180                   Not Available
## 1181    Same as the national average
## 1182      Above the national average
## 1183      Above the national average
## 1184                   Not Available
## 1185                   Not Available
## 1186      Above the national average
## 1187      Above the national average
## 1188                   Not Available
## 1189      Below the national average
## 1190      Below the national average
## 1191      Above the national average
## 1192      Below the national average
## 1193    Same as the national average
## 1194      Above the national average
## 1195                   Not Available
## 1196      Below the national average
## 1197    Same as the national average
## 1198      Above the national average
## 1199                   Not Available
## 1200                   Not Available
## 1201                   Not Available
## 1202                   Not Available
## 1203      Below the national average
## 1204                   Not Available
## 1205      Above the national average
## 1206                   Not Available
## 1207                   Not Available
## 1208                   Not Available
## 1209      Below the national average
## 1210      Below the national average
## 1211      Above the national average
## 1212                   Not Available
## 1213                   Not Available
## 1214    Same as the national average
## 1215      Above the national average
## 1216    Same as the national average
## 1217      Above the national average
## 1218    Same as the national average
## 1219                   Not Available
## 1220      Above the national average
## 1221    Same as the national average
## 1222      Above the national average
## 1223      Below the national average
## 1224      Above the national average
## 1225    Same as the national average
## 1226      Below the national average
## 1227      Above the national average
## 1228    Same as the national average
## 1229      Above the national average
## 1230                   Not Available
## 1231                   Not Available
## 1232    Same as the national average
## 1233    Same as the national average
## 1234                   Not Available
## 1235                   Not Available
## 1236      Below the national average
## 1237      Below the national average
## 1238                   Not Available
## 1239      Above the national average
## 1240      Below the national average
## 1241                   Not Available
## 1242                   Not Available
## 1243      Below the national average
## 1244      Above the national average
## 1245    Same as the national average
## 1246      Above the national average
## 1247    Same as the national average
## 1248                   Not Available
## 1249      Above the national average
## 1250      Below the national average
## 1251      Below the national average
## 1252                   Not Available
## 1253      Below the national average
## 1254    Same as the national average
## 1255    Same as the national average
## 1256      Above the national average
## 1257      Below the national average
## 1258      Above the national average
## 1259    Same as the national average
## 1260      Below the national average
## 1261                   Not Available
## 1262                   Not Available
## 1263      Below the national average
## 1264                   Not Available
## 1265      Below the national average
## 1266      Above the national average
## 1267                   Not Available
## 1268      Above the national average
## 1269                   Not Available
## 1270      Below the national average
## 1271      Below the national average
## 1272      Above the national average
## 1273      Below the national average
## 1274      Above the national average
## 1275      Above the national average
## 1276                   Not Available
## 1277      Above the national average
## 1278      Above the national average
## 1279      Below the national average
## 1280      Below the national average
## 1281      Below the national average
## 1282    Same as the national average
## 1283      Below the national average
## 1284      Below the national average
## 1285      Above the national average
## 1286      Above the national average
## 1287    Same as the national average
## 1288                   Not Available
## 1289      Above the national average
## 1290      Below the national average
## 1291      Below the national average
## 1292      Below the national average
## 1293    Same as the national average
## 1294                   Not Available
## 1295      Below the national average
## 1296      Below the national average
## 1297    Same as the national average
## 1298    Same as the national average
## 1299                   Not Available
## 1300    Same as the national average
## 1301                   Not Available
## 1302      Below the national average
## 1303    Same as the national average
## 1304                   Not Available
## 1305    Same as the national average
## 1306                   Not Available
## 1307      Above the national average
## 1308      Above the national average
## 1309      Above the national average
## 1310      Below the national average
## 1311                   Not Available
## 1312      Above the national average
## 1313      Below the national average
## 1314      Above the national average
## 1315    Same as the national average
## 1316    Same as the national average
## 1317      Below the national average
## 1318      Below the national average
## 1319      Below the national average
## 1320      Below the national average
## 1321      Below the national average
## 1322      Above the national average
## 1323    Same as the national average
## 1324      Above the national average
## 1325      Above the national average
## 1326      Below the national average
## 1327                   Not Available
## 1328      Below the national average
## 1329      Above the national average
## 1330                   Not Available
## 1331      Above the national average
## 1332      Below the national average
## 1333      Below the national average
## 1334      Below the national average
## 1335      Below the national average
## 1336    Same as the national average
## 1337      Below the national average
## 1338      Above the national average
## 1339      Above the national average
## 1340                   Not Available
## 1341                   Not Available
## 1342                   Not Available
## 1343                   Not Available
## 1344                   Not Available
## 1345      Below the national average
## 1346      Above the national average
## 1347                   Not Available
## 1348      Above the national average
## 1349    Same as the national average
## 1350      Above the national average
## 1351    Same as the national average
## 1352      Above the national average
## 1353                   Not Available
## 1354                   Not Available
## 1355      Above the national average
## 1356                   Not Available
## 1357                   Not Available
## 1358      Above the national average
## 1359      Above the national average
## 1360    Same as the national average
## 1361      Above the national average
## 1362      Below the national average
## 1363                   Not Available
## 1364      Above the national average
## 1365                   Not Available
## 1366    Same as the national average
## 1367      Below the national average
## 1368      Above the national average
## 1369      Below the national average
## 1370      Below the national average
## 1371    Same as the national average
## 1372      Below the national average
## 1373    Same as the national average
## 1374      Below the national average
## 1375      Above the national average
## 1376      Above the national average
## 1377    Same as the national average
## 1378    Same as the national average
## 1379                   Not Available
## 1380      Above the national average
## 1381                   Not Available
## 1382      Above the national average
## 1383      Below the national average
## 1384      Below the national average
## 1385      Below the national average
## 1386    Same as the national average
## 1387      Above the national average
## 1388      Above the national average
## 1389      Below the national average
## 1390      Below the national average
## 1391      Below the national average
## 1392    Same as the national average
## 1393      Below the national average
## 1394      Above the national average
## 1395      Above the national average
## 1396    Same as the national average
## 1397      Above the national average
## 1398      Above the national average
## 1399    Same as the national average
## 1400                   Not Available
## 1401      Below the national average
## 1402    Same as the national average
## 1403                   Not Available
## 1404      Below the national average
## 1405      Above the national average
## 1406      Above the national average
## 1407      Above the national average
## 1408      Below the national average
## 1409      Below the national average
## 1410    Same as the national average
## 1411    Same as the national average
## 1412      Below the national average
## 1413      Below the national average
## 1414    Same as the national average
## 1415      Below the national average
## 1416                   Not Available
## 1417      Above the national average
## 1418      Above the national average
## 1419      Above the national average
## 1420      Below the national average
## 1421                   Not Available
## 1422      Below the national average
## 1423      Below the national average
## 1424      Above the national average
## 1425      Above the national average
## 1426    Same as the national average
## 1427      Below the national average
## 1428      Above the national average
## 1429      Above the national average
## 1430      Below the national average
## 1431    Same as the national average
## 1432      Above the national average
## 1433    Same as the national average
## 1434      Above the national average
## 1435      Below the national average
## 1436                   Not Available
## 1437      Above the national average
## 1438      Above the national average
## 1439      Below the national average
## 1440                   Not Available
## 1441                   Not Available
## 1442                   Not Available
## 1443      Below the national average
## 1444      Below the national average
## 1445      Above the national average
## 1446      Above the national average
## 1447      Below the national average
## 1448      Above the national average
## 1449      Above the national average
## 1450    Same as the national average
## 1451      Above the national average
## 1452      Below the national average
## 1453      Above the national average
## 1454                   Not Available
## 1455    Same as the national average
## 1456                   Not Available
## 1457      Below the national average
## 1458                   Not Available
## 1459                   Not Available
## 1460                   Not Available
## 1461                   Not Available
## 1462                   Not Available
## 1463                   Not Available
## 1464      Below the national average
## 1465    Same as the national average
## 1466      Above the national average
## 1467    Same as the national average
## 1468      Below the national average
## 1469                   Not Available
## 1470      Below the national average
## 1471      Below the national average
## 1472      Above the national average
## 1473                   Not Available
## 1474                   Not Available
## 1475                   Not Available
## 1476      Above the national average
## 1477    Same as the national average
## 1478                   Not Available
## 1479      Below the national average
## 1480                   Not Available
## 1481      Below the national average
## 1482                   Not Available
## 1483      Above the national average
## 1484      Above the national average
## 1485                   Not Available
## 1486      Below the national average
## 1487    Same as the national average
## 1488      Below the national average
## 1489                   Not Available
## 1490      Above the national average
## 1491      Below the national average
## 1492      Above the national average
## 1493                   Not Available
## 1494                   Not Available
## 1495      Above the national average
## 1496                   Not Available
## 1497      Above the national average
## 1498                   Not Available
## 1499                   Not Available
## 1500      Above the national average
## 1501      Below the national average
## 1502      Above the national average
## 1503      Below the national average
## 1504      Below the national average
## 1505      Below the national average
## 1506      Below the national average
## 1507      Above the national average
## 1508      Above the national average
## 1509    Same as the national average
## 1510    Same as the national average
## 1511    Same as the national average
## 1512    Same as the national average
## 1513      Above the national average
## 1514                   Not Available
## 1515      Above the national average
## 1516      Above the national average
## 1517      Above the national average
## 1518      Below the national average
## 1519    Same as the national average
## 1520      Above the national average
## 1521                   Not Available
## 1522      Below the national average
## 1523      Above the national average
## 1524      Above the national average
## 1525      Above the national average
## 1526      Above the national average
## 1527                   Not Available
## 1528      Above the national average
## 1529      Above the national average
## 1530      Below the national average
## 1531      Above the national average
## 1532      Above the national average
## 1533      Above the national average
## 1534      Above the national average
## 1535      Above the national average
## 1536      Above the national average
## 1537      Below the national average
## 1538      Below the national average
## 1539      Above the national average
## 1540      Above the national average
## 1541      Below the national average
## 1542      Below the national average
## 1543      Above the national average
## 1544      Above the national average
## 1545    Same as the national average
## 1546    Same as the national average
## 1547                   Not Available
## 1548                   Not Available
## 1549      Below the national average
## 1550    Same as the national average
## 1551                   Not Available
## 1552      Below the national average
## 1553    Same as the national average
## 1554                   Not Available
## 1555                   Not Available
## 1556                   Not Available
## 1557      Above the national average
## 1558      Above the national average
## 1559      Below the national average
## 1560      Above the national average
## 1561                   Not Available
## 1562                   Not Available
## 1563      Above the national average
## 1564      Below the national average
## 1565    Same as the national average
## 1566      Above the national average
## 1567      Above the national average
## 1568                   Not Available
## 1569      Above the national average
## 1570      Below the national average
## 1571                   Not Available
## 1572      Below the national average
## 1573      Above the national average
## 1574                   Not Available
## 1575      Below the national average
## 1576    Same as the national average
## 1577      Below the national average
## 1578      Above the national average
## 1579      Above the national average
## 1580    Same as the national average
## 1581                   Not Available
## 1582      Above the national average
## 1583    Same as the national average
## 1584                   Not Available
## 1585      Above the national average
## 1586      Above the national average
## 1587    Same as the national average
## 1588      Above the national average
## 1589      Below the national average
## 1590    Same as the national average
## 1591      Below the national average
## 1592    Same as the national average
## 1593      Below the national average
## 1594      Above the national average
## 1595                   Not Available
## 1596      Below the national average
## 1597      Above the national average
## 1598                   Not Available
## 1599      Below the national average
## 1600      Below the national average
## 1601      Below the national average
## 1602                   Not Available
## 1603      Below the national average
## 1604      Below the national average
## 1605                   Not Available
## 1606    Same as the national average
## 1607                   Not Available
## 1608      Below the national average
## 1609      Below the national average
## 1610    Same as the national average
## 1611      Below the national average
## 1612      Above the national average
## 1613                   Not Available
## 1614      Above the national average
## 1615      Below the national average
## 1616    Same as the national average
## 1617                   Not Available
## 1618                   Not Available
## 1619      Above the national average
## 1620                   Not Available
## 1621      Below the national average
## 1622    Same as the national average
## 1623    Same as the national average
## 1624                   Not Available
## 1625      Above the national average
## 1626      Below the national average
## 1627    Same as the national average
## 1628      Below the national average
## 1629    Same as the national average
## 1630    Same as the national average
## 1631      Above the national average
## 1632      Above the national average
## 1633      Above the national average
## 1634    Same as the national average
## 1635      Below the national average
## 1636                   Not Available
## 1637      Above the national average
## 1638      Above the national average
## 1639                   Not Available
## 1640      Below the national average
## 1641                   Not Available
## 1642                   Not Available
## 1643                   Not Available
## 1644      Above the national average
## 1645    Same as the national average
## 1646      Above the national average
## 1647    Same as the national average
## 1648                   Not Available
## 1649    Same as the national average
## 1650      Above the national average
## 1651                   Not Available
## 1652      Below the national average
## 1653      Above the national average
## 1654    Same as the national average
## 1655      Above the national average
## 1656      Above the national average
## 1657                   Not Available
## 1658      Above the national average
## 1659      Below the national average
## 1660      Above the national average
## 1661                   Not Available
## 1662    Same as the national average
## 1663      Below the national average
## 1664      Below the national average
## 1665      Above the national average
## 1666      Below the national average
## 1667    Same as the national average
## 1668    Same as the national average
## 1669                   Not Available
## 1670                   Not Available
## 1671    Same as the national average
## 1672                   Not Available
## 1673      Above the national average
## 1674      Above the national average
## 1675      Below the national average
## 1676      Below the national average
## 1677      Below the national average
## 1678      Below the national average
## 1679                   Not Available
## 1680      Above the national average
## 1681      Above the national average
## 1682      Above the national average
## 1683                   Not Available
## 1684      Below the national average
## 1685                   Not Available
## 1686      Above the national average
## 1687                   Not Available
## 1688    Same as the national average
## 1689      Below the national average
## 1690                   Not Available
## 1691      Above the national average
## 1692      Below the national average
## 1693                   Not Available
## 1694                   Not Available
## 1695                   Not Available
## 1696      Below the national average
## 1697      Below the national average
## 1698    Same as the national average
## 1699      Below the national average
## 1700    Same as the national average
## 1701      Below the national average
## 1702                   Not Available
## 1703      Above the national average
## 1704                   Not Available
## 1705                   Not Available
## 1706      Above the national average
## 1707      Above the national average
## 1708                   Not Available
## 1709      Below the national average
## 1710      Above the national average
## 1711      Above the national average
## 1712      Above the national average
## 1713                   Not Available
## 1714                   Not Available
## 1715      Below the national average
## 1716      Below the national average
## 1717      Above the national average
## 1718                   Not Available
## 1719      Above the national average
## 1720      Below the national average
## 1721    Same as the national average
## 1722    Same as the national average
## 1723      Above the national average
## 1724      Below the national average
## 1725                   Not Available
## 1726      Below the national average
## 1727                   Not Available
## 1728                   Not Available
## 1729      Below the national average
## 1730    Same as the national average
## 1731    Same as the national average
## 1732      Below the national average
## 1733      Below the national average
## 1734    Same as the national average
## 1735      Above the national average
## 1736                   Not Available
## 1737                   Not Available
## 1738      Below the national average
## 1739                   Not Available
## 1740    Same as the national average
## 1741                   Not Available
## 1742      Below the national average
## 1743      Above the national average
## 1744      Above the national average
## 1745      Above the national average
## 1746                   Not Available
## 1747      Above the national average
## 1748    Same as the national average
## 1749                   Not Available
## 1750                   Not Available
## 1751      Below the national average
## 1752      Above the national average
## 1753    Same as the national average
## 1754                   Not Available
## 1755      Above the national average
## 1756      Below the national average
## 1757    Same as the national average
## 1758      Below the national average
## 1759    Same as the national average
## 1760                   Not Available
## 1761      Below the national average
## 1762      Below the national average
## 1763    Same as the national average
## 1764                   Not Available
## 1765      Below the national average
## 1766                   Not Available
## 1767      Above the national average
## 1768    Same as the national average
## 1769                   Not Available
## 1770    Same as the national average
## 1771                   Not Available
## 1772                   Not Available
## 1773                   Not Available
## 1774      Below the national average
## 1775    Same as the national average
## 1776      Below the national average
## 1777      Below the national average
## 1778                   Not Available
## 1779                   Not Available
## 1780                   Not Available
## 1781    Same as the national average
## 1782      Below the national average
## 1783      Above the national average
## 1784      Below the national average
## 1785    Same as the national average
## 1786      Above the national average
## 1787                   Not Available
## 1788      Above the national average
## 1789    Same as the national average
## 1790      Below the national average
## 1791      Above the national average
## 1792    Same as the national average
## 1793      Below the national average
## 1794      Above the national average
## 1795      Below the national average
## 1796      Below the national average
## 1797      Above the national average
## 1798      Below the national average
## 1799      Below the national average
## 1800      Below the national average
## 1801                   Not Available
## 1802      Above the national average
## 1803    Same as the national average
## 1804    Same as the national average
## 1805                   Not Available
## 1806                   Not Available
## 1807                   Not Available
## 1808                   Not Available
## 1809                   Not Available
## 1810      Below the national average
## 1811      Below the national average
## 1812      Below the national average
## 1813      Above the national average
## 1814                   Not Available
## 1815      Below the national average
## 1816                   Not Available
## 1817      Below the national average
## 1818                   Not Available
## 1819    Same as the national average
## 1820      Above the national average
## 1821      Below the national average
## 1822      Above the national average
## 1823                   Not Available
## 1824      Below the national average
## 1825      Above the national average
## 1826      Below the national average
## 1827    Same as the national average
## 1828      Above the national average
## 1829    Same as the national average
## 1830      Below the national average
## 1831      Above the national average
## 1832    Same as the national average
## 1833      Above the national average
## 1834    Same as the national average
## 1835    Same as the national average
## 1836    Same as the national average
## 1837      Below the national average
## 1838      Above the national average
## 1839      Below the national average
## 1840                   Not Available
## 1841      Below the national average
## 1842      Above the national average
## 1843      Above the national average
## 1844                   Not Available
## 1845    Same as the national average
## 1846      Below the national average
## 1847      Above the national average
## 1848    Same as the national average
## 1849                   Not Available
## 1850                   Not Available
## 1851    Same as the national average
## 1852    Same as the national average
## 1853      Above the national average
## 1854    Same as the national average
## 1855    Same as the national average
## 1856      Below the national average
## 1857    Same as the national average
## 1858      Above the national average
## 1859                   Not Available
## 1860      Below the national average
## 1861      Below the national average
## 1862    Same as the national average
## 1863      Below the national average
## 1864      Below the national average
## 1865    Same as the national average
## 1866    Same as the national average
## 1867      Above the national average
## 1868      Above the national average
## 1869    Same as the national average
## 1870      Above the national average
## 1871      Below the national average
## 1872      Above the national average
## 1873      Below the national average
## 1874                   Not Available
## 1875      Below the national average
## 1876                   Not Available
## 1877                   Not Available
## 1878      Above the national average
## 1879                   Not Available
## 1880      Above the national average
## 1881      Above the national average
## 1882                   Not Available
## 1883      Above the national average
## 1884    Same as the national average
## 1885      Below the national average
## 1886    Same as the national average
## 1887    Same as the national average
## 1888                   Not Available
## 1889      Below the national average
## 1890    Same as the national average
## 1891      Above the national average
## 1892      Below the national average
## 1893      Above the national average
## 1894      Above the national average
## 1895      Below the national average
## 1896                   Not Available
## 1897                   Not Available
## 1898      Below the national average
## 1899                   Not Available
## 1900      Above the national average
## 1901    Same as the national average
## 1902      Above the national average
## 1903      Above the national average
## 1904      Above the national average
## 1905                   Not Available
## 1906    Same as the national average
## 1907      Below the national average
## 1908      Above the national average
## 1909      Below the national average
## 1910      Below the national average
## 1911    Same as the national average
## 1912    Same as the national average
## 1913      Above the national average
## 1914    Same as the national average
## 1915    Same as the national average
## 1916      Above the national average
## 1917      Above the national average
## 1918      Below the national average
## 1919                   Not Available
## 1920                   Not Available
## 1921    Same as the national average
## 1922                   Not Available
## 1923                   Not Available
## 1924                   Not Available
## 1925      Below the national average
## 1926      Below the national average
## 1927      Above the national average
## 1928    Same as the national average
## 1929      Above the national average
## 1930      Above the national average
## 1931      Above the national average
## 1932    Same as the national average
## 1933      Above the national average
## 1934    Same as the national average
## 1935      Below the national average
## 1936      Below the national average
## 1937                   Not Available
## 1938      Above the national average
## 1939      Below the national average
## 1940                   Not Available
## 1941                   Not Available
## 1942    Same as the national average
## 1943      Above the national average
## 1944      Below the national average
## 1945      Above the national average
## 1946      Below the national average
## 1947      Above the national average
## 1948    Same as the national average
## 1949                   Not Available
## 1950      Above the national average
## 1951      Above the national average
## 1952                   Not Available
## 1953      Above the national average
## 1954      Below the national average
## 1955      Above the national average
## 1956    Same as the national average
## 1957                   Not Available
## 1958      Below the national average
## 1959                   Not Available
## 1960      Below the national average
## 1961      Below the national average
## 1962      Below the national average
## 1963                   Not Available
## 1964      Below the national average
## 1965      Above the national average
## 1966                   Not Available
## 1967                   Not Available
## 1968      Below the national average
## 1969                   Not Available
## 1970    Same as the national average
## 1971                   Not Available
## 1972      Below the national average
## 1973      Above the national average
## 1974      Above the national average
## 1975      Below the national average
## 1976                   Not Available
## 1977                   Not Available
## 1978      Below the national average
## 1979      Above the national average
## 1980      Below the national average
## 1981    Same as the national average
## 1982                   Not Available
## 1983      Below the national average
## 1984    Same as the national average
## 1985      Below the national average
## 1986      Below the national average
## 1987                   Not Available
## 1988    Same as the national average
## 1989                   Not Available
## 1990      Above the national average
## 1991      Above the national average
## 1992      Below the national average
## 1993      Below the national average
## 1994      Above the national average
## 1995      Above the national average
## 1996      Below the national average
## 1997      Above the national average
## 1998      Above the national average
## 1999      Below the national average
## 2000      Above the national average
## 2001    Same as the national average
## 2002      Above the national average
## 2003    Same as the national average
## 2004      Below the national average
## 2005                   Not Available
## 2006                   Not Available
## 2007    Same as the national average
## 2008    Same as the national average
## 2009    Same as the national average
## 2010      Above the national average
## 2011                   Not Available
## 2012    Same as the national average
## 2013      Above the national average
## 2014    Same as the national average
## 2015      Below the national average
## 2016      Below the national average
## 2017                   Not Available
## 2018      Below the national average
## 2019                   Not Available
## 2020    Same as the national average
## 2021      Below the national average
## 2022      Above the national average
## 2023      Below the national average
## 2024      Above the national average
## 2025    Same as the national average
## 2026      Below the national average
## 2027    Same as the national average
## 2028      Above the national average
## 2029      Below the national average
## 2030    Same as the national average
## 2031                   Not Available
## 2032      Below the national average
## 2033    Same as the national average
## 2034      Below the national average
## 2035      Below the national average
## 2036                   Not Available
## 2037      Below the national average
## 2038    Same as the national average
## 2039      Above the national average
## 2040    Same as the national average
## 2041      Below the national average
## 2042      Above the national average
## 2043                   Not Available
## 2044      Above the national average
## 2045      Above the national average
## 2046      Above the national average
## 2047      Above the national average
## 2048      Below the national average
## 2049                   Not Available
## 2050                   Not Available
## 2051      Above the national average
## 2052      Above the national average
## 2053    Same as the national average
## 2054      Above the national average
## 2055    Same as the national average
## 2056      Above the national average
## 2057                   Not Available
## 2058      Below the national average
## 2059      Above the national average
## 2060    Same as the national average
## 2061                   Not Available
## 2062                   Not Available
## 2063    Same as the national average
## 2064      Below the national average
## 2065      Below the national average
## 2066      Below the national average
## 2067                   Not Available
## 2068      Below the national average
## 2069      Below the national average
## 2070    Same as the national average
## 2071    Same as the national average
## 2072      Above the national average
## 2073      Below the national average
## 2074      Below the national average
## 2075                   Not Available
## 2076                   Not Available
## 2077      Below the national average
## 2078      Above the national average
## 2079      Below the national average
## 2080                   Not Available
## 2081      Below the national average
## 2082    Same as the national average
## 2083                   Not Available
## 2084      Below the national average
## 2085      Above the national average
## 2086      Below the national average
## 2087      Below the national average
## 2088                   Not Available
## 2089    Same as the national average
## 2090                   Not Available
## 2091      Above the national average
## 2092    Same as the national average
## 2093      Above the national average
## 2094                   Not Available
## 2095      Below the national average
## 2096      Below the national average
## 2097      Above the national average
## 2098                   Not Available
## 2099      Below the national average
## 2100      Above the national average
## 2101      Below the national average
## 2102      Above the national average
## 2103    Same as the national average
## 2104      Above the national average
## 2105      Above the national average
## 2106                   Not Available
## 2107                   Not Available
## 2108      Below the national average
## 2109                   Not Available
## 2110                   Not Available
## 2111                   Not Available
## 2112      Above the national average
## 2113      Above the national average
## 2114                   Not Available
## 2115      Above the national average
## 2116                   Not Available
## 2117      Below the national average
## 2118      Above the national average
## 2119    Same as the national average
## 2120    Same as the national average
## 2121    Same as the national average
## 2122      Below the national average
## 2123      Above the national average
## 2124      Below the national average
## 2125      Above the national average
## 2126                   Not Available
## 2127                   Not Available
## 2128      Below the national average
## 2129                   Not Available
## 2130      Above the national average
## 2131      Below the national average
## 2132                   Not Available
## 2133      Below the national average
## 2134    Same as the national average
## 2135      Above the national average
## 2136      Above the national average
## 2137      Above the national average
## 2138                   Not Available
## 2139                   Not Available
## 2140                   Not Available
## 2141                   Not Available
## 2142                   Not Available
## 2143      Above the national average
## 2144                   Not Available
## 2145                   Not Available
## 2146      Above the national average
## 2147    Same as the national average
## 2148      Above the national average
## 2149    Same as the national average
## 2150      Below the national average
## 2151      Below the national average
## 2152                   Not Available
## 2153    Same as the national average
## 2154      Below the national average
## 2155                   Not Available
## 2156      Above the national average
## 2157                   Not Available
## 2158      Above the national average
## 2159      Above the national average
## 2160      Above the national average
## 2161    Same as the national average
## 2162                   Not Available
## 2163                   Not Available
## 2164      Below the national average
## 2165    Same as the national average
## 2166      Below the national average
## 2167                   Not Available
## 2168      Below the national average
## 2169                   Not Available
## 2170      Below the national average
## 2171      Above the national average
## 2172      Below the national average
## 2173      Above the national average
## 2174    Same as the national average
## 2175    Same as the national average
## 2176                   Not Available
## 2177      Above the national average
## 2178      Above the national average
## 2179      Below the national average
## 2180      Below the national average
## 2181      Below the national average
## 2182    Same as the national average
## 2183      Below the national average
## 2184                   Not Available
## 2185                   Not Available
## 2186                   Not Available
## 2187                   Not Available
## 2188      Below the national average
## 2189      Below the national average
## 2190      Above the national average
## 2191      Above the national average
## 2192      Below the national average
## 2193      Above the national average
## 2194    Same as the national average
## 2195    Same as the national average
## 2196                   Not Available
## 2197      Below the national average
## 2198                   Not Available
## 2199      Above the national average
## 2200                   Not Available
## 2201      Below the national average
## 2202                   Not Available
## 2203                   Not Available
## 2204      Below the national average
## 2205      Above the national average
## 2206                   Not Available
## 2207    Same as the national average
## 2208      Below the national average
## 2209      Below the national average
## 2210                   Not Available
## 2211      Above the national average
## 2212      Above the national average
## 2213    Same as the national average
## 2214    Same as the national average
## 2215      Above the national average
## 2216    Same as the national average
## 2217      Above the national average
## 2218    Same as the national average
## 2219                   Not Available
## 2220    Same as the national average
## 2221      Below the national average
## 2222      Above the national average
## 2223      Below the national average
## 2224    Same as the national average
## 2225                   Not Available
## 2226    Same as the national average
## 2227    Same as the national average
## 2228    Same as the national average
## 2229      Above the national average
## 2230    Same as the national average
## 2231                   Not Available
## 2232      Above the national average
## 2233    Same as the national average
## 2234                   Not Available
## 2235                   Not Available
## 2236      Below the national average
## 2237    Same as the national average
## 2238                   Not Available
## 2239      Below the national average
## 2240                   Not Available
## 2241                   Not Available
## 2242      Above the national average
## 2243      Above the national average
## 2244      Below the national average
## 2245      Above the national average
## 2246                   Not Available
## 2247      Below the national average
## 2248      Above the national average
## 2249    Same as the national average
## 2250                   Not Available
## 2251    Same as the national average
## 2252      Below the national average
## 2253    Same as the national average
## 2254      Below the national average
## 2255                   Not Available
## 2256                   Not Available
## 2257      Above the national average
## 2258    Same as the national average
## 2259                   Not Available
## 2260      Above the national average
## 2261      Above the national average
## 2262      Below the national average
## 2263      Above the national average
## 2264      Above the national average
## 2265      Below the national average
## 2266                   Not Available
## 2267                   Not Available
## 2268      Above the national average
## 2269      Below the national average
## 2270                   Not Available
## 2271    Same as the national average
## 2272      Above the national average
## 2273      Below the national average
## 2274      Below the national average
## 2275                   Not Available
## 2276      Below the national average
## 2277      Above the national average
## 2278    Same as the national average
## 2279    Same as the national average
## 2280      Below the national average
## 2281                   Not Available
## 2282      Below the national average
## 2283      Below the national average
## 2284                   Not Available
## 2285      Above the national average
## 2286      Below the national average
## 2287                   Not Available
## 2288                   Not Available
## 2289      Below the national average
## 2290      Above the national average
## 2291      Below the national average
## 2292      Above the national average
## 2293    Same as the national average
## 2294      Above the national average
## 2295                   Not Available
## 2296                   Not Available
## 2297      Below the national average
## 2298    Same as the national average
## 2299      Below the national average
## 2300                   Not Available
## 2301      Above the national average
## 2302      Above the national average
## 2303    Same as the national average
## 2304    Same as the national average
## 2305                   Not Available
## 2306                   Not Available
## 2307                   Not Available
## 2308      Above the national average
## 2309      Below the national average
## 2310      Below the national average
## 2311                   Not Available
## 2312      Above the national average
## 2313    Same as the national average
## 2314    Same as the national average
## 2315      Above the national average
## 2316                   Not Available
## 2317      Above the national average
## 2318                   Not Available
## 2319                   Not Available
## 2320                   Not Available
## 2321                   Not Available
## 2322      Below the national average
## 2323    Same as the national average
## 2324                   Not Available
## 2325      Below the national average
## 2326    Same as the national average
## 2327      Below the national average
## 2328      Below the national average
## 2329                   Not Available
## 2330                   Not Available
## 2331                   Not Available
## 2332                   Not Available
## 2333                   Not Available
## 2334      Above the national average
## 2335    Same as the national average
## 2336                   Not Available
## 2337                   Not Available
## 2338    Same as the national average
## 2339                   Not Available
## 2340    Same as the national average
## 2341    Same as the national average
## 2342                   Not Available
## 2343                   Not Available
## 2344      Above the national average
## 2345                   Not Available
## 2346    Same as the national average
## 2347      Below the national average
## 2348      Below the national average
## 2349                   Not Available
## 2350      Below the national average
## 2351      Above the national average
## 2352      Below the national average
## 2353    Same as the national average
## 2354      Below the national average
## 2355                   Not Available
## 2356      Above the national average
## 2357      Above the national average
## 2358      Above the national average
## 2359      Below the national average
## 2360                   Not Available
## 2361      Below the national average
## 2362    Same as the national average
## 2363      Above the national average
## 2364    Same as the national average
## 2365    Same as the national average
## 2366                   Not Available
## 2367      Above the national average
## 2368      Above the national average
## 2369                   Not Available
## 2370                   Not Available
## 2371      Above the national average
## 2372      Above the national average
## 2373      Above the national average
## 2374                   Not Available
## 2375      Above the national average
## 2376    Same as the national average
## 2377      Below the national average
## 2378                   Not Available
## 2379                   Not Available
## 2380      Above the national average
## 2381    Same as the national average
## 2382    Same as the national average
## 2383                   Not Available
## 2384                   Not Available
## 2385      Above the national average
## 2386    Same as the national average
## 2387      Above the national average
## 2388      Above the national average
## 2389    Same as the national average
## 2390                   Not Available
## 2391      Above the national average
## 2392    Same as the national average
## 2393      Above the national average
## 2394      Above the national average
## 2395                   Not Available
## 2396                   Not Available
## 2397                   Not Available
## 2398      Below the national average
## 2399      Below the national average
## 2400                   Not Available
## 2401      Below the national average
## 2402                   Not Available
## 2403                   Not Available
## 2404                   Not Available
## 2405      Above the national average
## 2406      Below the national average
## 2407      Below the national average
## 2408      Below the national average
## 2409      Below the national average
## 2410                   Not Available
## 2411      Above the national average
## 2412                   Not Available
## 2413    Same as the national average
## 2414    Same as the national average
## 2415      Above the national average
## 2416      Above the national average
## 2417    Same as the national average
## 2418                   Not Available
## 2419                   Not Available
## 2420      Above the national average
## 2421      Above the national average
## 2422    Same as the national average
## 2423      Below the national average
## 2424                   Not Available
## 2425      Below the national average
## 2426                   Not Available
## 2427      Above the national average
## 2428                   Not Available
## 2429                   Not Available
## 2430                   Not Available
## 2431      Below the national average
## 2432                   Not Available
## 2433                   Not Available
## 2434      Above the national average
## 2435      Above the national average
## 2436      Above the national average
## 2437      Above the national average
## 2438                   Not Available
## 2439      Above the national average
## 2440                   Not Available
## 2441      Above the national average
## 2442                   Not Available
## 2443      Above the national average
## 2444                   Not Available
## 2445    Same as the national average
## 2446      Below the national average
## 2447                   Not Available
## 2448    Same as the national average
## 2449                   Not Available
## 2450      Above the national average
## 2451    Same as the national average
## 2452      Below the national average
## 2453      Above the national average
## 2454    Same as the national average
## 2455      Above the national average
## 2456                   Not Available
## 2457      Above the national average
## 2458    Same as the national average
## 2459      Above the national average
## 2460      Below the national average
## 2461      Below the national average
## 2462    Same as the national average
## 2463    Same as the national average
## 2464      Above the national average
## 2465                   Not Available
## 2466    Same as the national average
## 2467      Above the national average
## 2468                   Not Available
## 2469      Above the national average
## 2470    Same as the national average
## 2471      Above the national average
## 2472                   Not Available
## 2473                   Not Available
## 2474                   Not Available
## 2475      Above the national average
## 2476      Below the national average
## 2477      Above the national average
## 2478      Below the national average
## 2479                   Not Available
## 2480      Below the national average
## 2481    Same as the national average
## 2482      Above the national average
## 2483                   Not Available
## 2484      Below the national average
## 2485                   Not Available
## 2486      Above the national average
## 2487                   Not Available
## 2488    Same as the national average
## 2489                   Not Available
## 2490      Above the national average
## 2491      Above the national average
## 2492      Below the national average
## 2493                   Not Available
## 2494                   Not Available
## 2495      Below the national average
## 2496    Same as the national average
## 2497                   Not Available
## 2498      Above the national average
## 2499                   Not Available
## 2500    Same as the national average
## 2501      Above the national average
## 2502    Same as the national average
## 2503      Above the national average
## 2504      Below the national average
## 2505      Below the national average
## 2506                   Not Available
## 2507      Above the national average
## 2508      Below the national average
## 2509      Below the national average
## 2510      Above the national average
## 2511      Above the national average
## 2512    Same as the national average
## 2513                   Not Available
## 2514      Above the national average
## 2515      Below the national average
## 2516      Below the national average
## 2517    Same as the national average
## 2518                   Not Available
## 2519    Same as the national average
## 2520                   Not Available
## 2521      Above the national average
## 2522      Above the national average
## 2523      Above the national average
## 2524                   Not Available
## 2525    Same as the national average
## 2526      Above the national average
## 2527      Below the national average
## 2528      Above the national average
## 2529      Below the national average
## 2530      Above the national average
## 2531    Same as the national average
## 2532                   Not Available
## 2533    Same as the national average
## 2534    Same as the national average
## 2535      Above the national average
## 2536    Same as the national average
## 2537      Above the national average
## 2538                   Not Available
## 2539                   Not Available
## 2540                   Not Available
## 2541      Below the national average
## 2542    Same as the national average
## 2543                   Not Available
## 2544    Same as the national average
## 2545      Below the national average
## 2546      Below the national average
## 2547                   Not Available
## 2548      Below the national average
## 2549      Above the national average
## 2550                   Not Available
## 2551    Same as the national average
## 2552                   Not Available
## 2553      Above the national average
## 2554                   Not Available
## 2555      Below the national average
## 2556      Below the national average
## 2557                   Not Available
## 2558                   Not Available
## 2559                   Not Available
## 2560      Above the national average
## 2561                   Not Available
## 2562      Above the national average
## 2563    Same as the national average
## 2564      Below the national average
## 2565      Below the national average
## 2566                   Not Available
## 2567      Above the national average
## 2568    Same as the national average
## 2569                   Not Available
## 2570    Same as the national average
## 2571      Below the national average
## 2572      Above the national average
## 2573                   Not Available
## 2574      Below the national average
## 2575      Below the national average
## 2576      Below the national average
## 2577    Same as the national average
## 2578    Same as the national average
## 2579    Same as the national average
## 2580    Same as the national average
## 2581      Above the national average
## 2582                   Not Available
## 2583                   Not Available
## 2584      Above the national average
## 2585                   Not Available
## 2586      Below the national average
## 2587                   Not Available
## 2588                   Not Available
## 2589      Above the national average
## 2590      Below the national average
## 2591      Below the national average
## 2592    Same as the national average
## 2593      Above the national average
## 2594      Below the national average
## 2595                   Not Available
## 2596                   Not Available
## 2597      Below the national average
## 2598      Below the national average
## 2599      Above the national average
## 2600                   Not Available
## 2601      Below the national average
## 2602      Below the national average
## 2603    Same as the national average
## 2604      Above the national average
## 2605      Below the national average
## 2606                   Not Available
## 2607                   Not Available
## 2608    Same as the national average
## 2609                   Not Available
## 2610      Above the national average
## 2611    Same as the national average
## 2612      Below the national average
## 2613      Above the national average
## 2614      Above the national average
## 2615      Above the national average
## 2616                   Not Available
## 2617    Same as the national average
## 2618      Above the national average
## 2619      Above the national average
## 2620    Same as the national average
## 2621    Same as the national average
## 2622      Above the national average
## 2623      Above the national average
## 2624                   Not Available
## 2625                   Not Available
## 2626    Same as the national average
## 2627                   Not Available
## 2628      Below the national average
## 2629    Same as the national average
## 2630      Above the national average
## 2631                   Not Available
## 2632                   Not Available
## 2633      Above the national average
## 2634    Same as the national average
## 2635      Above the national average
## 2636                   Not Available
## 2637      Below the national average
## 2638    Same as the national average
## 2639      Above the national average
## 2640                   Not Available
## 2641      Above the national average
## 2642      Above the national average
## 2643      Above the national average
## 2644    Same as the national average
## 2645    Same as the national average
## 2646      Above the national average
## 2647      Below the national average
## 2648                   Not Available
## 2649      Below the national average
## 2650      Above the national average
## 2651      Above the national average
## 2652      Below the national average
## 2653      Below the national average
## 2654    Same as the national average
## 2655                   Not Available
## 2656      Above the national average
## 2657      Below the national average
## 2658      Above the national average
## 2659      Above the national average
## 2660                   Not Available
## 2661                   Not Available
## 2662                   Not Available
## 2663      Above the national average
## 2664      Above the national average
## 2665      Above the national average
## 2666    Same as the national average
## 2667                   Not Available
## 2668    Same as the national average
## 2669      Below the national average
## 2670    Same as the national average
## 2671      Above the national average
## 2672      Above the national average
## 2673                   Not Available
## 2674      Below the national average
## 2675                   Not Available
## 2676    Same as the national average
## 2677      Below the national average
## 2678                   Not Available
## 2679      Above the national average
## 2680      Above the national average
## 2681                   Not Available
## 2682      Below the national average
## 2683                   Not Available
## 2684    Same as the national average
## 2685      Below the national average
## 2686      Above the national average
## 2687      Below the national average
## 2688      Above the national average
## 2689                   Not Available
## 2690                   Not Available
## 2691    Same as the national average
## 2692    Same as the national average
## 2693    Same as the national average
## 2694      Above the national average
## 2695      Below the national average
## 2696    Same as the national average
## 2697      Below the national average
## 2698                   Not Available
## 2699    Same as the national average
## 2700      Below the national average
## 2701      Above the national average
## 2702    Same as the national average
## 2703                   Not Available
## 2704      Below the national average
## 2705      Above the national average
## 2706                   Not Available
## 2707      Above the national average
## 2708                   Not Available
## 2709      Below the national average
## 2710      Below the national average
## 2711    Same as the national average
## 2712                   Not Available
## 2713      Above the national average
## 2714    Same as the national average
## 2715      Above the national average
## 2716      Above the national average
## 2717      Below the national average
## 2718                   Not Available
## 2719      Above the national average
## 2720    Same as the national average
## 2721      Above the national average
## 2722      Above the national average
## 2723      Below the national average
## 2724      Below the national average
## 2725                   Not Available
## 2726      Above the national average
## 2727    Same as the national average
## 2728      Below the national average
## 2729                   Not Available
## 2730                   Not Available
## 2731                   Not Available
## 2732                   Not Available
## 2733      Above the national average
## 2734                   Not Available
## 2735      Below the national average
## 2736    Same as the national average
## 2737      Below the national average
## 2738                   Not Available
## 2739      Above the national average
## 2740                   Not Available
## 2741    Same as the national average
## 2742      Above the national average
## 2743                   Not Available
## 2744    Same as the national average
## 2745      Below the national average
## 2746      Below the national average
## 2747                   Not Available
## 2748                   Not Available
## 2749      Above the national average
## 2750      Below the national average
## 2751      Below the national average
## 2752      Above the national average
## 2753                   Not Available
## 2754      Below the national average
## 2755      Above the national average
## 2756      Below the national average
## 2757      Above the national average
## 2758      Below the national average
## 2759                   Not Available
## 2760      Below the national average
## 2761      Below the national average
## 2762      Above the national average
## 2763                   Not Available
## 2764      Above the national average
## 2765      Below the national average
## 2766      Above the national average
## 2767    Same as the national average
## 2768      Below the national average
## 2769    Same as the national average
## 2770      Below the national average
## 2771                   Not Available
## 2772      Above the national average
## 2773      Below the national average
## 2774      Below the national average
## 2775                   Not Available
## 2776      Above the national average
## 2777    Same as the national average
## 2778      Above the national average
## 2779      Above the national average
## 2780      Above the national average
## 2781      Above the national average
## 2782    Same as the national average
## 2783      Below the national average
## 2784                   Not Available
## 2785    Same as the national average
## 2786                   Not Available
## 2787      Below the national average
## 2788      Below the national average
## 2789      Above the national average
## 2790      Above the national average
## 2791    Same as the national average
## 2792      Above the national average
## 2793      Below the national average
## 2794      Above the national average
## 2795                   Not Available
## 2796      Below the national average
## 2797      Below the national average
## 2798      Below the national average
## 2799      Below the national average
## 2800      Above the national average
## 2801    Same as the national average
## 2802                   Not Available
## 2803      Above the national average
## 2804      Below the national average
## 2805    Same as the national average
## 2806                   Not Available
## 2807      Below the national average
## 2808      Above the national average
## 2809    Same as the national average
## 2810    Same as the national average
## 2811      Above the national average
## 2812    Same as the national average
## 2813      Below the national average
## 2814      Above the national average
## 2815                   Not Available
## 2816    Same as the national average
## 2817                   Not Available
## 2818      Above the national average
## 2819      Above the national average
## 2820                   Not Available
## 2821                   Not Available
## 2822      Above the national average
## 2823      Below the national average
## 2824    Same as the national average
## 2825      Above the national average
## 2826                   Not Available
## 2827                   Not Available
## 2828                   Not Available
## 2829                   Not Available
## 2830    Same as the national average
## 2831      Below the national average
## 2832                   Not Available
## 2833      Below the national average
## 2834    Same as the national average
## 2835                   Not Available
## 2836      Above the national average
## 2837      Above the national average
## 2838      Below the national average
## 2839      Below the national average
## 2840      Above the national average
## 2841    Same as the national average
## 2842      Above the national average
## 2843                   Not Available
## 2844      Below the national average
## 2845                   Not Available
## 2846                   Not Available
## 2847                   Not Available
## 2848      Above the national average
## 2849      Below the national average
## 2850      Below the national average
## 2851                   Not Available
## 2852      Above the national average
## 2853    Same as the national average
## 2854                   Not Available
## 2855      Above the national average
## 2856      Below the national average
## 2857                   Not Available
## 2858      Below the national average
## 2859      Above the national average
## 2860      Above the national average
## 2861      Above the national average
## 2862                   Not Available
## 2863      Below the national average
## 2864      Below the national average
## 2865      Below the national average
## 2866      Above the national average
## 2867    Same as the national average
## 2868      Below the national average
## 2869    Same as the national average
## 2870      Above the national average
## 2871      Below the national average
## 2872      Above the national average
## 2873      Below the national average
## 2874                   Not Available
## 2875      Below the national average
## 2876    Same as the national average
## 2877      Above the national average
## 2878      Below the national average
## 2879                   Not Available
## 2880                   Not Available
## 2881      Below the national average
## 2882                   Not Available
## 2883      Below the national average
## 2884                   Not Available
## 2885      Below the national average
## 2886      Below the national average
## 2887      Above the national average
## 2888                   Not Available
## 2889                   Not Available
## 2890      Above the national average
## 2891                   Not Available
## 2892    Same as the national average
## 2893      Above the national average
## 2894                   Not Available
## 2895      Above the national average
## 2896    Same as the national average
## 2897      Below the national average
## 2898      Below the national average
## 2899    Same as the national average
## 2900                   Not Available
## 2901      Above the national average
## 2902                   Not Available
## 2903    Same as the national average
## 2904    Same as the national average
## 2905      Below the national average
## 2906                   Not Available
## 2907      Below the national average
## 2908      Below the national average
## 2909      Above the national average
## 2910                   Not Available
## 2911      Below the national average
## 2912      Below the national average
## 2913      Above the national average
## 2914      Below the national average
## 2915      Above the national average
## 2916      Below the national average
## 2917      Below the national average
## 2918    Same as the national average
## 2919      Below the national average
## 2920      Above the national average
## 2921    Same as the national average
## 2922    Same as the national average
## 2923      Below the national average
## 2924      Above the national average
## 2925    Same as the national average
## 2926                   Not Available
## 2927    Same as the national average
## 2928      Above the national average
## 2929      Below the national average
## 2930      Above the national average
## 2931                   Not Available
## 2932      Above the national average
## 2933      Above the national average
## 2934                   Not Available
## 2935    Same as the national average
## 2936      Above the national average
## 2937      Below the national average
## 2938                   Not Available
## 2939    Same as the national average
## 2940      Below the national average
## 2941      Above the national average
## 2942                   Not Available
## 2943      Above the national average
## 2944    Same as the national average
## 2945      Below the national average
## 2946      Above the national average
## 2947      Below the national average
## 2948    Same as the national average
## 2949                   Not Available
## 2950                   Not Available
## 2951    Same as the national average
## 2952                   Not Available
## 2953      Below the national average
## 2954      Below the national average
## 2955      Above the national average
## 2956                   Not Available
## 2957                   Not Available
## 2958      Below the national average
## 2959                   Not Available
## 2960      Below the national average
## 2961    Same as the national average
## 2962      Below the national average
## 2963      Below the national average
## 2964      Above the national average
## 2965      Below the national average
## 2966                   Not Available
## 2967    Same as the national average
## 2968      Below the national average
## 2969      Below the national average
## 2970    Same as the national average
## 2971      Above the national average
## 2972      Below the national average
## 2973      Above the national average
## 2974      Below the national average
## 2975                   Not Available
## 2976    Same as the national average
## 2977      Above the national average
## 2978    Same as the national average
## 2979    Same as the national average
## 2980    Same as the national average
## 2981      Above the national average
## 2982      Below the national average
## 2983      Above the national average
## 2984      Below the national average
## 2985      Above the national average
## 2986      Above the national average
## 2987      Above the national average
## 2988                   Not Available
## 2989      Below the national average
## 2990      Above the national average
## 2991      Below the national average
## 2992      Above the national average
## 2993      Above the national average
## 2994                   Not Available
## 2995      Above the national average
## 2996                   Not Available
## 2997                   Not Available
## 2998    Same as the national average
## 2999      Below the national average
## 3000    Same as the national average
## 3001                   Not Available
## 3002      Above the national average
## 3003      Above the national average
## 3004    Same as the national average
## 3005    Same as the national average
## 3006    Same as the national average
## 3007                   Not Available
## 3008      Above the national average
## 3009      Above the national average
## 3010      Above the national average
## 3011      Below the national average
## 3012      Below the national average
## 3013                   Not Available
## 3014      Below the national average
## 3015                   Not Available
## 3016    Same as the national average
## 3017                   Not Available
## 3018      Above the national average
## 3019      Below the national average
## 3020    Same as the national average
## 3021      Below the national average
## 3022                   Not Available
## 3023                   Not Available
## 3024      Below the national average
## 3025      Above the national average
## 3026      Below the national average
## 3027                   Not Available
## 3028      Above the national average
## 3029      Above the national average
## 3030      Above the national average
## 3031      Above the national average
## 3032      Above the national average
## 3033      Below the national average
## 3034      Above the national average
## 3035      Below the national average
## 3036      Below the national average
## 3037                   Not Available
## 3038    Same as the national average
## 3039                   Not Available
## 3040      Below the national average
## 3041      Above the national average
## 3042      Below the national average
## 3043      Below the national average
## 3044    Same as the national average
## 3045                   Not Available
## 3046      Below the national average
## 3047      Above the national average
## 3048      Below the national average
## 3049                   Not Available
## 3050    Same as the national average
## 3051    Same as the national average
## 3052      Below the national average
## 3053      Above the national average
## 3054      Above the national average
## 3055      Above the national average
## 3056      Below the national average
## 3057                   Not Available
## 3058      Below the national average
## 3059      Above the national average
## 3060                   Not Available
## 3061                   Not Available
## 3062    Same as the national average
## 3063      Above the national average
## 3064      Above the national average
## 3065      Below the national average
## 3066    Same as the national average
## 3067      Above the national average
## 3068                   Not Available
## 3069      Above the national average
## 3070      Above the national average
## 3071    Same as the national average
## 3072    Same as the national average
## 3073    Same as the national average
## 3074      Above the national average
## 3075      Above the national average
## 3076    Same as the national average
## 3077      Above the national average
## 3078      Below the national average
## 3079      Below the national average
## 3080      Above the national average
## 3081      Above the national average
## 3082      Above the national average
## 3083    Same as the national average
## 3084                   Not Available
## 3085      Below the national average
## 3086      Below the national average
## 3087      Above the national average
## 3088                   Not Available
## 3089      Below the national average
## 3090      Above the national average
## 3091      Above the national average
## 3092      Above the national average
## 3093    Same as the national average
## 3094    Same as the national average
## 3095      Below the national average
## 3096      Above the national average
## 3097      Above the national average
## 3098      Below the national average
## 3099    Same as the national average
## 3100      Above the national average
## 3101      Above the national average
## 3102      Below the national average
## 3103      Below the national average
## 3104      Below the national average
## 3105                   Not Available
## 3106      Above the national average
## 3107                   Not Available
## 3108      Above the national average
## 3109      Below the national average
## 3110                   Not Available
## 3111                   Not Available
## 3112      Above the national average
## 3113      Below the national average
## 3114      Above the national average
## 3115                   Not Available
## 3116                   Not Available
## 3117                   Not Available
## 3118      Below the national average
## 3119      Below the national average
## 3120      Above the national average
## 3121      Above the national average
## 3122      Above the national average
## 3123                   Not Available
## 3124      Below the national average
## 3125    Same as the national average
## 3126      Above the national average
## 3127      Below the national average
## 3128    Same as the national average
## 3129                   Not Available
## 3130                   Not Available
## 3131                   Not Available
## 3132    Same as the national average
## 3133      Above the national average
## 3134    Same as the national average
## 3135                   Not Available
## 3136      Above the national average
## 3137                   Not Available
## 3138                   Not Available
## 3139                   Not Available
## 3140    Same as the national average
## 3141      Above the national average
## 3142      Below the national average
## 3143    Same as the national average
## 3144                   Not Available
## 3145      Above the national average
## 3146      Above the national average
## 3147      Below the national average
## 3148      Above the national average
## 3149    Same as the national average
## 3150      Below the national average
## 3151      Above the national average
## 3152      Below the national average
## 3153      Below the national average
## 3154      Below the national average
## 3155                   Not Available
## 3156      Below the national average
## 3157      Below the national average
## 3158      Below the national average
## 3159      Below the national average
## 3160      Below the national average
## 3161      Below the national average
## 3162      Below the national average
## 3163      Above the national average
## 3164                   Not Available
## 3165    Same as the national average
## 3166    Same as the national average
## 3167      Above the national average
## 3168      Below the national average
## 3169      Above the national average
## 3170      Above the national average
## 3171      Below the national average
## 3172                   Not Available
## 3173      Below the national average
## 3174      Above the national average
## 3175                   Not Available
## 3176      Above the national average
## 3177      Below the national average
## 3178      Above the national average
## 3179    Same as the national average
## 3180    Same as the national average
## 3181      Below the national average
## 3182    Same as the national average
## 3183                   Not Available
## 3184                   Not Available
## 3185      Above the national average
## 3186      Above the national average
## 3187    Same as the national average
## 3188      Above the national average
## 3189                   Not Available
## 3190      Above the national average
## 3191                   Not Available
## 3192      Below the national average
## 3193      Below the national average
## 3194      Below the national average
## 3195    Same as the national average
## 3196      Above the national average
## 3197                   Not Available
## 3198      Below the national average
## 3199      Above the national average
## 3200      Above the national average
## 3201                   Not Available
## 3202      Below the national average
## 3203      Below the national average
## 3204    Same as the national average
## 3205      Below the national average
## 3206      Above the national average
## 3207                   Not Available
## 3208                   Not Available
## 3209    Same as the national average
## 3210      Below the national average
## 3211      Above the national average
## 3212      Above the national average
## 3213                   Not Available
## 3214                   Not Available
## 3215      Below the national average
## 3216                   Not Available
## 3217    Same as the national average
## 3218    Same as the national average
## 3219    Same as the national average
## 3220      Below the national average
## 3221                   Not Available
## 3222      Below the national average
## 3223      Above the national average
## 3224      Above the national average
## 3225                   Not Available
## 3226      Below the national average
## 3227      Above the national average
## 3228      Below the national average
## 3229      Below the national average
## 3230      Below the national average
## 3231      Above the national average
## 3232                   Not Available
## 3233                   Not Available
## 3234      Above the national average
## 3235      Below the national average
## 3236      Below the national average
## 3237    Same as the national average
## 3238      Below the national average
## 3239                   Not Available
## 3240    Same as the national average
## 3241      Below the national average
## 3242      Below the national average
## 3243      Below the national average
## 3244      Below the national average
## 3245                   Not Available
## 3246      Below the national average
## 3247      Below the national average
## 3248                   Not Available
## 3249    Same as the national average
## 3250                   Not Available
## 3251                   Not Available
## 3252      Above the national average
## 3253      Above the national average
## 3254    Same as the national average
## 3255    Same as the national average
## 3256      Above the national average
## 3257                   Not Available
## 3258      Below the national average
## 3259    Same as the national average
## 3260      Below the national average
## 3261      Below the national average
## 3262                   Not Available
## 3263                   Not Available
## 3264                   Not Available
## 3265                   Not Available
## 3266      Above the national average
## 3267      Above the national average
## 3268                   Not Available
## 3269      Below the national average
## 3270                   Not Available
## 3271      Below the national average
## 3272                   Not Available
## 3273      Above the national average
## 3274                   Not Available
## 3275                   Not Available
## 3276                   Not Available
## 3277      Above the national average
## 3278                   Not Available
## 3279                   Not Available
## 3280      Above the national average
## 3281      Above the national average
## 3282      Above the national average
## 3283      Above the national average
## 3284      Above the national average
## 3285      Below the national average
## 3286                   Not Available
## 3287                   Not Available
## 3288      Above the national average
## 3289      Above the national average
## 3290      Above the national average
## 3291      Below the national average
## 3292                   Not Available
## 3293      Below the national average
## 3294      Below the national average
## 3295      Below the national average
## 3296                   Not Available
## 3297                   Not Available
## 3298      Above the national average
## 3299      Below the national average
## 3300      Below the national average
## 3301      Below the national average
## 3302      Above the national average
## 3303                   Not Available
## 3304      Below the national average
## 3305      Above the national average
## 3306    Same as the national average
## 3307    Same as the national average
## 3308    Same as the national average
## 3309                   Not Available
## 3310      Below the national average
## 3311      Above the national average
## 3312    Same as the national average
## 3313      Below the national average
## 3314      Above the national average
## 3315      Below the national average
## 3316                   Not Available
## 3317                   Not Available
## 3318      Above the national average
## 3319                   Not Available
## 3320    Same as the national average
## 3321      Above the national average
## 3322      Above the national average
## 3323                   Not Available
## 3324      Below the national average
## 3325                   Not Available
## 3326                   Not Available
## 3327      Below the national average
## 3328      Above the national average
## 3329      Above the national average
## 3330      Above the national average
## 3331      Above the national average
## 3332    Same as the national average
## 3333      Below the national average
## 3334      Above the national average
## 3335      Above the national average
## 3336      Below the national average
## 3337    Same as the national average
## 3338    Same as the national average
## 3339                   Not Available
## 3340    Same as the national average
## 3341      Below the national average
## 3342    Same as the national average
## 3343    Same as the national average
## 3344      Above the national average
## 3345    Same as the national average
## 3346      Below the national average
## 3347      Below the national average
## 3348                   Not Available
## 3349      Below the national average
## 3350      Above the national average
## 3351                   Not Available
## 3352      Below the national average
## 3353                   Not Available
## 3354                   Not Available
## 3355                   Not Available
## 3356    Same as the national average
## 3357      Below the national average
## 3358      Above the national average
## 3359      Above the national average
## 3360                   Not Available
## 3361      Below the national average
## 3362      Above the national average
## 3363    Same as the national average
## 3364      Above the national average
## 3365      Below the national average
## 3366                   Not Available
## 3367    Same as the national average
## 3368      Above the national average
## 3369    Same as the national average
## 3370    Same as the national average
## 3371    Same as the national average
## 3372                   Not Available
## 3373    Same as the national average
## 3374    Same as the national average
## 3375    Same as the national average
## 3376                   Not Available
## 3377                   Not Available
## 3378      Above the national average
## 3379      Below the national average
## 3380      Above the national average
## 3381                   Not Available
## 3382                   Not Available
## 3383                   Not Available
## 3384                   Not Available
## 3385      Below the national average
## 3386      Below the national average
## 3387                   Not Available
## 3388      Above the national average
## 3389      Below the national average
## 3390      Below the national average
## 3391      Below the national average
## 3392                   Not Available
## 3393      Below the national average
## 3394      Below the national average
## 3395    Same as the national average
## 3396                   Not Available
## 3397      Above the national average
## 3398                   Not Available
## 3399      Below the national average
## 3400      Above the national average
## 3401                   Not Available
## 3402                   Not Available
## 3403                   Not Available
## 3404      Below the national average
## 3405                   Not Available
## 3406      Below the national average
## 3407      Above the national average
## 3408      Above the national average
## 3409      Above the national average
## 3410      Below the national average
## 3411                   Not Available
## 3412      Below the national average
## 3413      Above the national average
## 3414                   Not Available
## 3415      Above the national average
## 3416                   Not Available
## 3417      Above the national average
## 3418                   Not Available
## 3419      Below the national average
## 3420      Below the national average
## 3421      Above the national average
## 3422      Above the national average
## 3423                   Not Available
## 3424      Below the national average
## 3425    Same as the national average
## 3426                   Not Available
## 3427      Above the national average
## 3428                   Not Available
## 3429      Above the national average
## 3430      Below the national average
## 3431      Below the national average
## 3432      Above the national average
## 3433    Same as the national average
## 3434    Same as the national average
## 3435    Same as the national average
## 3436      Above the national average
## 3437      Below the national average
## 3438      Above the national average
## 3439      Above the national average
## 3440      Above the national average
## 3441      Above the national average
## 3442    Same as the national average
## 3443                   Not Available
## 3444      Below the national average
## 3445      Above the national average
## 3446                   Not Available
## 3447                   Not Available
## 3448                   Not Available
##      Readmission_national_comparison_footnote
## 1                                            
## 2                                          19
## 3                                          19
## 4                                            
## 5                                          19
## 6                                            
## 7                                          19
## 8                                           5
## 9                                          19
## 10                                         19
## 11                                         19
## 12                                           
## 13                                         19
## 14                                         19
## 15                                           
## 16                                         19
## 17                                          5
## 18                                           
## 19                                         19
## 20                                         19
## 21                                          5
## 22                                          5
## 23                                          5
## 24                                         19
## 25                                          5
## 26                                          5
## 27                                         19
## 28                                          5
## 29                                         19
## 30                                           
## 31                                          5
## 32                                         19
## 33                                         19
## 34                                         19
## 35                                         16
## 36                                         19
## 37                                         19
## 38                                          5
## 39                                           
## 40                                         19
## 41                                         19
## 42                                          5
## 43                                           
## 44                                         16
## 45                                         19
## 46                                         19
## 47                                          5
## 48                                         19
## 49                                          5
## 50                                         19
## 51                                         19
## 52                                         19
## 53                                         19
## 54                                         19
## 55                                         19
## 56                                           
## 57                                           
## 58                                          5
## 59                                          5
## 60                                           
## 61                                         19
## 62                                          5
## 63                                         19
## 64                                           
## 65                                           
## 66                                           
## 67                                           
## 68                                          5
## 69                                           
## 70                                           
## 71                                           
## 72                                           
## 73                                           
## 74                                          5
## 75                                         16
## 76                                           
## 77                                         16
## 78                                           
## 79                                          5
## 80                                           
## 81                                         19
## 82                                          5
## 83                                         19
## 84                                           
## 85                                         19
## 86                                           
## 87                                           
## 88                                         19
## 89                                           
## 90                                           
## 91                                           
## 92                                           
## 93                                           
## 94                                           
## 95                                           
## 96                                          5
## 97                                           
## 98                                           
## 99                                          5
## 100                                          
## 101                                         5
## 102                                          
## 103                                          
## 104                                          
## 105                                          
## 106                                          
## 107                                          
## 108                                          
## 109                                          
## 110                                         5
## 111                                          
## 112                                          
## 113                                          
## 114                                          
## 115                                          
## 116                                        19
## 117                                        19
## 118                                          
## 119                                         5
## 120                                          
## 121                                          
## 122                                        19
## 123                                          
## 124                                          
## 125                                         5
## 126                                        16
## 127                                         5
## 128                                          
## 129                                        19
## 130                                          
## 131                                          
## 132                                          
## 133                                          
## 134                                          
## 135                                          
## 136                                          
## 137                                        16
## 138                                        19
## 139                                          
## 140                                          
## 141                                          
## 142                                        19
## 143                                        19
## 144                                         5
## 145                                          
## 146                                         5
## 147                                          
## 148                                          
## 149                                          
## 150                                          
## 151                                          
## 152                                        16
## 153                                          
## 154                                          
## 155                                          
## 156                                          
## 157                                         5
## 158                                          
## 159                                         5
## 160                                          
## 161                                        19
## 162                                          
## 163                                          
## 164                                          
## 165                                          
## 166                                        19
## 167                                          
## 168                                          
## 169                                         5
## 170                                          
## 171                                        19
## 172                                          
## 173                                         5
## 174                                          
## 175                                          
## 176                                          
## 177                                         5
## 178                                          
## 179                                          
## 180                                          
## 181                                          
## 182                                          
## 183                                          
## 184                                        19
## 185                                          
## 186                                          
## 187                                          
## 188                                          
## 189                                          
## 190                                          
## 191                                         5
## 192                                          
## 193                                        19
## 194                                          
## 195                                        19
## 196                                          
## 197                                         5
## 198                                          
## 199                                          
## 200                                         5
## 201                                        19
## 202                                          
## 203                                        19
## 204                                          
## 205                                         5
## 206                                         5
## 207                                          
## 208                                          
## 209                                          
## 210                                          
## 211                                        19
## 212                                          
## 213                                          
## 214                                          
## 215                                        16
## 216                                          
## 217                                          
## 218                                          
## 219                                         5
## 220                                         5
## 221                                          
## 222                                          
## 223                                          
## 224                                          
## 225                                          
## 226                                          
## 227                                         5
## 228                                          
## 229                                          
## 230                                          
## 231                                         5
## 232                                          
## 233                                          
## 234                                          
## 235                                          
## 236                                          
## 237                                          
## 238                                          
## 239                                          
## 240                                         5
## 241                                          
## 242                                          
## 243                                          
## 244                                          
## 245                                          
## 246                                          
## 247                                          
## 248                                        16
## 249                                        19
## 250                                        16
## 251                                          
## 252                                        19
## 253                                          
## 254                                         5
## 255                                          
## 256                                          
## 257                                          
## 258                                          
## 259                                          
## 260                                        23
## 261                                        19
## 262                                         5
## 263                                          
## 264                                          
## 265                                          
## 266                                          
## 267                                          
## 268                                        19
## 269                                         5
## 270                                          
## 271                                          
## 272                                          
## 273                                         5
## 274                                         5
## 275                                        16
## 276                                          
## 277                                          
## 278                                          
## 279                                          
## 280                                          
## 281                                          
## 282                                          
## 283                                          
## 284                                        16
## 285                                        16
## 286                                          
## 287                                        19
## 288                                          
## 289                                          
## 290                                          
## 291                                         5
## 292                                         5
## 293                                          
## 294                                        19
## 295                                         5
## 296                                        19
## 297                                          
## 298                                          
## 299                                        19
## 300                                          
## 301                                        19
## 302                                          
## 303                                          
## 304                                        19
## 305                                        19
## 306                                        19
## 307                                         5
## 308                                          
## 309                                        19
## 310                                        16
## 311                                          
## 312                                          
## 313                                          
## 314                                          
## 315                                        16
## 316                                          
## 317                                          
## 318                                          
## 319                                          
## 320                                          
## 321                                          
## 322                                          
## 323                                          
## 324                                        19
## 325                                          
## 326                                         5
## 327                                          
## 328                                         5
## 329                                          
## 330                                        19
## 331                                          
## 332                                          
## 333                                          
## 334                                          
## 335                                          
## 336                                        19
## 337                                          
## 338                                        19
## 339                                          
## 340                                          
## 341                                          
## 342                                          
## 343                                          
## 344                                        19
## 345                                          
## 346                                          
## 347                                        19
## 348                                          
## 349                                          
## 350                                          
## 351                                          
## 352                                          
## 353                                         5
## 354                                          
## 355                                          
## 356                                          
## 357                                          
## 358                                          
## 359                                          
## 360                                        19
## 361                                          
## 362                                          
## 363                                          
## 364                                          
## 365                                          
## 366                                          
## 367                                          
## 368                                          
## 369                                          
## 370                                          
## 371                                          
## 372                                          
## 373                                          
## 374                                          
## 375                                        19
## 376                                          
## 377                                         5
## 378                                          
## 379                                        16
## 380                                          
## 381                                          
## 382                                        19
## 383                                          
## 384                                        19
## 385                                        19
## 386                                         5
## 387                                          
## 388                                         5
## 389                                          
## 390                                          
## 391                                          
## 392                                          
## 393                                          
## 394                                          
## 395                                          
## 396                                          
## 397                                         5
## 398                                          
## 399                                          
## 400                                          
## 401                                        19
## 402                                          
## 403                                        16
## 404                                          
## 405                                        19
## 406                                          
## 407                                        19
## 408                                          
## 409                                          
## 410                                         5
## 411                                          
## 412                                          
## 413                                          
## 414                                          
## 415                                          
## 416                                          
## 417                                        19
## 418                                        19
## 419                                          
## 420                                         5
## 421                                        19
## 422                                          
## 423                                          
## 424                                        19
## 425                                          
## 426                                          
## 427                                          
## 428                                          
## 429                                         5
## 430                                          
## 431                                          
## 432                                          
## 433                                          
## 434                                          
## 435                                         5
## 436                                          
## 437                                          
## 438                                          
## 439                                          
## 440                                        19
## 441                                          
## 442                                         5
## 443                                          
## 444                                          
## 445                                          
## 446                                          
## 447                                          
## 448                                        19
## 449                                          
## 450                                          
## 451                                        19
## 452                                         5
## 453                                          
## 454                                          
## 455                                          
## 456                                          
## 457                                         5
## 458                                          
## 459                                          
## 460                                          
## 461                                          
## 462                                          
## 463                                          
## 464                                          
## 465                                          
## 466                                          
## 467                                          
## 468                                          
## 469                                          
## 470                                          
## 471                                          
## 472                                          
## 473                                          
## 474                                          
## 475                                        19
## 476                                          
## 477                                          
## 478                                          
## 479                                          
## 480                                          
## 481                                          
## 482                                          
## 483                                          
## 484                                          
## 485                                          
## 486                                        19
## 487                                          
## 488                                          
## 489                                          
## 490                                          
## 491                                          
## 492                                          
## 493                                          
## 494                                          
## 495                                          
## 496                                          
## 497                                          
## 498                                          
## 499                                        16
## 500                                         5
## 501                                        16
## 502                                        19
## 503                                          
## 504                                          
## 505                                          
## 506                                        19
## 507                                        19
## 508                                          
## 509                                        19
## 510                                          
## 511                                         5
## 512                                          
## 513                                          
## 514                                          
## 515                                          
## 516                                          
## 517                                        19
## 518                                          
## 519                                          
## 520                                          
## 521                                          
## 522                                          
## 523                                          
## 524                                          
## 525                                          
## 526                                          
## 527                                          
## 528                                        19
## 529                                          
## 530                                          
## 531                                         5
## 532                                         5
## 533                                          
## 534                                          
## 535                                          
## 536                                          
## 537                                          
## 538                                         5
## 539                                          
## 540                                          
## 541                                          
## 542                                          
## 543                                        19
## 544                                          
## 545                                          
## 546                                          
## 547                                          
## 548                                         5
## 549                                          
## 550                                          
## 551                                          
## 552                                          
## 553                                        19
## 554                                         5
## 555                                          
## 556                                          
## 557                                          
## 558                                          
## 559                                          
## 560                                          
## 561                                          
## 562                                          
## 563                                         5
## 564                                         5
## 565                                          
## 566                                          
## 567                                          
## 568                                          
## 569                                          
## 570                                          
## 571                                          
## 572                                          
## 573                                          
## 574                                          
## 575                                        19
## 576                                          
## 577                                          
## 578                                          
## 579                                        19
## 580                                          
## 581                                        19
## 582                                          
## 583                                          
## 584                                          
## 585                                          
## 586                                          
## 587                                          
## 588                                          
## 589                                        19
## 590                                        16
## 591                                          
## 592                                         5
## 593                                          
## 594                                        19
## 595                                          
## 596                                          
## 597                                          
## 598                                        19
## 599                                         5
## 600                                          
## 601                                          
## 602                                          
## 603                                          
## 604                                          
## 605                                        19
## 606                                          
## 607                                         5
## 608                                          
## 609                                        19
## 610                                          
## 611                                        19
## 612                                          
## 613                                          
## 614                                          
## 615                                          
## 616                                          
## 617                                        19
## 618                                          
## 619                                          
## 620                                          
## 621                                          
## 622                                          
## 623                                        19
## 624                                         5
## 625                                          
## 626                                          
## 627                                          
## 628                                         5
## 629                                          
## 630                                         5
## 631                                          
## 632                                          
## 633                                          
## 634                                          
## 635                                          
## 636                                         5
## 637                                          
## 638                                        19
## 639                                          
## 640                                          
## 641                                          
## 642                                          
## 643                                          
## 644                                          
## 645                                          
## 646                                        19
## 647                                          
## 648                                          
## 649                                        16
## 650                                          
## 651                                        19
## 652                                         5
## 653                                          
## 654                                          
## 655                                          
## 656                                         5
## 657                                          
## 658                                          
## 659                                          
## 660                                          
## 661                                          
## 662                                          
## 663                                          
## 664                                         5
## 665                                         5
## 666                                          
## 667                                          
## 668                                        19
## 669                                          
## 670                                          
## 671                                          
## 672                                          
## 673                                          
## 674                                          
## 675                                          
## 676                                          
## 677                                         5
## 678                                          
## 679                                        16
## 680                                          
## 681                                          
## 682                                          
## 683                                          
## 684                                        16
## 685                                          
## 686                                          
## 687                                          
## 688                                        19
## 689                                          
## 690                                          
## 691                                          
## 692                                          
## 693                                          
## 694                                          
## 695                                          
## 696                                          
## 697                                          
## 698                                          
## 699                                          
## 700                                          
## 701                                          
## 702                                        19
## 703                                        16
## 704                                          
## 705                                          
## 706                                        19
## 707                                          
## 708                                          
## 709                                         5
## 710                                          
## 711                                         5
## 712                                          
## 713                                          
## 714                                        16
## 715                                          
## 716                                          
## 717                                          
## 718                                          
## 719                                          
## 720                                          
## 721                                          
## 722                                          
## 723                                          
## 724                                          
## 725                                          
## 726                                         5
## 727                                          
## 728                                          
## 729                                          
## 730                                         5
## 731                                          
## 732                                          
## 733                                          
## 734                                        19
## 735                                          
## 736                                          
## 737                                          
## 738                                          
## 739                                          
## 740                                        19
## 741                                        19
## 742                                          
## 743                                        16
## 744                                          
## 745                                        19
## 746                                          
## 747                                          
## 748                                          
## 749                                        19
## 750                                          
## 751                                        19
## 752                                          
## 753                                          
## 754                                          
## 755                                          
## 756                                          
## 757                                          
## 758                                          
## 759                                        19
## 760                                          
## 761                                         5
## 762                                          
## 763                                        19
## 764                                          
## 765                                          
## 766                                          
## 767                                          
## 768                                        19
## 769                                          
## 770                                          
## 771                                        19
## 772                                          
## 773                                          
## 774                                          
## 775                                          
## 776                                          
## 777                                          
## 778                                          
## 779                                          
## 780                                          
## 781                                          
## 782                                          
## 783                                        19
## 784                                          
## 785                                          
## 786                                          
## 787                                          
## 788                                          
## 789                                          
## 790                                          
## 791                                         5
## 792                                         5
## 793                                        19
## 794                                          
## 795                                          
## 796                                          
## 797                                          
## 798                                        19
## 799                                          
## 800                                          
## 801                                          
## 802                                          
## 803                                        19
## 804                                          
## 805                                          
## 806                                          
## 807                                        19
## 808                                          
## 809                                          
## 810                                          
## 811                                          
## 812                                          
## 813                                         5
## 814                                          
## 815                                         5
## 816                                         5
## 817                                        19
## 818                                          
## 819                                          
## 820                                          
## 821                                          
## 822                                          
## 823                                          
## 824                                          
## 825                                        16
## 826                                          
## 827                                          
## 828                                          
## 829                                          
## 830                                          
## 831                                          
## 832                                          
## 833                                          
## 834                                          
## 835                                         5
## 836                                          
## 837                                        19
## 838                                          
## 839                                          
## 840                                          
## 841                                          
## 842                                        19
## 843                                         5
## 844                                          
## 845                                          
## 846                                          
## 847                                          
## 848                                          
## 849                                        19
## 850                                         5
## 851                                          
## 852                                          
## 853                                         5
## 854                                          
## 855                                          
## 856                                          
## 857                                         5
## 858                                          
## 859                                        16
## 860                                          
## 861                                          
## 862                                          
## 863                                          
## 864                                        19
## 865                                        19
## 866                                          
## 867                                          
## 868                                          
## 869                                          
## 870                                          
## 871                                          
## 872                                          
## 873                                          
## 874                                          
## 875                                          
## 876                                          
## 877                                        19
## 878                                         5
## 879                                          
## 880                                          
## 881                                          
## 882                                        19
## 883                                          
## 884                                          
## 885                                          
## 886                                          
## 887                                          
## 888                                          
## 889                                          
## 890                                        16
## 891                                          
## 892                                          
## 893                                          
## 894                                          
## 895                                          
## 896                                          
## 897                                          
## 898                                        19
## 899                                          
## 900                                        19
## 901                                          
## 902                                          
## 903                                         5
## 904                                          
## 905                                          
## 906                                          
## 907                                          
## 908                                          
## 909                                        19
## 910                                         5
## 911                                          
## 912                                          
## 913                                          
## 914                                        19
## 915                                         5
## 916                                         5
## 917                                        19
## 918                                          
## 919                                          
## 920                                        19
## 921                                         5
## 922                                          
## 923                                          
## 924                                          
## 925                                          
## 926                                          
## 927                                          
## 928                                          
## 929                                         5
## 930                                          
## 931                                          
## 932                                        19
## 933                                        19
## 934                                          
## 935                                          
## 936                                        19
## 937                                          
## 938                                        19
## 939                                          
## 940                                          
## 941                                          
## 942                                          
## 943                                        19
## 944                                          
## 945                                          
## 946                                          
## 947                                          
## 948                                         5
## 949                                        19
## 950                                          
## 951                                          
## 952                                          
## 953                                        16
## 954                                          
## 955                                          
## 956                                          
## 957                                          
## 958                                         5
## 959                                          
## 960                                          
## 961                                          
## 962                                          
## 963                                         5
## 964                                         5
## 965                                          
## 966                                          
## 967                                          
## 968                                          
## 969                                          
## 970                                          
## 971                                          
## 972                                          
## 973                                        19
## 974                                          
## 975                                          
## 976                                        16
## 977                                          
## 978                                          
## 979                                         5
## 980                                        19
## 981                                          
## 982                                          
## 983                                          
## 984                                          
## 985                                          
## 986                                        19
## 987                                          
## 988                                          
## 989                                          
## 990                                          
## 991                                          
## 992                                          
## 993                                         5
## 994                                          
## 995                                          
## 996                                          
## 997                                        19
## 998                                          
## 999                                          
## 1000                                       19
## 1001                                       19
## 1002                                        5
## 1003                                         
## 1004                                         
## 1005                                       16
## 1006                                         
## 1007                                         
## 1008                                         
## 1009                                       19
## 1010                                         
## 1011                                       19
## 1012                                       19
## 1013                                         
## 1014                                         
## 1015                                         
## 1016                                         
## 1017                                         
## 1018                                        5
## 1019                                        5
## 1020                                        5
## 1021                                        5
## 1022                                         
## 1023                                         
## 1024                                         
## 1025                                       19
## 1026                                         
## 1027                                       19
## 1028                                         
## 1029                                         
## 1030                                         
## 1031                                        5
## 1032                                         
## 1033                                         
## 1034                                         
## 1035                                        5
## 1036                                        5
## 1037                                         
## 1038                                        5
## 1039                                        5
## 1040                                         
## 1041                                        5
## 1042                                         
## 1043                                         
## 1044                                         
## 1045                                         
## 1046                                         
## 1047                                         
## 1048                                       19
## 1049                                         
## 1050                                       19
## 1051                                       19
## 1052                                        5
## 1053                                         
## 1054                                         
## 1055                                         
## 1056                                         
## 1057                                         
## 1058                                         
## 1059                                         
## 1060                                         
## 1061                                         
## 1062                                         
## 1063                                         
## 1064                                         
## 1065                                         
## 1066                                         
## 1067                                         
## 1068                                        5
## 1069                                         
## 1070                                         
## 1071                                         
## 1072                                       19
## 1073                                         
## 1074                                       19
## 1075                                         
## 1076                                       16
## 1077                                         
## 1078                                         
## 1079                                         
## 1080                                        5
## 1081                                         
## 1082                                         
## 1083                                         
## 1084                                         
## 1085                                         
## 1086                                         
## 1087                                       16
## 1088                                         
## 1089                                         
## 1090                                       19
## 1091                                         
## 1092                                         
## 1093                                         
## 1094                                         
## 1095                                       19
## 1096                                         
## 1097                                         
## 1098                                         
## 1099                                         
## 1100                                         
## 1101                                         
## 1102                                         
## 1103                                       19
## 1104                                         
## 1105                                         
## 1106                                         
## 1107                                       19
## 1108                                         
## 1109                                        5
## 1110                                         
## 1111                                         
## 1112                                       19
## 1113                                         
## 1114                                         
## 1115                                         
## 1116                                         
## 1117                                       19
## 1118                                       16
## 1119                                         
## 1120                                        5
## 1121                                         
## 1122                                         
## 1123                                         
## 1124                                       19
## 1125                                         
## 1126                                         
## 1127                                         
## 1128                                         
## 1129                                         
## 1130                                        5
## 1131                                         
## 1132                                         
## 1133                                       16
## 1134                                         
## 1135                                         
## 1136                                         
## 1137                                       19
## 1138                                         
## 1139                                       19
## 1140                                         
## 1141                                        5
## 1142                                         
## 1143                                        5
## 1144                                         
## 1145                                        5
## 1146                                         
## 1147                                        5
## 1148                                       16
## 1149                                       16
## 1150                                       19
## 1151                                         
## 1152                                         
## 1153                                        5
## 1154                                         
## 1155                                         
## 1156                                       16
## 1157                                         
## 1158                                         
## 1159                                         
## 1160                                         
## 1161                                       19
## 1162                                       19
## 1163                                         
## 1164                                         
## 1165                                       16
## 1166                                         
## 1167                                         
## 1168                                       19
## 1169                                         
## 1170                                         
## 1171                                         
## 1172                                         
## 1173                                        5
## 1174                                         
## 1175                                         
## 1176                                         
## 1177                                         
## 1178                                       19
## 1179                                         
## 1180                                       16
## 1181                                         
## 1182                                         
## 1183                                         
## 1184                                       19
## 1185                                       19
## 1186                                         
## 1187                                         
## 1188                                        5
## 1189                                         
## 1190                                         
## 1191                                         
## 1192                                         
## 1193                                         
## 1194                                         
## 1195                                        5
## 1196                                         
## 1197                                         
## 1198                                         
## 1199                                       16
## 1200                                       19
## 1201                                       19
## 1202                                       19
## 1203                                         
## 1204                                        5
## 1205                                         
## 1206                                        5
## 1207                                        5
## 1208                                       19
## 1209                                         
## 1210                                         
## 1211                                         
## 1212                                        5
## 1213                                        5
## 1214                                         
## 1215                                         
## 1216                                         
## 1217                                         
## 1218                                         
## 1219                                        5
## 1220                                         
## 1221                                         
## 1222                                         
## 1223                                         
## 1224                                         
## 1225                                         
## 1226                                         
## 1227                                         
## 1228                                         
## 1229                                         
## 1230                                        5
## 1231                                        5
## 1232                                         
## 1233                                         
## 1234                                        5
## 1235                                        5
## 1236                                         
## 1237                                         
## 1238                                        5
## 1239                                         
## 1240                                         
## 1241                                        5
## 1242                                       19
## 1243                                         
## 1244                                         
## 1245                                         
## 1246                                         
## 1247                                         
## 1248                                       19
## 1249                                         
## 1250                                         
## 1251                                         
## 1252                                        5
## 1253                                         
## 1254                                         
## 1255                                         
## 1256                                         
## 1257                                         
## 1258                                         
## 1259                                         
## 1260                                         
## 1261                                       19
## 1262                                       19
## 1263                                         
## 1264                                       19
## 1265                                         
## 1266                                         
## 1267                                       19
## 1268                                         
## 1269                                        5
## 1270                                         
## 1271                                         
## 1272                                         
## 1273                                         
## 1274                                         
## 1275                                         
## 1276                                        5
## 1277                                         
## 1278                                         
## 1279                                         
## 1280                                         
## 1281                                         
## 1282                                         
## 1283                                         
## 1284                                         
## 1285                                         
## 1286                                         
## 1287                                         
## 1288                                        5
## 1289                                         
## 1290                                         
## 1291                                         
## 1292                                         
## 1293                                         
## 1294                                       19
## 1295                                         
## 1296                                         
## 1297                                         
## 1298                                         
## 1299                                        5
## 1300                                         
## 1301                                       19
## 1302                                         
## 1303                                         
## 1304                                        5
## 1305                                         
## 1306                                       19
## 1307                                         
## 1308                                         
## 1309                                         
## 1310                                         
## 1311                                        5
## 1312                                         
## 1313                                         
## 1314                                         
## 1315                                         
## 1316                                         
## 1317                                         
## 1318                                         
## 1319                                         
## 1320                                         
## 1321                                         
## 1322                                         
## 1323                                         
## 1324                                         
## 1325                                         
## 1326                                         
## 1327                                       19
## 1328                                         
## 1329                                         
## 1330                                       19
## 1331                                         
## 1332                                         
## 1333                                         
## 1334                                         
## 1335                                         
## 1336                                         
## 1337                                         
## 1338                                         
## 1339                                         
## 1340                                       16
## 1341                                       16
## 1342                                        5
## 1343                                       16
## 1344                                       19
## 1345                                         
## 1346                                         
## 1347                                        5
## 1348                                         
## 1349                                         
## 1350                                         
## 1351                                         
## 1352                                         
## 1353                                       16
## 1354                                       19
## 1355                                         
## 1356                                       19
## 1357                                       19
## 1358                                         
## 1359                                         
## 1360                                         
## 1361                                         
## 1362                                         
## 1363                                        5
## 1364                                         
## 1365                                        5
## 1366                                         
## 1367                                         
## 1368                                         
## 1369                                         
## 1370                                         
## 1371                                         
## 1372                                         
## 1373                                         
## 1374                                         
## 1375                                         
## 1376                                         
## 1377                                         
## 1378                                         
## 1379                                        5
## 1380                                         
## 1381                                       19
## 1382                                         
## 1383                                         
## 1384                                         
## 1385                                         
## 1386                                         
## 1387                                         
## 1388                                         
## 1389                                         
## 1390                                         
## 1391                                         
## 1392                                         
## 1393                                         
## 1394                                         
## 1395                                         
## 1396                                         
## 1397                                         
## 1398                                         
## 1399                                         
## 1400                                        5
## 1401                                         
## 1402                                         
## 1403                                       16
## 1404                                         
## 1405                                         
## 1406                                         
## 1407                                         
## 1408                                         
## 1409                                         
## 1410                                         
## 1411                                         
## 1412                                         
## 1413                                         
## 1414                                         
## 1415                                         
## 1416                                        5
## 1417                                         
## 1418                                         
## 1419                                         
## 1420                                         
## 1421                                       16
## 1422                                         
## 1423                                         
## 1424                                         
## 1425                                         
## 1426                                         
## 1427                                         
## 1428                                         
## 1429                                         
## 1430                                         
## 1431                                         
## 1432                                         
## 1433                                         
## 1434                                         
## 1435                                         
## 1436                                       19
## 1437                                         
## 1438                                         
## 1439                                         
## 1440                                       19
## 1441                                       19
## 1442                                       19
## 1443                                         
## 1444                                         
## 1445                                         
## 1446                                         
## 1447                                         
## 1448                                         
## 1449                                         
## 1450                                         
## 1451                                         
## 1452                                         
## 1453                                         
## 1454                                        5
## 1455                                         
## 1456                                        5
## 1457                                         
## 1458                                       19
## 1459                                       19
## 1460                                        5
## 1461                                       19
## 1462                                        5
## 1463                                        5
## 1464                                         
## 1465                                         
## 1466                                         
## 1467                                         
## 1468                                         
## 1469                                       19
## 1470                                         
## 1471                                         
## 1472                                         
## 1473                                       16
## 1474                                        5
## 1475                                        5
## 1476                                         
## 1477                                         
## 1478                                        5
## 1479                                         
## 1480                                        5
## 1481                                         
## 1482                                        5
## 1483                                         
## 1484                                         
## 1485                                       19
## 1486                                         
## 1487                                         
## 1488                                         
## 1489                                       19
## 1490                                         
## 1491                                         
## 1492                                         
## 1493                                       16
## 1494                                       16
## 1495                                         
## 1496                                        5
## 1497                                         
## 1498                                       19
## 1499                                        5
## 1500                                         
## 1501                                         
## 1502                                         
## 1503                                         
## 1504                                         
## 1505                                         
## 1506                                         
## 1507                                         
## 1508                                         
## 1509                                         
## 1510                                         
## 1511                                         
## 1512                                         
## 1513                                         
## 1514                                       19
## 1515                                         
## 1516                                         
## 1517                                         
## 1518                                         
## 1519                                         
## 1520                                         
## 1521                                        5
## 1522                                         
## 1523                                         
## 1524                                         
## 1525                                         
## 1526                                         
## 1527                                       19
## 1528                                         
## 1529                                         
## 1530                                         
## 1531                                         
## 1532                                         
## 1533                                         
## 1534                                         
## 1535                                         
## 1536                                         
## 1537                                         
## 1538                                         
## 1539                                         
## 1540                                         
## 1541                                         
## 1542                                         
## 1543                                         
## 1544                                         
## 1545                                         
## 1546                                         
## 1547                                        5
## 1548                                        5
## 1549                                         
## 1550                                         
## 1551                                       19
## 1552                                         
## 1553                                         
## 1554                                       16
## 1555                                       19
## 1556                                        5
## 1557                                         
## 1558                                         
## 1559                                         
## 1560                                         
## 1561                                       19
## 1562                                       16
## 1563                                         
## 1564                                         
## 1565                                         
## 1566                                         
## 1567                                         
## 1568                                        5
## 1569                                         
## 1570                                         
## 1571                                       16
## 1572                                         
## 1573                                         
## 1574                                        5
## 1575                                         
## 1576                                         
## 1577                                         
## 1578                                         
## 1579                                         
## 1580                                         
## 1581                                       19
## 1582                                         
## 1583                                         
## 1584                                        5
## 1585                                         
## 1586                                         
## 1587                                         
## 1588                                         
## 1589                                         
## 1590                                         
## 1591                                         
## 1592                                         
## 1593                                         
## 1594                                         
## 1595                                        5
## 1596                                         
## 1597                                         
## 1598                                        5
## 1599                                         
## 1600                                         
## 1601                                         
## 1602                                       19
## 1603                                         
## 1604                                         
## 1605                                       19
## 1606                                         
## 1607                                       19
## 1608                                         
## 1609                                         
## 1610                                         
## 1611                                         
## 1612                                         
## 1613                                       19
## 1614                                         
## 1615                                         
## 1616                                         
## 1617                                        5
## 1618                                       19
## 1619                                         
## 1620                                        5
## 1621                                         
## 1622                                         
## 1623                                         
## 1624                                        5
## 1625                                         
## 1626                                         
## 1627                                         
## 1628                                         
## 1629                                         
## 1630                                         
## 1631                                         
## 1632                                         
## 1633                                         
## 1634                                         
## 1635                                         
## 1636                                       19
## 1637                                         
## 1638                                         
## 1639                                       19
## 1640                                         
## 1641                                        5
## 1642                                        5
## 1643                                       19
## 1644                                         
## 1645                                         
## 1646                                         
## 1647                                         
## 1648                                       16
## 1649                                         
## 1650                                         
## 1651                                        5
## 1652                                         
## 1653                                         
## 1654                                         
## 1655                                         
## 1656                                         
## 1657                                       16
## 1658                                         
## 1659                                         
## 1660                                         
## 1661                                        5
## 1662                                         
## 1663                                         
## 1664                                         
## 1665                                         
## 1666                                         
## 1667                                         
## 1668                                         
## 1669                                        5
## 1670                                       19
## 1671                                         
## 1672                                       19
## 1673                                         
## 1674                                         
## 1675                                         
## 1676                                         
## 1677                                         
## 1678                                       23
## 1679                                       19
## 1680                                         
## 1681                                         
## 1682                                         
## 1683                                       19
## 1684                                         
## 1685                                        5
## 1686                                         
## 1687                                        5
## 1688                                         
## 1689                                         
## 1690                                        5
## 1691                                         
## 1692                                         
## 1693                                       16
## 1694                                        5
## 1695                                       19
## 1696                                         
## 1697                                         
## 1698                                         
## 1699                                         
## 1700                                         
## 1701                                         
## 1702                                       16
## 1703                                         
## 1704                                       19
## 1705                                       19
## 1706                                         
## 1707                                         
## 1708                                        5
## 1709                                         
## 1710                                         
## 1711                                         
## 1712                                         
## 1713                                        5
## 1714                                       19
## 1715                                         
## 1716                                         
## 1717                                         
## 1718                                       19
## 1719                                         
## 1720                                         
## 1721                                         
## 1722                                         
## 1723                                         
## 1724                                         
## 1725                                        5
## 1726                                         
## 1727                                       16
## 1728                                       19
## 1729                                         
## 1730                                         
## 1731                                         
## 1732                                         
## 1733                                         
## 1734                                         
## 1735                                         
## 1736                                       19
## 1737                                        5
## 1738                                         
## 1739                                        5
## 1740                                         
## 1741                                       19
## 1742                                         
## 1743                                         
## 1744                                         
## 1745                                         
## 1746                                        5
## 1747                                         
## 1748                                         
## 1749                                       19
## 1750                                        5
## 1751                                         
## 1752                                         
## 1753                                         
## 1754                                       19
## 1755                                         
## 1756                                         
## 1757                                         
## 1758                                         
## 1759                                         
## 1760                                       16
## 1761                                         
## 1762                                         
## 1763                                         
## 1764                                        5
## 1765                                         
## 1766                                        5
## 1767                                         
## 1768                                         
## 1769                                        5
## 1770                                         
## 1771                                        5
## 1772                                        5
## 1773                                        5
## 1774                                         
## 1775                                         
## 1776                                         
## 1777                                         
## 1778                                       19
## 1779                                       19
## 1780                                       16
## 1781                                         
## 1782                                         
## 1783                                         
## 1784                                         
## 1785                                         
## 1786                                         
## 1787                                        5
## 1788                                         
## 1789                                         
## 1790                                         
## 1791                                         
## 1792                                         
## 1793                                         
## 1794                                         
## 1795                                         
## 1796                                         
## 1797                                         
## 1798                                         
## 1799                                         
## 1800                                         
## 1801                                        5
## 1802                                         
## 1803                                         
## 1804                                         
## 1805                                        5
## 1806                                        5
## 1807                                       16
## 1808                                       16
## 1809                                        5
## 1810                                         
## 1811                                         
## 1812                                         
## 1813                                         
## 1814                                       19
## 1815                                         
## 1816                                       19
## 1817                                         
## 1818                                       19
## 1819                                         
## 1820                                         
## 1821                                         
## 1822                                         
## 1823                                       19
## 1824                                         
## 1825                                         
## 1826                                         
## 1827                                         
## 1828                                         
## 1829                                         
## 1830                                         
## 1831                                         
## 1832                                         
## 1833                                         
## 1834                                         
## 1835                                         
## 1836                                         
## 1837                                         
## 1838                                         
## 1839                                         
## 1840                                       19
## 1841                                         
## 1842                                         
## 1843                                         
## 1844                                        5
## 1845                                         
## 1846                                         
## 1847                                         
## 1848                                         
## 1849                                       19
## 1850                                        5
## 1851                                         
## 1852                                         
## 1853                                         
## 1854                                         
## 1855                                         
## 1856                                         
## 1857                                         
## 1858                                         
## 1859                                       19
## 1860                                         
## 1861                                         
## 1862                                         
## 1863                                         
## 1864                                         
## 1865                                         
## 1866                                         
## 1867                                         
## 1868                                         
## 1869                                         
## 1870                                         
## 1871                                         
## 1872                                         
## 1873                                         
## 1874                                        5
## 1875                                         
## 1876                                        5
## 1877                                       16
## 1878                                         
## 1879                                       19
## 1880                                         
## 1881                                         
## 1882                                        5
## 1883                                         
## 1884                                         
## 1885                                         
## 1886                                         
## 1887                                         
## 1888                                        5
## 1889                                         
## 1890                                         
## 1891                                         
## 1892                                         
## 1893                                         
## 1894                                         
## 1895                                         
## 1896                                       19
## 1897                                        5
## 1898                                         
## 1899                                        5
## 1900                                         
## 1901                                         
## 1902                                         
## 1903                                         
## 1904                                         
## 1905                                       19
## 1906                                         
## 1907                                         
## 1908                                         
## 1909                                         
## 1910                                         
## 1911                                         
## 1912                                         
## 1913                                         
## 1914                                         
## 1915                                         
## 1916                                         
## 1917                                         
## 1918                                         
## 1919                                        5
## 1920                                       19
## 1921                                         
## 1922                                        5
## 1923                                        5
## 1924                                       19
## 1925                                         
## 1926                                         
## 1927                                         
## 1928                                         
## 1929                                         
## 1930                                         
## 1931                                         
## 1932                                         
## 1933                                         
## 1934                                         
## 1935                                         
## 1936                                         
## 1937                                       16
## 1938                                         
## 1939                                         
## 1940                                       19
## 1941                                       19
## 1942                                         
## 1943                                         
## 1944                                         
## 1945                                         
## 1946                                         
## 1947                                         
## 1948                                         
## 1949                                        5
## 1950                                         
## 1951                                         
## 1952                                       16
## 1953                                         
## 1954                                         
## 1955                                         
## 1956                                         
## 1957                                       19
## 1958                                         
## 1959                                       19
## 1960                                         
## 1961                                         
## 1962                                         
## 1963                                       19
## 1964                                         
## 1965                                         
## 1966                                        5
## 1967                                       19
## 1968                                         
## 1969                                       19
## 1970                                         
## 1971                                       19
## 1972                                         
## 1973                                         
## 1974                                         
## 1975                                         
## 1976                                       19
## 1977                                       16
## 1978                                         
## 1979                                         
## 1980                                         
## 1981                                         
## 1982                                        5
## 1983                                         
## 1984                                         
## 1985                                         
## 1986                                         
## 1987                                       16
## 1988                                         
## 1989                                        5
## 1990                                         
## 1991                                         
## 1992                                         
## 1993                                         
## 1994                                         
## 1995                                         
## 1996                                         
## 1997                                         
## 1998                                         
## 1999                                         
## 2000                                         
## 2001                                         
## 2002                                         
## 2003                                         
## 2004                                         
## 2005                                        5
## 2006                                       19
## 2007                                         
## 2008                                         
## 2009                                         
## 2010                                         
## 2011                                       19
## 2012                                         
## 2013                                         
## 2014                                         
## 2015                                         
## 2016                                         
## 2017                                        5
## 2018                                         
## 2019                                       19
## 2020                                         
## 2021                                         
## 2022                                         
## 2023                                         
## 2024                                         
## 2025                                         
## 2026                                         
## 2027                                         
## 2028                                         
## 2029                                         
## 2030                                         
## 2031                                        5
## 2032                                         
## 2033                                         
## 2034                                         
## 2035                                         
## 2036                                       19
## 2037                                         
## 2038                                         
## 2039                                         
## 2040                                         
## 2041                                         
## 2042                                         
## 2043                                        5
## 2044                                         
## 2045                                         
## 2046                                         
## 2047                                         
## 2048                                         
## 2049                                       16
## 2050                                        5
## 2051                                         
## 2052                                         
## 2053                                         
## 2054                                         
## 2055                                         
## 2056                                         
## 2057                                        5
## 2058                                         
## 2059                                         
## 2060                                         
## 2061                                       16
## 2062                                       19
## 2063                                         
## 2064                                         
## 2065                                         
## 2066                                         
## 2067                                        5
## 2068                                         
## 2069                                         
## 2070                                         
## 2071                                         
## 2072                                         
## 2073                                         
## 2074                                         
## 2075                                        5
## 2076                                       19
## 2077                                         
## 2078                                         
## 2079                                         
## 2080                                        5
## 2081                                         
## 2082                                         
## 2083                                        5
## 2084                                         
## 2085                                         
## 2086                                         
## 2087                                         
## 2088                                        5
## 2089                                         
## 2090                                       19
## 2091                                         
## 2092                                         
## 2093                                         
## 2094                                       19
## 2095                                         
## 2096                                         
## 2097                                         
## 2098                                        5
## 2099                                         
## 2100                                         
## 2101                                         
## 2102                                         
## 2103                                         
## 2104                                         
## 2105                                         
## 2106                                        5
## 2107                                        5
## 2108                                         
## 2109                                       19
## 2110                                       16
## 2111                                       19
## 2112                                         
## 2113                                         
## 2114                                        5
## 2115                                         
## 2116                                        5
## 2117                                         
## 2118                                         
## 2119                                         
## 2120                                         
## 2121                                         
## 2122                                         
## 2123                                         
## 2124                                         
## 2125                                         
## 2126                                       19
## 2127                                        5
## 2128                                         
## 2129                                        5
## 2130                                         
## 2131                                         
## 2132                                       19
## 2133                                         
## 2134                                         
## 2135                                         
## 2136                                         
## 2137                                         
## 2138                                       19
## 2139                                       19
## 2140                                       19
## 2141                                       19
## 2142                                        5
## 2143                                         
## 2144                                        5
## 2145                                       19
## 2146                                         
## 2147                                         
## 2148                                         
## 2149                                         
## 2150                                         
## 2151                                         
## 2152                                       19
## 2153                                         
## 2154                                         
## 2155                                       16
## 2156                                         
## 2157                                       19
## 2158                                         
## 2159                                         
## 2160                                         
## 2161                                         
## 2162                                       19
## 2163                                       16
## 2164                                         
## 2165                                         
## 2166                                         
## 2167                                        5
## 2168                                         
## 2169                                       19
## 2170                                         
## 2171                                         
## 2172                                         
## 2173                                         
## 2174                                         
## 2175                                         
## 2176                                       19
## 2177                                         
## 2178                                         
## 2179                                         
## 2180                                         
## 2181                                         
## 2182                                         
## 2183                                         
## 2184                                       19
## 2185                                       19
## 2186                                        5
## 2187                                        5
## 2188                                         
## 2189                                         
## 2190                                         
## 2191                                         
## 2192                                         
## 2193                                         
## 2194                                         
## 2195                                         
## 2196                                       19
## 2197                                         
## 2198                                        5
## 2199                                         
## 2200                                       19
## 2201                                         
## 2202                                       16
## 2203                                       16
## 2204                                         
## 2205                                         
## 2206                                       19
## 2207                                         
## 2208                                         
## 2209                                         
## 2210                                       19
## 2211                                         
## 2212                                         
## 2213                                         
## 2214                                         
## 2215                                         
## 2216                                         
## 2217                                         
## 2218                                         
## 2219                                        5
## 2220                                         
## 2221                                         
## 2222                                         
## 2223                                         
## 2224                                         
## 2225                                       19
## 2226                                         
## 2227                                         
## 2228                                         
## 2229                                         
## 2230                                         
## 2231                                        5
## 2232                                         
## 2233                                         
## 2234                                       16
## 2235                                       16
## 2236                                         
## 2237                                         
## 2238                                        5
## 2239                                         
## 2240                                        5
## 2241                                       19
## 2242                                         
## 2243                                         
## 2244                                         
## 2245                                         
## 2246                                        5
## 2247                                         
## 2248                                         
## 2249                                         
## 2250                                       19
## 2251                                         
## 2252                                         
## 2253                                         
## 2254                                         
## 2255                                       19
## 2256                                       16
## 2257                                         
## 2258                                         
## 2259                                       19
## 2260                                         
## 2261                                         
## 2262                                         
## 2263                                         
## 2264                                         
## 2265                                         
## 2266                                       19
## 2267                                       19
## 2268                                         
## 2269                                         
## 2270                                        5
## 2271                                         
## 2272                                         
## 2273                                         
## 2274                                         
## 2275                                       19
## 2276                                         
## 2277                                         
## 2278                                         
## 2279                                         
## 2280                                         
## 2281                                        5
## 2282                                         
## 2283                                         
## 2284                                        5
## 2285                                         
## 2286                                         
## 2287                                       19
## 2288                                        5
## 2289                                         
## 2290                                         
## 2291                                         
## 2292                                         
## 2293                                         
## 2294                                         
## 2295                                       16
## 2296                                       16
## 2297                                         
## 2298                                         
## 2299                                         
## 2300                                        5
## 2301                                         
## 2302                                         
## 2303                                         
## 2304                                         
## 2305                                       19
## 2306                                       19
## 2307                                       19
## 2308                                         
## 2309                                         
## 2310                                         
## 2311                                       16
## 2312                                         
## 2313                                         
## 2314                                         
## 2315                                         
## 2316                                        5
## 2317                                         
## 2318                                       19
## 2319                                        5
## 2320                                        5
## 2321                                        5
## 2322                                         
## 2323                                         
## 2324                                        5
## 2325                                         
## 2326                                         
## 2327                                         
## 2328                                         
## 2329                                        5
## 2330                                        5
## 2331                                        5
## 2332                                       19
## 2333                                       19
## 2334                                         
## 2335                                         
## 2336                                        5
## 2337                                       19
## 2338                                         
## 2339                                       16
## 2340                                         
## 2341                                         
## 2342                                        5
## 2343                                        5
## 2344                                         
## 2345                                       19
## 2346                                         
## 2347                                         
## 2348                                         
## 2349                                        5
## 2350                                         
## 2351                                         
## 2352                                         
## 2353                                         
## 2354                                         
## 2355                                       19
## 2356                                         
## 2357                                         
## 2358                                         
## 2359                                         
## 2360                                       19
## 2361                                         
## 2362                                         
## 2363                                         
## 2364                                         
## 2365                                         
## 2366                                       19
## 2367                                         
## 2368                                         
## 2369                                       19
## 2370                                        5
## 2371                                         
## 2372                                         
## 2373                                         
## 2374                                       19
## 2375                                         
## 2376                                         
## 2377                                         
## 2378                                        5
## 2379                                       16
## 2380                                         
## 2381                                         
## 2382                                         
## 2383                                       19
## 2384                                       19
## 2385                                         
## 2386                                         
## 2387                                         
## 2388                                         
## 2389                                         
## 2390                                       19
## 2391                                         
## 2392                                         
## 2393                                         
## 2394                                         
## 2395                                       19
## 2396                                       19
## 2397                                        5
## 2398                                         
## 2399                                         
## 2400                                        5
## 2401                                         
## 2402                                       19
## 2403                                       16
## 2404                                        5
## 2405                                         
## 2406                                         
## 2407                                         
## 2408                                         
## 2409                                         
## 2410                                       19
## 2411                                         
## 2412                                        5
## 2413                                         
## 2414                                         
## 2415                                         
## 2416                                         
## 2417                                         
## 2418                                        5
## 2419                                       19
## 2420                                         
## 2421                                         
## 2422                                         
## 2423                                         
## 2424                                        5
## 2425                                         
## 2426                                       19
## 2427                                         
## 2428                                       19
## 2429                                        5
## 2430                                        5
## 2431                                         
## 2432                                       19
## 2433                                        5
## 2434                                         
## 2435                                         
## 2436                                         
## 2437                                         
## 2438                                       19
## 2439                                         
## 2440                                       19
## 2441                                         
## 2442                                        5
## 2443                                         
## 2444                                       19
## 2445                                         
## 2446                                         
## 2447                                        5
## 2448                                         
## 2449                                       19
## 2450                                         
## 2451                                         
## 2452                                         
## 2453                                         
## 2454                                         
## 2455                                         
## 2456                                       19
## 2457                                         
## 2458                                         
## 2459                                         
## 2460                                         
## 2461                                         
## 2462                                         
## 2463                                         
## 2464                                         
## 2465                                        5
## 2466                                         
## 2467                                         
## 2468                                       19
## 2469                                         
## 2470                                         
## 2471                                         
## 2472                                       19
## 2473                                        5
## 2474                                       16
## 2475                                         
## 2476                                         
## 2477                                         
## 2478                                         
## 2479                                        5
## 2480                                         
## 2481                                         
## 2482                                         
## 2483                                        5
## 2484                                         
## 2485                                       16
## 2486                                         
## 2487                                       19
## 2488                                         
## 2489                                       19
## 2490                                         
## 2491                                         
## 2492                                         
## 2493                                       19
## 2494                                       19
## 2495                                         
## 2496                                         
## 2497                                       19
## 2498                                         
## 2499                                       19
## 2500                                         
## 2501                                         
## 2502                                         
## 2503                                         
## 2504                                         
## 2505                                         
## 2506                                       19
## 2507                                         
## 2508                                         
## 2509                                         
## 2510                                         
## 2511                                         
## 2512                                         
## 2513                                        5
## 2514                                         
## 2515                                         
## 2516                                         
## 2517                                         
## 2518                                       16
## 2519                                         
## 2520                                       19
## 2521                                         
## 2522                                         
## 2523                                         
## 2524                                       19
## 2525                                         
## 2526                                         
## 2527                                         
## 2528                                         
## 2529                                         
## 2530                                         
## 2531                                         
## 2532                                        5
## 2533                                         
## 2534                                         
## 2535                                         
## 2536                                         
## 2537                                         
## 2538                                       19
## 2539                                       19
## 2540                                       19
## 2541                                         
## 2542                                         
## 2543                                        5
## 2544                                         
## 2545                                         
## 2546                                         
## 2547                                       19
## 2548                                         
## 2549                                         
## 2550                                       19
## 2551                                         
## 2552                                       19
## 2553                                         
## 2554                                        5
## 2555                                         
## 2556                                         
## 2557                                       19
## 2558                                       19
## 2559                                        5
## 2560                                         
## 2561                                        5
## 2562                                         
## 2563                                         
## 2564                                         
## 2565                                         
## 2566                                        5
## 2567                                         
## 2568                                         
## 2569                                        5
## 2570                                         
## 2571                                         
## 2572                                         
## 2573                                       19
## 2574                                         
## 2575                                         
## 2576                                         
## 2577                                         
## 2578                                         
## 2579                                         
## 2580                                         
## 2581                                         
## 2582                                        5
## 2583                                       19
## 2584                                         
## 2585                                       19
## 2586                                         
## 2587                                       16
## 2588                                        5
## 2589                                         
## 2590                                         
## 2591                                         
## 2592                                         
## 2593                                         
## 2594                                         
## 2595                                        5
## 2596                                       19
## 2597                                         
## 2598                                         
## 2599                                         
## 2600                                       16
## 2601                                         
## 2602                                         
## 2603                                         
## 2604                                         
## 2605                                         
## 2606                                       19
## 2607                                       19
## 2608                                         
## 2609                                       19
## 2610                                         
## 2611                                         
## 2612                                         
## 2613                                         
## 2614                                         
## 2615                                         
## 2616                                        5
## 2617                                         
## 2618                                         
## 2619                                         
## 2620                                         
## 2621                                         
## 2622                                         
## 2623                                         
## 2624                                       16
## 2625                                       19
## 2626                                         
## 2627                                        5
## 2628                                         
## 2629                                         
## 2630                                         
## 2631                                       19
## 2632                                       19
## 2633                                         
## 2634                                         
## 2635                                         
## 2636                                        5
## 2637                                         
## 2638                                         
## 2639                                         
## 2640                                        5
## 2641                                         
## 2642                                         
## 2643                                         
## 2644                                         
## 2645                                         
## 2646                                         
## 2647                                         
## 2648                                       19
## 2649                                         
## 2650                                         
## 2651                                         
## 2652                                         
## 2653                                         
## 2654                                         
## 2655                                       19
## 2656                                         
## 2657                                         
## 2658                                         
## 2659                                         
## 2660                                        5
## 2661                                       19
## 2662                                        5
## 2663                                         
## 2664                                         
## 2665                                         
## 2666                                         
## 2667                                        5
## 2668                                         
## 2669                                         
## 2670                                         
## 2671                                         
## 2672                                         
## 2673                                        5
## 2674                                         
## 2675                                        5
## 2676                                         
## 2677                                         
## 2678                                       19
## 2679                                         
## 2680                                         
## 2681                                       19
## 2682                                         
## 2683                                       19
## 2684                                         
## 2685                                         
## 2686                                         
## 2687                                         
## 2688                                         
## 2689                                       19
## 2690                                       19
## 2691                                         
## 2692                                         
## 2693                                         
## 2694                                         
## 2695                                         
## 2696                                         
## 2697                                         
## 2698                                       19
## 2699                                         
## 2700                                         
## 2701                                         
## 2702                                         
## 2703                                       19
## 2704                                         
## 2705                                         
## 2706                                        5
## 2707                                         
## 2708                                       19
## 2709                                         
## 2710                                         
## 2711                                         
## 2712                                        5
## 2713                                         
## 2714                                         
## 2715                                         
## 2716                                         
## 2717                                         
## 2718                                        5
## 2719                                         
## 2720                                         
## 2721                                         
## 2722                                         
## 2723                                         
## 2724                                         
## 2725                                       19
## 2726                                         
## 2727                                         
## 2728                                         
## 2729                                        5
## 2730                                        5
## 2731                                        5
## 2732                                        5
## 2733                                         
## 2734                                       16
## 2735                                         
## 2736                                         
## 2737                                         
## 2738                                        5
## 2739                                         
## 2740                                       16
## 2741                                         
## 2742                                         
## 2743                                        5
## 2744                                         
## 2745                                         
## 2746                                         
## 2747                                        5
## 2748                                       19
## 2749                                         
## 2750                                         
## 2751                                         
## 2752                                         
## 2753                                       19
## 2754                                         
## 2755                                         
## 2756                                         
## 2757                                         
## 2758                                         
## 2759                                       16
## 2760                                         
## 2761                                         
## 2762                                         
## 2763                                       19
## 2764                                         
## 2765                                         
## 2766                                         
## 2767                                         
## 2768                                         
## 2769                                         
## 2770                                         
## 2771                                        5
## 2772                                         
## 2773                                         
## 2774                                         
## 2775                                       19
## 2776                                         
## 2777                                         
## 2778                                         
## 2779                                         
## 2780                                         
## 2781                                         
## 2782                                         
## 2783                                         
## 2784                                        5
## 2785                                         
## 2786                                       19
## 2787                                         
## 2788                                         
## 2789                                         
## 2790                                         
## 2791                                         
## 2792                                         
## 2793                                         
## 2794                                         
## 2795                                        5
## 2796                                         
## 2797                                         
## 2798                                         
## 2799                                         
## 2800                                         
## 2801                                         
## 2802                                       19
## 2803                                         
## 2804                                         
## 2805                                         
## 2806                                        5
## 2807                                         
## 2808                                         
## 2809                                         
## 2810                                         
## 2811                                         
## 2812                                         
## 2813                                         
## 2814                                         
## 2815                                       16
## 2816                                         
## 2817                                       19
## 2818                                         
## 2819                                         
## 2820                                       19
## 2821                                       19
## 2822                                         
## 2823                                         
## 2824                                         
## 2825                                         
## 2826                                        5
## 2827                                       19
## 2828                                       19
## 2829                                       16
## 2830                                         
## 2831                                         
## 2832                                       19
## 2833                                         
## 2834                                         
## 2835                                        5
## 2836                                         
## 2837                                         
## 2838                                         
## 2839                                         
## 2840                                         
## 2841                                         
## 2842                                         
## 2843                                       19
## 2844                                         
## 2845                                       19
## 2846                                       19
## 2847                                       19
## 2848                                         
## 2849                                         
## 2850                                         
## 2851                                        5
## 2852                                         
## 2853                                         
## 2854                                        5
## 2855                                         
## 2856                                         
## 2857                                        5
## 2858                                         
## 2859                                         
## 2860                                         
## 2861                                         
## 2862                                        5
## 2863                                         
## 2864                                         
## 2865                                         
## 2866                                         
## 2867                                         
## 2868                                         
## 2869                                         
## 2870                                         
## 2871                                         
## 2872                                         
## 2873                                         
## 2874                                        5
## 2875                                         
## 2876                                         
## 2877                                         
## 2878                                         
## 2879                                       16
## 2880                                       19
## 2881                                         
## 2882                                        5
## 2883                                         
## 2884                                       19
## 2885                                         
## 2886                                         
## 2887                                         
## 2888                                        5
## 2889                                       16
## 2890                                         
## 2891                                        5
## 2892                                         
## 2893                                         
## 2894                                        5
## 2895                                         
## 2896                                         
## 2897                                         
## 2898                                         
## 2899                                         
## 2900                                        5
## 2901                                         
## 2902                                        5
## 2903                                         
## 2904                                         
## 2905                                         
## 2906                                        5
## 2907                                         
## 2908                                         
## 2909                                         
## 2910                                        5
## 2911                                         
## 2912                                         
## 2913                                         
## 2914                                         
## 2915                                         
## 2916                                         
## 2917                                         
## 2918                                         
## 2919                                         
## 2920                                         
## 2921                                         
## 2922                                         
## 2923                                         
## 2924                                         
## 2925                                         
## 2926                                       19
## 2927                                         
## 2928                                         
## 2929                                         
## 2930                                         
## 2931                                        5
## 2932                                         
## 2933                                         
## 2934                                       19
## 2935                                         
## 2936                                         
## 2937                                         
## 2938                                        5
## 2939                                         
## 2940                                         
## 2941                                         
## 2942                                        5
## 2943                                         
## 2944                                         
## 2945                                         
## 2946                                         
## 2947                                         
## 2948                                         
## 2949                                        5
## 2950                                       19
## 2951                                         
## 2952                                       16
## 2953                                         
## 2954                                         
## 2955                                         
## 2956                                        5
## 2957                                       19
## 2958                                         
## 2959                                       16
## 2960                                         
## 2961                                         
## 2962                                         
## 2963                                         
## 2964                                         
## 2965                                         
## 2966                                       19
## 2967                                         
## 2968                                         
## 2969                                         
## 2970                                         
## 2971                                         
## 2972                                         
## 2973                                         
## 2974                                         
## 2975                                        5
## 2976                                         
## 2977                                         
## 2978                                         
## 2979                                         
## 2980                                         
## 2981                                         
## 2982                                         
## 2983                                         
## 2984                                         
## 2985                                         
## 2986                                         
## 2987                                         
## 2988                                        5
## 2989                                         
## 2990                                         
## 2991                                         
## 2992                                         
## 2993                                         
## 2994                                        5
## 2995                                         
## 2996                                        5
## 2997                                       19
## 2998                                         
## 2999                                         
## 3000                                         
## 3001                                        5
## 3002                                         
## 3003                                         
## 3004                                         
## 3005                                         
## 3006                                         
## 3007                                       19
## 3008                                         
## 3009                                         
## 3010                                         
## 3011                                         
## 3012                                         
## 3013                                        5
## 3014                                         
## 3015                                       19
## 3016                                         
## 3017                                        5
## 3018                                         
## 3019                                         
## 3020                                         
## 3021                                         
## 3022                                       19
## 3023                                        5
## 3024                                         
## 3025                                         
## 3026                                         
## 3027                                       19
## 3028                                         
## 3029                                         
## 3030                                         
## 3031                                         
## 3032                                         
## 3033                                         
## 3034                                         
## 3035                                         
## 3036                                         
## 3037                                       19
## 3038                                         
## 3039                                        5
## 3040                                         
## 3041                                         
## 3042                                         
## 3043                                         
## 3044                                         
## 3045                                       19
## 3046                                         
## 3047                                         
## 3048                                         
## 3049                                       19
## 3050                                         
## 3051                                         
## 3052                                         
## 3053                                         
## 3054                                         
## 3055                                         
## 3056                                         
## 3057                                       19
## 3058                                         
## 3059                                         
## 3060                                       19
## 3061                                       19
## 3062                                         
## 3063                                         
## 3064                                         
## 3065                                         
## 3066                                         
## 3067                                         
## 3068                                       19
## 3069                                         
## 3070                                         
## 3071                                         
## 3072                                         
## 3073                                         
## 3074                                         
## 3075                                         
## 3076                                         
## 3077                                         
## 3078                                         
## 3079                                         
## 3080                                         
## 3081                                         
## 3082                                         
## 3083                                         
## 3084                                       19
## 3085                                         
## 3086                                         
## 3087                                         
## 3088                                       19
## 3089                                         
## 3090                                         
## 3091                                         
## 3092                                         
## 3093                                         
## 3094                                         
## 3095                                         
## 3096                                         
## 3097                                         
## 3098                                         
## 3099                                         
## 3100                                         
## 3101                                         
## 3102                                         
## 3103                                         
## 3104                                         
## 3105                                        5
## 3106                                         
## 3107                                        5
## 3108                                         
## 3109                                         
## 3110                                       19
## 3111                                        5
## 3112                                         
## 3113                                         
## 3114                                         
## 3115                                        5
## 3116                                       19
## 3117                                       19
## 3118                                         
## 3119                                         
## 3120                                         
## 3121                                         
## 3122                                         
## 3123                                       19
## 3124                                         
## 3125                                         
## 3126                                         
## 3127                                         
## 3128                                         
## 3129                                       16
## 3130                                       19
## 3131                                       19
## 3132                                         
## 3133                                         
## 3134                                         
## 3135                                       19
## 3136                                         
## 3137                                       19
## 3138                                       19
## 3139                                       19
## 3140                                         
## 3141                                         
## 3142                                         
## 3143                                         
## 3144                                       16
## 3145                                         
## 3146                                         
## 3147                                         
## 3148                                         
## 3149                                         
## 3150                                         
## 3151                                         
## 3152                                         
## 3153                                         
## 3154                                         
## 3155                                        5
## 3156                                         
## 3157                                         
## 3158                                         
## 3159                                         
## 3160                                         
## 3161                                       23
## 3162                                         
## 3163                                         
## 3164                                        5
## 3165                                         
## 3166                                         
## 3167                                         
## 3168                                         
## 3169                                         
## 3170                                         
## 3171                                         
## 3172                                        5
## 3173                                         
## 3174                                         
## 3175                                        5
## 3176                                         
## 3177                                         
## 3178                                         
## 3179                                         
## 3180                                         
## 3181                                         
## 3182                                         
## 3183                                       19
## 3184                                        5
## 3185                                         
## 3186                                         
## 3187                                         
## 3188                                         
## 3189                                        5
## 3190                                         
## 3191                                        5
## 3192                                         
## 3193                                         
## 3194                                         
## 3195                                         
## 3196                                         
## 3197                                        5
## 3198                                         
## 3199                                         
## 3200                                         
## 3201                                       19
## 3202                                         
## 3203                                         
## 3204                                         
## 3205                                         
## 3206                                         
## 3207                                       19
## 3208                                        5
## 3209                                         
## 3210                                         
## 3211                                         
## 3212                                         
## 3213                                       19
## 3214                                       19
## 3215                                         
## 3216                                       19
## 3217                                         
## 3218                                         
## 3219                                         
## 3220                                         
## 3221                                       16
## 3222                                         
## 3223                                         
## 3224                                         
## 3225                                       16
## 3226                                         
## 3227                                         
## 3228                                         
## 3229                                         
## 3230                                         
## 3231                                         
## 3232                                        5
## 3233                                        5
## 3234                                         
## 3235                                         
## 3236                                         
## 3237                                         
## 3238                                         
## 3239                                        5
## 3240                                         
## 3241                                         
## 3242                                         
## 3243                                         
## 3244                                         
## 3245                                       19
## 3246                                         
## 3247                                         
## 3248                                       19
## 3249                                         
## 3250                                        5
## 3251                                        5
## 3252                                         
## 3253                                         
## 3254                                         
## 3255                                         
## 3256                                         
## 3257                                       19
## 3258                                         
## 3259                                         
## 3260                                         
## 3261                                         
## 3262                                        5
## 3263                                        5
## 3264                                        5
## 3265                                       19
## 3266                                         
## 3267                                         
## 3268                                       19
## 3269                                         
## 3270                                       19
## 3271                                         
## 3272                                        5
## 3273                                         
## 3274                                        5
## 3275                                        5
## 3276                                        5
## 3277                                         
## 3278                                       16
## 3279                                       19
## 3280                                         
## 3281                                         
## 3282                                         
## 3283                                         
## 3284                                         
## 3285                                         
## 3286                                       16
## 3287                                       19
## 3288                                         
## 3289                                         
## 3290                                         
## 3291                                         
## 3292                                        5
## 3293                                         
## 3294                                         
## 3295                                         
## 3296                                       19
## 3297                                        5
## 3298                                         
## 3299                                         
## 3300                                         
## 3301                                         
## 3302                                         
## 3303                                       19
## 3304                                         
## 3305                                         
## 3306                                         
## 3307                                         
## 3308                                         
## 3309                                       19
## 3310                                         
## 3311                                         
## 3312                                         
## 3313                                         
## 3314                                         
## 3315                                         
## 3316                                       19
## 3317                                        5
## 3318                                         
## 3319                                        5
## 3320                                         
## 3321                                         
## 3322                                         
## 3323                                        5
## 3324                                         
## 3325                                       19
## 3326                                        5
## 3327                                         
## 3328                                         
## 3329                                         
## 3330                                         
## 3331                                         
## 3332                                         
## 3333                                         
## 3334                                         
## 3335                                         
## 3336                                         
## 3337                                         
## 3338                                         
## 3339                                        5
## 3340                                         
## 3341                                         
## 3342                                         
## 3343                                         
## 3344                                         
## 3345                                         
## 3346                                         
## 3347                                         
## 3348                                       19
## 3349                                         
## 3350                                         
## 3351                                       19
## 3352                                         
## 3353                                        5
## 3354                                       16
## 3355                                       19
## 3356                                         
## 3357                                         
## 3358                                         
## 3359                                         
## 3360                                       19
## 3361                                         
## 3362                                         
## 3363                                         
## 3364                                         
## 3365                                         
## 3366                                        5
## 3367                                         
## 3368                                         
## 3369                                         
## 3370                                         
## 3371                                         
## 3372                                        5
## 3373                                         
## 3374                                         
## 3375                                         
## 3376                                       19
## 3377                                        5
## 3378                                         
## 3379                                         
## 3380                                         
## 3381                                        5
## 3382                                        5
## 3383                                       19
## 3384                                        5
## 3385                                         
## 3386                                         
## 3387                                        5
## 3388                                         
## 3389                                         
## 3390                                         
## 3391                                         
## 3392                                        5
## 3393                                         
## 3394                                         
## 3395                                         
## 3396                                        5
## 3397                                         
## 3398                                       19
## 3399                                         
## 3400                                         
## 3401                                        5
## 3402                                        5
## 3403                                       19
## 3404                                         
## 3405                                       19
## 3406                                         
## 3407                                         
## 3408                                         
## 3409                                         
## 3410                                         
## 3411                                       16
## 3412                                         
## 3413                                         
## 3414                                        5
## 3415                                         
## 3416                                       16
## 3417                                         
## 3418                                        5
## 3419                                         
## 3420                                         
## 3421                                         
## 3422                                         
## 3423                                        5
## 3424                                         
## 3425                                         
## 3426                                        5
## 3427                                         
## 3428                                        5
## 3429                                         
## 3430                                         
## 3431                                         
## 3432                                         
## 3433                                         
## 3434                                         
## 3435                                         
## 3436                                         
## 3437                                         
## 3438                                         
## 3439                                         
## 3440                                         
## 3441                                         
## 3442                                         
## 3443                                       19
## 3444                                         
## 3445                                         
## 3446                                       19
## 3447                                        5
## 3448                                       19
##      Patient_experience_national_comparison
## 1                             Not Available
## 2                             Not Available
## 3                             Not Available
## 4                Below the national average
## 5                             Not Available
## 6                Above the national average
## 7                             Not Available
## 8                             Not Available
## 9                             Not Available
## 10                            Not Available
## 11                            Not Available
## 12               Above the national average
## 13                            Not Available
## 14                            Not Available
## 15               Above the national average
## 16                            Not Available
## 17                            Not Available
## 18                            Not Available
## 19                            Not Available
## 20                            Not Available
## 21                            Not Available
## 22                            Not Available
## 23                            Not Available
## 24                            Not Available
## 25                            Not Available
## 26                            Not Available
## 27                            Not Available
## 28                            Not Available
## 29                            Not Available
## 30                            Not Available
## 31                            Not Available
## 32                            Not Available
## 33                            Not Available
## 34                            Not Available
## 35                            Not Available
## 36                            Not Available
## 37                            Not Available
## 38                            Not Available
## 39               Above the national average
## 40                            Not Available
## 41                            Not Available
## 42                            Not Available
## 43               Above the national average
## 44                            Not Available
## 45                            Not Available
## 46                            Not Available
## 47                            Not Available
## 48                            Not Available
## 49                            Not Available
## 50                            Not Available
## 51                            Not Available
## 52                            Not Available
## 53                            Not Available
## 54                            Not Available
## 55                            Not Available
## 56                            Not Available
## 57             Same as the national average
## 58                            Not Available
## 59               Above the national average
## 60               Above the national average
## 61                            Not Available
## 62                            Not Available
## 63                            Not Available
## 64             Same as the national average
## 65               Below the national average
## 66                            Not Available
## 67               Below the national average
## 68                            Not Available
## 69             Same as the national average
## 70             Same as the national average
## 71               Above the national average
## 72               Below the national average
## 73             Same as the national average
## 74                            Not Available
## 75                            Not Available
## 76             Same as the national average
## 77                            Not Available
## 78               Above the national average
## 79               Above the national average
## 80               Below the national average
## 81                            Not Available
## 82                            Not Available
## 83                            Not Available
## 84               Above the national average
## 85                            Not Available
## 86                            Not Available
## 87               Above the national average
## 88                            Not Available
## 89             Same as the national average
## 90             Same as the national average
## 91               Below the national average
## 92               Below the national average
## 93               Above the national average
## 94             Same as the national average
## 95                            Not Available
## 96                            Not Available
## 97               Above the national average
## 98                            Not Available
## 99             Same as the national average
## 100              Above the national average
## 101                           Not Available
## 102              Below the national average
## 103              Below the national average
## 104              Below the national average
## 105            Same as the national average
## 106              Below the national average
## 107              Above the national average
## 108              Below the national average
## 109              Above the national average
## 110              Above the national average
## 111              Above the national average
## 112              Above the national average
## 113              Below the national average
## 114              Below the national average
## 115            Same as the national average
## 116                           Not Available
## 117                           Not Available
## 118            Same as the national average
## 119                           Not Available
## 120                           Not Available
## 121                           Not Available
## 122                           Not Available
## 123              Below the national average
## 124            Same as the national average
## 125                           Not Available
## 126                           Not Available
## 127              Above the national average
## 128              Below the national average
## 129                           Not Available
## 130              Above the national average
## 131              Below the national average
## 132                           Not Available
## 133              Below the national average
## 134              Above the national average
## 135                           Not Available
## 136              Above the national average
## 137                           Not Available
## 138                           Not Available
## 139            Same as the national average
## 140              Below the national average
## 141                           Not Available
## 142                           Not Available
## 143                           Not Available
## 144              Above the national average
## 145              Below the national average
## 146                           Not Available
## 147            Same as the national average
## 148            Same as the national average
## 149                           Not Available
## 150              Below the national average
## 151            Same as the national average
## 152                           Not Available
## 153            Same as the national average
## 154              Above the national average
## 155              Below the national average
## 156              Below the national average
## 157                           Not Available
## 158              Above the national average
## 159              Above the national average
## 160              Above the national average
## 161                           Not Available
## 162              Above the national average
## 163              Above the national average
## 164            Same as the national average
## 165              Above the national average
## 166                           Not Available
## 167            Same as the national average
## 168              Below the national average
## 169                           Not Available
## 170              Below the national average
## 171                           Not Available
## 172            Same as the national average
## 173                           Not Available
## 174              Below the national average
## 175                           Not Available
## 176              Below the national average
## 177              Below the national average
## 178              Above the national average
## 179              Above the national average
## 180            Same as the national average
## 181                           Not Available
## 182            Same as the national average
## 183              Below the national average
## 184                           Not Available
## 185              Below the national average
## 186            Same as the national average
## 187              Below the national average
## 188            Same as the national average
## 189            Same as the national average
## 190              Below the national average
## 191              Above the national average
## 192            Same as the national average
## 193                           Not Available
## 194              Below the national average
## 195                           Not Available
## 196            Same as the national average
## 197                           Not Available
## 198            Same as the national average
## 199            Same as the national average
## 200                           Not Available
## 201                           Not Available
## 202            Same as the national average
## 203                           Not Available
## 204            Same as the national average
## 205                           Not Available
## 206                           Not Available
## 207                           Not Available
## 208              Above the national average
## 209              Above the national average
## 210            Same as the national average
## 211                           Not Available
## 212                           Not Available
## 213                           Not Available
## 214            Same as the national average
## 215                           Not Available
## 216              Above the national average
## 217            Same as the national average
## 218              Below the national average
## 219                           Not Available
## 220                           Not Available
## 221              Above the national average
## 222                           Not Available
## 223              Below the national average
## 224                           Not Available
## 225              Below the national average
## 226                           Not Available
## 227                           Not Available
## 228            Same as the national average
## 229            Same as the national average
## 230                           Not Available
## 231                           Not Available
## 232            Same as the national average
## 233                           Not Available
## 234            Same as the national average
## 235              Below the national average
## 236              Above the national average
## 237              Above the national average
## 238              Above the national average
## 239            Same as the national average
## 240              Above the national average
## 241              Above the national average
## 242            Same as the national average
## 243            Same as the national average
## 244              Below the national average
## 245              Below the national average
## 246              Above the national average
## 247              Below the national average
## 248                           Not Available
## 249                           Not Available
## 250                           Not Available
## 251              Below the national average
## 252                           Not Available
## 253              Below the national average
## 254                           Not Available
## 255              Above the national average
## 256              Below the national average
## 257              Below the national average
## 258            Same as the national average
## 259              Below the national average
## 260              Below the national average
## 261                           Not Available
## 262                           Not Available
## 263            Same as the national average
## 264                           Not Available
## 265              Below the national average
## 266                           Not Available
## 267              Above the national average
## 268                           Not Available
## 269              Above the national average
## 270              Above the national average
## 271            Same as the national average
## 272            Same as the national average
## 273                           Not Available
## 274                           Not Available
## 275                           Not Available
## 276              Above the national average
## 277            Same as the national average
## 278                           Not Available
## 279              Below the national average
## 280              Above the national average
## 281            Same as the national average
## 282              Above the national average
## 283              Below the national average
## 284                           Not Available
## 285                           Not Available
## 286                           Not Available
## 287                           Not Available
## 288              Below the national average
## 289            Same as the national average
## 290            Same as the national average
## 291                           Not Available
## 292              Above the national average
## 293              Above the national average
## 294                           Not Available
## 295                           Not Available
## 296                           Not Available
## 297            Same as the national average
## 298              Below the national average
## 299                           Not Available
## 300                           Not Available
## 301                           Not Available
## 302                           Not Available
## 303            Same as the national average
## 304                           Not Available
## 305                           Not Available
## 306                           Not Available
## 307            Same as the national average
## 308              Above the national average
## 309                           Not Available
## 310                           Not Available
## 311            Same as the national average
## 312            Same as the national average
## 313            Same as the national average
## 314              Below the national average
## 315                           Not Available
## 316            Same as the national average
## 317              Above the national average
## 318              Below the national average
## 319                           Not Available
## 320              Below the national average
## 321              Below the national average
## 322              Below the national average
## 323              Below the national average
## 324                           Not Available
## 325              Below the national average
## 326                           Not Available
## 327              Below the national average
## 328                           Not Available
## 329              Above the national average
## 330                           Not Available
## 331              Above the national average
## 332              Above the national average
## 333              Below the national average
## 334              Above the national average
## 335              Above the national average
## 336                           Not Available
## 337              Below the national average
## 338                           Not Available
## 339              Above the national average
## 340              Below the national average
## 341              Above the national average
## 342                           Not Available
## 343              Above the national average
## 344                           Not Available
## 345              Above the national average
## 346              Below the national average
## 347                           Not Available
## 348            Same as the national average
## 349              Above the national average
## 350              Above the national average
## 351                           Not Available
## 352              Below the national average
## 353                           Not Available
## 354              Below the national average
## 355            Same as the national average
## 356              Below the national average
## 357            Same as the national average
## 358              Above the national average
## 359              Below the national average
## 360                           Not Available
## 361            Same as the national average
## 362            Same as the national average
## 363              Above the national average
## 364            Same as the national average
## 365              Below the national average
## 366              Below the national average
## 367              Below the national average
## 368              Below the national average
## 369            Same as the national average
## 370              Below the national average
## 371            Same as the national average
## 372              Above the national average
## 373            Same as the national average
## 374              Below the national average
## 375                           Not Available
## 376            Same as the national average
## 377                           Not Available
## 378            Same as the national average
## 379                           Not Available
## 380              Below the national average
## 381            Same as the national average
## 382                           Not Available
## 383            Same as the national average
## 384                           Not Available
## 385                           Not Available
## 386              Above the national average
## 387              Above the national average
## 388              Above the national average
## 389              Above the national average
## 390              Below the national average
## 391              Below the national average
## 392            Same as the national average
## 393                           Not Available
## 394            Same as the national average
## 395              Below the national average
## 396            Same as the national average
## 397                           Not Available
## 398            Same as the national average
## 399            Same as the national average
## 400              Above the national average
## 401                           Not Available
## 402              Above the national average
## 403                           Not Available
## 404            Same as the national average
## 405                           Not Available
## 406            Same as the national average
## 407                           Not Available
## 408                           Not Available
## 409                           Not Available
## 410              Above the national average
## 411              Below the national average
## 412            Same as the national average
## 413              Above the national average
## 414              Above the national average
## 415                           Not Available
## 416              Below the national average
## 417                           Not Available
## 418                           Not Available
## 419              Above the national average
## 420                           Not Available
## 421                           Not Available
## 422              Below the national average
## 423              Above the national average
## 424                           Not Available
## 425            Same as the national average
## 426            Same as the national average
## 427                           Not Available
## 428              Above the national average
## 429                           Not Available
## 430              Below the national average
## 431              Above the national average
## 432            Same as the national average
## 433              Above the national average
## 434              Above the national average
## 435                           Not Available
## 436              Above the national average
## 437            Same as the national average
## 438            Same as the national average
## 439              Below the national average
## 440                           Not Available
## 441            Same as the national average
## 442                           Not Available
## 443              Above the national average
## 444              Below the national average
## 445            Same as the national average
## 446              Below the national average
## 447            Same as the national average
## 448                           Not Available
## 449              Below the national average
## 450            Same as the national average
## 451                           Not Available
## 452                           Not Available
## 453                           Not Available
## 454            Same as the national average
## 455            Same as the national average
## 456            Same as the national average
## 457                           Not Available
## 458              Below the national average
## 459              Below the national average
## 460              Below the national average
## 461              Above the national average
## 462            Same as the national average
## 463                           Not Available
## 464            Same as the national average
## 465              Below the national average
## 466            Same as the national average
## 467              Below the national average
## 468            Same as the national average
## 469              Above the national average
## 470              Below the national average
## 471              Below the national average
## 472                           Not Available
## 473              Above the national average
## 474            Same as the national average
## 475                           Not Available
## 476                           Not Available
## 477              Above the national average
## 478            Same as the national average
## 479              Below the national average
## 480              Above the national average
## 481            Same as the national average
## 482              Above the national average
## 483              Above the national average
## 484                           Not Available
## 485            Same as the national average
## 486                           Not Available
## 487                           Not Available
## 488            Same as the national average
## 489            Same as the national average
## 490              Above the national average
## 491              Below the national average
## 492            Same as the national average
## 493              Above the national average
## 494            Same as the national average
## 495              Above the national average
## 496              Below the national average
## 497              Below the national average
## 498            Same as the national average
## 499                           Not Available
## 500                           Not Available
## 501                           Not Available
## 502                           Not Available
## 503              Above the national average
## 504              Below the national average
## 505                           Not Available
## 506                           Not Available
## 507                           Not Available
## 508                           Not Available
## 509                           Not Available
## 510            Same as the national average
## 511                           Not Available
## 512              Above the national average
## 513              Above the national average
## 514              Above the national average
## 515                           Not Available
## 516                           Not Available
## 517                           Not Available
## 518            Same as the national average
## 519              Below the national average
## 520              Above the national average
## 521              Above the national average
## 522                           Not Available
## 523            Same as the national average
## 524            Same as the national average
## 525              Above the national average
## 526            Same as the national average
## 527            Same as the national average
## 528                           Not Available
## 529              Above the national average
## 530            Same as the national average
## 531                           Not Available
## 532                           Not Available
## 533              Above the national average
## 534              Above the national average
## 535                           Not Available
## 536              Below the national average
## 537              Below the national average
## 538              Above the national average
## 539              Above the national average
## 540                           Not Available
## 541              Below the national average
## 542                           Not Available
## 543                           Not Available
## 544                           Not Available
## 545              Below the national average
## 546              Above the national average
## 547            Same as the national average
## 548                           Not Available
## 549              Above the national average
## 550              Below the national average
## 551            Same as the national average
## 552              Below the national average
## 553                           Not Available
## 554                           Not Available
## 555              Above the national average
## 556            Same as the national average
## 557            Same as the national average
## 558            Same as the national average
## 559              Above the national average
## 560              Below the national average
## 561            Same as the national average
## 562            Same as the national average
## 563                           Not Available
## 564              Above the national average
## 565            Same as the national average
## 566            Same as the national average
## 567                           Not Available
## 568              Above the national average
## 569                           Not Available
## 570                           Not Available
## 571            Same as the national average
## 572              Above the national average
## 573            Same as the national average
## 574            Same as the national average
## 575                           Not Available
## 576              Above the national average
## 577              Below the national average
## 578              Below the national average
## 579                           Not Available
## 580            Same as the national average
## 581                           Not Available
## 582              Below the national average
## 583            Same as the national average
## 584              Below the national average
## 585              Above the national average
## 586                           Not Available
## 587              Above the national average
## 588            Same as the national average
## 589                           Not Available
## 590                           Not Available
## 591              Below the national average
## 592                           Not Available
## 593                           Not Available
## 594                           Not Available
## 595            Same as the national average
## 596              Above the national average
## 597              Above the national average
## 598                           Not Available
## 599                           Not Available
## 600              Below the national average
## 601                           Not Available
## 602              Below the national average
## 603              Below the national average
## 604              Below the national average
## 605                           Not Available
## 606            Same as the national average
## 607                           Not Available
## 608            Same as the national average
## 609                           Not Available
## 610                           Not Available
## 611                           Not Available
## 612                           Not Available
## 613              Below the national average
## 614              Above the national average
## 615              Below the national average
## 616              Below the national average
## 617                           Not Available
## 618              Below the national average
## 619              Above the national average
## 620              Below the national average
## 621                           Not Available
## 622            Same as the national average
## 623                           Not Available
## 624                           Not Available
## 625              Below the national average
## 626              Below the national average
## 627              Below the national average
## 628              Above the national average
## 629              Above the national average
## 630              Above the national average
## 631                           Not Available
## 632              Below the national average
## 633            Same as the national average
## 634            Same as the national average
## 635              Above the national average
## 636                           Not Available
## 637                           Not Available
## 638                           Not Available
## 639              Below the national average
## 640            Same as the national average
## 641                           Not Available
## 642                           Not Available
## 643              Below the national average
## 644              Below the national average
## 645                           Not Available
## 646                           Not Available
## 647                           Not Available
## 648              Above the national average
## 649                           Not Available
## 650              Below the national average
## 651                           Not Available
## 652            Same as the national average
## 653            Same as the national average
## 654              Below the national average
## 655            Same as the national average
## 656              Above the national average
## 657            Same as the national average
## 658              Below the national average
## 659                           Not Available
## 660              Below the national average
## 661              Above the national average
## 662              Above the national average
## 663              Above the national average
## 664                           Not Available
## 665                           Not Available
## 666                           Not Available
## 667            Same as the national average
## 668                           Not Available
## 669                           Not Available
## 670              Above the national average
## 671              Above the national average
## 672                           Not Available
## 673              Above the national average
## 674            Same as the national average
## 675            Same as the national average
## 676              Below the national average
## 677              Above the national average
## 678              Below the national average
## 679                           Not Available
## 680                           Not Available
## 681              Below the national average
## 682            Same as the national average
## 683                           Not Available
## 684                           Not Available
## 685            Same as the national average
## 686            Same as the national average
## 687              Above the national average
## 688                           Not Available
## 689              Above the national average
## 690            Same as the national average
## 691            Same as the national average
## 692              Above the national average
## 693              Below the national average
## 694              Below the national average
## 695              Below the national average
## 696            Same as the national average
## 697            Same as the national average
## 698                           Not Available
## 699            Same as the national average
## 700                           Not Available
## 701              Above the national average
## 702                           Not Available
## 703                           Not Available
## 704            Same as the national average
## 705              Above the national average
## 706                           Not Available
## 707            Same as the national average
## 708              Below the national average
## 709              Above the national average
## 710                           Not Available
## 711                           Not Available
## 712              Below the national average
## 713                           Not Available
## 714                           Not Available
## 715              Below the national average
## 716              Below the national average
## 717                           Not Available
## 718              Below the national average
## 719            Same as the national average
## 720              Above the national average
## 721            Same as the national average
## 722                           Not Available
## 723              Below the national average
## 724              Below the national average
## 725              Above the national average
## 726                           Not Available
## 727              Below the national average
## 728              Above the national average
## 729            Same as the national average
## 730              Above the national average
## 731              Above the national average
## 732            Same as the national average
## 733            Same as the national average
## 734                           Not Available
## 735                           Not Available
## 736              Below the national average
## 737              Below the national average
## 738              Above the national average
## 739              Above the national average
## 740                           Not Available
## 741                           Not Available
## 742            Same as the national average
## 743            Same as the national average
## 744              Above the national average
## 745                           Not Available
## 746              Below the national average
## 747            Same as the national average
## 748            Same as the national average
## 749                           Not Available
## 750                           Not Available
## 751                           Not Available
## 752              Below the national average
## 753            Same as the national average
## 754              Above the national average
## 755            Same as the national average
## 756              Above the national average
## 757            Same as the national average
## 758              Above the national average
## 759                           Not Available
## 760              Above the national average
## 761                           Not Available
## 762              Above the national average
## 763                           Not Available
## 764                           Not Available
## 765              Below the national average
## 766                           Not Available
## 767              Below the national average
## 768                           Not Available
## 769                           Not Available
## 770              Below the national average
## 771                           Not Available
## 772            Same as the national average
## 773            Same as the national average
## 774            Same as the national average
## 775              Above the national average
## 776              Above the national average
## 777              Above the national average
## 778              Below the national average
## 779              Above the national average
## 780            Same as the national average
## 781                           Not Available
## 782            Same as the national average
## 783                           Not Available
## 784              Below the national average
## 785            Same as the national average
## 786              Below the national average
## 787            Same as the national average
## 788            Same as the national average
## 789              Below the national average
## 790                           Not Available
## 791            Same as the national average
## 792                           Not Available
## 793                           Not Available
## 794              Below the national average
## 795              Below the national average
## 796            Same as the national average
## 797              Above the national average
## 798                           Not Available
## 799              Above the national average
## 800            Same as the national average
## 801              Below the national average
## 802              Below the national average
## 803                           Not Available
## 804              Above the national average
## 805              Below the national average
## 806                           Not Available
## 807                           Not Available
## 808            Same as the national average
## 809            Same as the national average
## 810                           Not Available
## 811              Above the national average
## 812              Below the national average
## 813                           Not Available
## 814            Same as the national average
## 815            Same as the national average
## 816                           Not Available
## 817                           Not Available
## 818              Below the national average
## 819              Above the national average
## 820              Above the national average
## 821            Same as the national average
## 822                           Not Available
## 823                           Not Available
## 824              Above the national average
## 825                           Not Available
## 826              Below the national average
## 827              Below the national average
## 828              Below the national average
## 829              Below the national average
## 830            Same as the national average
## 831            Same as the national average
## 832                           Not Available
## 833              Below the national average
## 834              Above the national average
## 835                           Not Available
## 836              Below the national average
## 837                           Not Available
## 838              Below the national average
## 839              Above the national average
## 840              Above the national average
## 841            Same as the national average
## 842                           Not Available
## 843                           Not Available
## 844              Below the national average
## 845                           Not Available
## 846              Above the national average
## 847              Above the national average
## 848                           Not Available
## 849                           Not Available
## 850              Above the national average
## 851              Below the national average
## 852              Above the national average
## 853                           Not Available
## 854            Same as the national average
## 855              Below the national average
## 856              Below the national average
## 857                           Not Available
## 858            Same as the national average
## 859                           Not Available
## 860              Below the national average
## 861              Above the national average
## 862                           Not Available
## 863            Same as the national average
## 864                           Not Available
## 865                           Not Available
## 866              Below the national average
## 867              Above the national average
## 868              Below the national average
## 869            Same as the national average
## 870              Above the national average
## 871              Above the national average
## 872              Above the national average
## 873              Above the national average
## 874              Below the national average
## 875              Below the national average
## 876              Below the national average
## 877                           Not Available
## 878                           Not Available
## 879              Above the national average
## 880              Above the national average
## 881              Below the national average
## 882                           Not Available
## 883              Above the national average
## 884            Same as the national average
## 885              Below the national average
## 886            Same as the national average
## 887              Below the national average
## 888            Same as the national average
## 889            Same as the national average
## 890                           Not Available
## 891              Above the national average
## 892              Below the national average
## 893            Same as the national average
## 894              Above the national average
## 895              Below the national average
## 896              Below the national average
## 897            Same as the national average
## 898                           Not Available
## 899            Same as the national average
## 900                           Not Available
## 901              Below the national average
## 902              Above the national average
## 903                           Not Available
## 904              Above the national average
## 905              Below the national average
## 906              Above the national average
## 907            Same as the national average
## 908                           Not Available
## 909                           Not Available
## 910                           Not Available
## 911              Above the national average
## 912                           Not Available
## 913              Below the national average
## 914                           Not Available
## 915                           Not Available
## 916                           Not Available
## 917                           Not Available
## 918              Above the national average
## 919            Same as the national average
## 920                           Not Available
## 921                           Not Available
## 922              Above the national average
## 923              Below the national average
## 924              Below the national average
## 925              Above the national average
## 926              Below the national average
## 927              Below the national average
## 928              Above the national average
## 929                           Not Available
## 930              Below the national average
## 931                           Not Available
## 932                           Not Available
## 933                           Not Available
## 934              Below the national average
## 935              Below the national average
## 936                           Not Available
## 937              Above the national average
## 938                           Not Available
## 939            Same as the national average
## 940            Same as the national average
## 941            Same as the national average
## 942            Same as the national average
## 943                           Not Available
## 944            Same as the national average
## 945              Below the national average
## 946              Below the national average
## 947                           Not Available
## 948                           Not Available
## 949                           Not Available
## 950              Above the national average
## 951              Below the national average
## 952                           Not Available
## 953                           Not Available
## 954              Above the national average
## 955              Below the national average
## 956              Above the national average
## 957            Same as the national average
## 958                           Not Available
## 959            Same as the national average
## 960            Same as the national average
## 961            Same as the national average
## 962              Below the national average
## 963                           Not Available
## 964                           Not Available
## 965              Below the national average
## 966              Below the national average
## 967              Below the national average
## 968              Above the national average
## 969              Below the national average
## 970              Below the national average
## 971              Above the national average
## 972            Same as the national average
## 973                           Not Available
## 974              Above the national average
## 975                           Not Available
## 976                           Not Available
## 977            Same as the national average
## 978            Same as the national average
## 979                           Not Available
## 980                           Not Available
## 981              Above the national average
## 982              Above the national average
## 983            Same as the national average
## 984              Below the national average
## 985            Same as the national average
## 986                           Not Available
## 987              Below the national average
## 988              Above the national average
## 989                           Not Available
## 990            Same as the national average
## 991            Same as the national average
## 992              Above the national average
## 993              Above the national average
## 994              Above the national average
## 995            Same as the national average
## 996              Below the national average
## 997                           Not Available
## 998            Same as the national average
## 999            Same as the national average
## 1000                          Not Available
## 1001                          Not Available
## 1002                          Not Available
## 1003           Same as the national average
## 1004                          Not Available
## 1005                          Not Available
## 1006             Below the national average
## 1007             Below the national average
## 1008             Above the national average
## 1009                          Not Available
## 1010             Below the national average
## 1011                          Not Available
## 1012                          Not Available
## 1013             Above the national average
## 1014             Below the national average
## 1015                          Not Available
## 1016             Above the national average
## 1017             Below the national average
## 1018                          Not Available
## 1019                          Not Available
## 1020             Above the national average
## 1021             Above the national average
## 1022           Same as the national average
## 1023             Below the national average
## 1024             Below the national average
## 1025                          Not Available
## 1026             Above the national average
## 1027                          Not Available
## 1028             Above the national average
## 1029                          Not Available
## 1030           Same as the national average
## 1031                          Not Available
## 1032             Below the national average
## 1033             Below the national average
## 1034             Above the national average
## 1035                          Not Available
## 1036             Above the national average
## 1037                          Not Available
## 1038                          Not Available
## 1039                          Not Available
## 1040           Same as the national average
## 1041                          Not Available
## 1042           Same as the national average
## 1043             Above the national average
## 1044                          Not Available
## 1045           Same as the national average
## 1046             Above the national average
## 1047             Above the national average
## 1048                          Not Available
## 1049                          Not Available
## 1050                          Not Available
## 1051                          Not Available
## 1052                          Not Available
## 1053             Below the national average
## 1054           Same as the national average
## 1055             Below the national average
## 1056             Above the national average
## 1057             Below the national average
## 1058             Below the national average
## 1059             Below the national average
## 1060                          Not Available
## 1061                          Not Available
## 1062             Above the national average
## 1063           Same as the national average
## 1064           Same as the national average
## 1065             Below the national average
## 1066           Same as the national average
## 1067             Below the national average
## 1068                          Not Available
## 1069             Below the national average
## 1070             Above the national average
## 1071             Below the national average
## 1072                          Not Available
## 1073                          Not Available
## 1074                          Not Available
## 1075                          Not Available
## 1076                          Not Available
## 1077           Same as the national average
## 1078           Same as the national average
## 1079             Below the national average
## 1080                          Not Available
## 1081             Below the national average
## 1082             Above the national average
## 1083             Above the national average
## 1084             Above the national average
## 1085           Same as the national average
## 1086           Same as the national average
## 1087                          Not Available
## 1088             Above the national average
## 1089             Above the national average
## 1090                          Not Available
## 1091             Below the national average
## 1092           Same as the national average
## 1093             Above the national average
## 1094             Above the national average
## 1095                          Not Available
## 1096                          Not Available
## 1097             Above the national average
## 1098           Same as the national average
## 1099             Below the national average
## 1100                          Not Available
## 1101           Same as the national average
## 1102             Below the national average
## 1103                          Not Available
## 1104             Below the national average
## 1105             Below the national average
## 1106                          Not Available
## 1107                          Not Available
## 1108             Above the national average
## 1109             Above the national average
## 1110             Below the national average
## 1111                          Not Available
## 1112                          Not Available
## 1113           Same as the national average
## 1114             Above the national average
## 1115           Same as the national average
## 1116             Above the national average
## 1117                          Not Available
## 1118                          Not Available
## 1119             Above the national average
## 1120                          Not Available
## 1121             Below the national average
## 1122             Above the national average
## 1123             Above the national average
## 1124                          Not Available
## 1125             Below the national average
## 1126           Same as the national average
## 1127             Above the national average
## 1128             Above the national average
## 1129             Above the national average
## 1130                          Not Available
## 1131             Above the national average
## 1132             Below the national average
## 1133                          Not Available
## 1134             Above the national average
## 1135             Above the national average
## 1136             Below the national average
## 1137                          Not Available
## 1138           Same as the national average
## 1139                          Not Available
## 1140             Below the national average
## 1141                          Not Available
## 1142             Above the national average
## 1143           Same as the national average
## 1144             Below the national average
## 1145                          Not Available
## 1146                          Not Available
## 1147                          Not Available
## 1148                          Not Available
## 1149                          Not Available
## 1150                          Not Available
## 1151             Below the national average
## 1152             Below the national average
## 1153                          Not Available
## 1154           Same as the national average
## 1155             Below the national average
## 1156                          Not Available
## 1157             Below the national average
## 1158           Same as the national average
## 1159           Same as the national average
## 1160             Above the national average
## 1161                          Not Available
## 1162                          Not Available
## 1163           Same as the national average
## 1164           Same as the national average
## 1165                          Not Available
## 1166           Same as the national average
## 1167           Same as the national average
## 1168                          Not Available
## 1169                          Not Available
## 1170             Below the national average
## 1171                          Not Available
## 1172             Below the national average
## 1173             Above the national average
## 1174             Below the national average
## 1175                          Not Available
## 1176             Above the national average
## 1177             Below the national average
## 1178                          Not Available
## 1179           Same as the national average
## 1180                          Not Available
## 1181             Above the national average
## 1182             Above the national average
## 1183             Below the national average
## 1184                          Not Available
## 1185                          Not Available
## 1186             Above the national average
## 1187           Same as the national average
## 1188                          Not Available
## 1189             Above the national average
## 1190             Below the national average
## 1191             Above the national average
## 1192           Same as the national average
## 1193             Above the national average
## 1194             Above the national average
## 1195             Above the national average
## 1196           Same as the national average
## 1197                          Not Available
## 1198             Below the national average
## 1199                          Not Available
## 1200                          Not Available
## 1201                          Not Available
## 1202                          Not Available
## 1203             Above the national average
## 1204                          Not Available
## 1205           Same as the national average
## 1206                          Not Available
## 1207                          Not Available
## 1208                          Not Available
## 1209             Above the national average
## 1210           Same as the national average
## 1211           Same as the national average
## 1212                          Not Available
## 1213                          Not Available
## 1214           Same as the national average
## 1215           Same as the national average
## 1216           Same as the national average
## 1217           Same as the national average
## 1218             Below the national average
## 1219             Above the national average
## 1220             Below the national average
## 1221                          Not Available
## 1222             Above the national average
## 1223                          Not Available
## 1224             Below the national average
## 1225                          Not Available
## 1226           Same as the national average
## 1227           Same as the national average
## 1228             Above the national average
## 1229             Above the national average
## 1230                          Not Available
## 1231             Above the national average
## 1232                          Not Available
## 1233                          Not Available
## 1234                          Not Available
## 1235                          Not Available
## 1236             Below the national average
## 1237             Below the national average
## 1238             Above the national average
## 1239           Same as the national average
## 1240           Same as the national average
## 1241                          Not Available
## 1242                          Not Available
## 1243           Same as the national average
## 1244           Same as the national average
## 1245           Same as the national average
## 1246           Same as the national average
## 1247                          Not Available
## 1248                          Not Available
## 1249             Above the national average
## 1250             Below the national average
## 1251                          Not Available
## 1252                          Not Available
## 1253             Above the national average
## 1254                          Not Available
## 1255                          Not Available
## 1256             Above the national average
## 1257             Below the national average
## 1258           Same as the national average
## 1259           Same as the national average
## 1260             Below the national average
## 1261                          Not Available
## 1262                          Not Available
## 1263           Same as the national average
## 1264                          Not Available
## 1265           Same as the national average
## 1266             Below the national average
## 1267                          Not Available
## 1268             Below the national average
## 1269                          Not Available
## 1270             Above the national average
## 1271             Below the national average
## 1272                          Not Available
## 1273             Below the national average
## 1274             Above the national average
## 1275           Same as the national average
## 1276                          Not Available
## 1277           Same as the national average
## 1278           Same as the national average
## 1279                          Not Available
## 1280             Below the national average
## 1281           Same as the national average
## 1282           Same as the national average
## 1283                          Not Available
## 1284             Below the national average
## 1285           Same as the national average
## 1286             Above the national average
## 1287             Above the national average
## 1288                          Not Available
## 1289           Same as the national average
## 1290                          Not Available
## 1291           Same as the national average
## 1292             Below the national average
## 1293                          Not Available
## 1294                          Not Available
## 1295             Above the national average
## 1296             Below the national average
## 1297           Same as the national average
## 1298             Below the national average
## 1299                          Not Available
## 1300             Above the national average
## 1301                          Not Available
## 1302             Below the national average
## 1303                          Not Available
## 1304           Same as the national average
## 1305           Same as the national average
## 1306                          Not Available
## 1307             Below the national average
## 1308             Below the national average
## 1309           Same as the national average
## 1310             Below the national average
## 1311             Above the national average
## 1312           Same as the national average
## 1313             Above the national average
## 1314             Above the national average
## 1315             Above the national average
## 1316             Above the national average
## 1317             Below the national average
## 1318           Same as the national average
## 1319             Below the national average
## 1320             Below the national average
## 1321           Same as the national average
## 1322           Same as the national average
## 1323                          Not Available
## 1324             Above the national average
## 1325             Below the national average
## 1326             Below the national average
## 1327                          Not Available
## 1328           Same as the national average
## 1329             Above the national average
## 1330                          Not Available
## 1331           Same as the national average
## 1332             Below the national average
## 1333             Above the national average
## 1334             Above the national average
## 1335             Below the national average
## 1336           Same as the national average
## 1337             Below the national average
## 1338                          Not Available
## 1339           Same as the national average
## 1340             Above the national average
## 1341                          Not Available
## 1342           Same as the national average
## 1343                          Not Available
## 1344                          Not Available
## 1345           Same as the national average
## 1346             Above the national average
## 1347                          Not Available
## 1348             Above the national average
## 1349                          Not Available
## 1350           Same as the national average
## 1351           Same as the national average
## 1352             Above the national average
## 1353                          Not Available
## 1354                          Not Available
## 1355             Below the national average
## 1356                          Not Available
## 1357                          Not Available
## 1358             Above the national average
## 1359             Above the national average
## 1360           Same as the national average
## 1361             Below the national average
## 1362             Below the national average
## 1363           Same as the national average
## 1364           Same as the national average
## 1365                          Not Available
## 1366                          Not Available
## 1367           Same as the national average
## 1368           Same as the national average
## 1369                          Not Available
## 1370             Above the national average
## 1371             Above the national average
## 1372           Same as the national average
## 1373                          Not Available
## 1374             Above the national average
## 1375           Same as the national average
## 1376             Below the national average
## 1377             Below the national average
## 1378                          Not Available
## 1379                          Not Available
## 1380             Above the national average
## 1381                          Not Available
## 1382             Below the national average
## 1383                          Not Available
## 1384             Above the national average
## 1385             Below the national average
## 1386           Same as the national average
## 1387             Above the national average
## 1388           Same as the national average
## 1389           Same as the national average
## 1390           Same as the national average
## 1391           Same as the national average
## 1392             Above the national average
## 1393             Below the national average
## 1394           Same as the national average
## 1395             Above the national average
## 1396             Below the national average
## 1397             Below the national average
## 1398             Above the national average
## 1399           Same as the national average
## 1400                          Not Available
## 1401             Above the national average
## 1402             Below the national average
## 1403                          Not Available
## 1404             Below the national average
## 1405           Same as the national average
## 1406                          Not Available
## 1407             Below the national average
## 1408             Below the national average
## 1409           Same as the national average
## 1410             Above the national average
## 1411           Same as the national average
## 1412             Below the national average
## 1413             Above the national average
## 1414                          Not Available
## 1415             Below the national average
## 1416                          Not Available
## 1417             Below the national average
## 1418           Same as the national average
## 1419           Same as the national average
## 1420             Above the national average
## 1421                          Not Available
## 1422             Above the national average
## 1423           Same as the national average
## 1424             Above the national average
## 1425             Above the national average
## 1426                          Not Available
## 1427             Above the national average
## 1428             Below the national average
## 1429             Above the national average
## 1430             Above the national average
## 1431                          Not Available
## 1432           Same as the national average
## 1433                          Not Available
## 1434           Same as the national average
## 1435             Above the national average
## 1436                          Not Available
## 1437           Same as the national average
## 1438             Below the national average
## 1439             Below the national average
## 1440                          Not Available
## 1441                          Not Available
## 1442                          Not Available
## 1443             Below the national average
## 1444           Same as the national average
## 1445             Above the national average
## 1446             Above the national average
## 1447             Below the national average
## 1448             Above the national average
## 1449                          Not Available
## 1450           Same as the national average
## 1451           Same as the national average
## 1452             Below the national average
## 1453             Above the national average
## 1454             Above the national average
## 1455             Below the national average
## 1456                          Not Available
## 1457             Above the national average
## 1458                          Not Available
## 1459                          Not Available
## 1460                          Not Available
## 1461                          Not Available
## 1462                          Not Available
## 1463                          Not Available
## 1464             Below the national average
## 1465             Above the national average
## 1466           Same as the national average
## 1467                          Not Available
## 1468             Below the national average
## 1469                          Not Available
## 1470             Below the national average
## 1471           Same as the national average
## 1472           Same as the national average
## 1473                          Not Available
## 1474                          Not Available
## 1475             Above the national average
## 1476           Same as the national average
## 1477           Same as the national average
## 1478                          Not Available
## 1479             Above the national average
## 1480                          Not Available
## 1481           Same as the national average
## 1482                          Not Available
## 1483             Below the national average
## 1484             Above the national average
## 1485                          Not Available
## 1486             Below the national average
## 1487                          Not Available
## 1488             Below the national average
## 1489                          Not Available
## 1490             Below the national average
## 1491           Same as the national average
## 1492           Same as the national average
## 1493                          Not Available
## 1494                          Not Available
## 1495           Same as the national average
## 1496           Same as the national average
## 1497             Below the national average
## 1498                          Not Available
## 1499                          Not Available
## 1500           Same as the national average
## 1501           Same as the national average
## 1502             Below the national average
## 1503             Above the national average
## 1504             Below the national average
## 1505           Same as the national average
## 1506             Below the national average
## 1507             Above the national average
## 1508           Same as the national average
## 1509             Below the national average
## 1510                          Not Available
## 1511                          Not Available
## 1512                          Not Available
## 1513           Same as the national average
## 1514                          Not Available
## 1515           Same as the national average
## 1516             Above the national average
## 1517             Above the national average
## 1518           Same as the national average
## 1519             Above the national average
## 1520                          Not Available
## 1521                          Not Available
## 1522             Below the national average
## 1523                          Not Available
## 1524             Above the national average
## 1525           Same as the national average
## 1526           Same as the national average
## 1527                          Not Available
## 1528             Below the national average
## 1529             Below the national average
## 1530             Below the national average
## 1531           Same as the national average
## 1532           Same as the national average
## 1533             Below the national average
## 1534             Above the national average
## 1535           Same as the national average
## 1536             Above the national average
## 1537           Same as the national average
## 1538             Below the national average
## 1539             Above the national average
## 1540           Same as the national average
## 1541           Same as the national average
## 1542             Below the national average
## 1543           Same as the national average
## 1544           Same as the national average
## 1545           Same as the national average
## 1546             Above the national average
## 1547             Above the national average
## 1548                          Not Available
## 1549             Below the national average
## 1550                          Not Available
## 1551                          Not Available
## 1552             Below the national average
## 1553           Same as the national average
## 1554                          Not Available
## 1555                          Not Available
## 1556           Same as the national average
## 1557             Below the national average
## 1558             Above the national average
## 1559           Same as the national average
## 1560             Above the national average
## 1561                          Not Available
## 1562                          Not Available
## 1563             Above the national average
## 1564           Same as the national average
## 1565           Same as the national average
## 1566             Above the national average
## 1567             Below the national average
## 1568                          Not Available
## 1569             Above the national average
## 1570             Below the national average
## 1571                          Not Available
## 1572             Below the national average
## 1573             Above the national average
## 1574                          Not Available
## 1575             Below the national average
## 1576             Below the national average
## 1577                          Not Available
## 1578           Same as the national average
## 1579             Above the national average
## 1580           Same as the national average
## 1581                          Not Available
## 1582             Below the national average
## 1583                          Not Available
## 1584             Below the national average
## 1585           Same as the national average
## 1586             Above the national average
## 1587           Same as the national average
## 1588           Same as the national average
## 1589             Above the national average
## 1590           Same as the national average
## 1591           Same as the national average
## 1592                          Not Available
## 1593             Above the national average
## 1594           Same as the national average
## 1595                          Not Available
## 1596           Same as the national average
## 1597             Above the national average
## 1598                          Not Available
## 1599             Below the national average
## 1600             Below the national average
## 1601             Below the national average
## 1602                          Not Available
## 1603             Below the national average
## 1604             Below the national average
## 1605                          Not Available
## 1606           Same as the national average
## 1607                          Not Available
## 1608           Same as the national average
## 1609             Below the national average
## 1610                          Not Available
## 1611             Below the national average
## 1612           Same as the national average
## 1613                          Not Available
## 1614                          Not Available
## 1615             Below the national average
## 1616             Below the national average
## 1617                          Not Available
## 1618                          Not Available
## 1619           Same as the national average
## 1620             Above the national average
## 1621             Below the national average
## 1622             Below the national average
## 1623             Above the national average
## 1624                          Not Available
## 1625             Above the national average
## 1626             Below the national average
## 1627                          Not Available
## 1628             Above the national average
## 1629                          Not Available
## 1630             Above the national average
## 1631             Above the national average
## 1632           Same as the national average
## 1633             Above the national average
## 1634             Above the national average
## 1635           Same as the national average
## 1636                          Not Available
## 1637             Above the national average
## 1638             Below the national average
## 1639                          Not Available
## 1640             Below the national average
## 1641                          Not Available
## 1642                          Not Available
## 1643                          Not Available
## 1644             Above the national average
## 1645                          Not Available
## 1646           Same as the national average
## 1647                          Not Available
## 1648                          Not Available
## 1649           Same as the national average
## 1650             Above the national average
## 1651                          Not Available
## 1652           Same as the national average
## 1653             Above the national average
## 1654                          Not Available
## 1655             Above the national average
## 1656             Above the national average
## 1657                          Not Available
## 1658             Above the national average
## 1659           Same as the national average
## 1660             Below the national average
## 1661                          Not Available
## 1662             Above the national average
## 1663             Below the national average
## 1664           Same as the national average
## 1665             Below the national average
## 1666           Same as the national average
## 1667           Same as the national average
## 1668             Above the national average
## 1669                          Not Available
## 1670                          Not Available
## 1671                          Not Available
## 1672                          Not Available
## 1673             Above the national average
## 1674             Below the national average
## 1675             Below the national average
## 1676           Same as the national average
## 1677             Below the national average
## 1678             Above the national average
## 1679                          Not Available
## 1680           Same as the national average
## 1681             Above the national average
## 1682             Above the national average
## 1683                          Not Available
## 1684             Above the national average
## 1685           Same as the national average
## 1686             Above the national average
## 1687                          Not Available
## 1688             Above the national average
## 1689             Below the national average
## 1690                          Not Available
## 1691             Above the national average
## 1692           Same as the national average
## 1693                          Not Available
## 1694                          Not Available
## 1695                          Not Available
## 1696             Above the national average
## 1697           Same as the national average
## 1698             Above the national average
## 1699           Same as the national average
## 1700             Above the national average
## 1701             Below the national average
## 1702                          Not Available
## 1703           Same as the national average
## 1704                          Not Available
## 1705                          Not Available
## 1706             Below the national average
## 1707             Above the national average
## 1708                          Not Available
## 1709             Above the national average
## 1710           Same as the national average
## 1711           Same as the national average
## 1712             Above the national average
## 1713                          Not Available
## 1714                          Not Available
## 1715             Below the national average
## 1716             Above the national average
## 1717             Above the national average
## 1718                          Not Available
## 1719           Same as the national average
## 1720           Same as the national average
## 1721                          Not Available
## 1722                          Not Available
## 1723             Above the national average
## 1724           Same as the national average
## 1725                          Not Available
## 1726           Same as the national average
## 1727                          Not Available
## 1728                          Not Available
## 1729             Below the national average
## 1730           Same as the national average
## 1731           Same as the national average
## 1732             Below the national average
## 1733             Above the national average
## 1734             Above the national average
## 1735           Same as the national average
## 1736                          Not Available
## 1737                          Not Available
## 1738             Below the national average
## 1739                          Not Available
## 1740             Below the national average
## 1741                          Not Available
## 1742           Same as the national average
## 1743             Above the national average
## 1744             Above the national average
## 1745                          Not Available
## 1746             Above the national average
## 1747                          Not Available
## 1748                          Not Available
## 1749                          Not Available
## 1750                          Not Available
## 1751             Below the national average
## 1752             Above the national average
## 1753                          Not Available
## 1754                          Not Available
## 1755           Same as the national average
## 1756             Below the national average
## 1757           Same as the national average
## 1758             Below the national average
## 1759                          Not Available
## 1760                          Not Available
## 1761             Below the national average
## 1762             Below the national average
## 1763                          Not Available
## 1764                          Not Available
## 1765             Below the national average
## 1766                          Not Available
## 1767             Above the national average
## 1768                          Not Available
## 1769                          Not Available
## 1770           Same as the national average
## 1771                          Not Available
## 1772                          Not Available
## 1773                          Not Available
## 1774             Below the national average
## 1775           Same as the national average
## 1776             Above the national average
## 1777             Below the national average
## 1778                          Not Available
## 1779                          Not Available
## 1780                          Not Available
## 1781                          Not Available
## 1782             Below the national average
## 1783           Same as the national average
## 1784             Above the national average
## 1785                          Not Available
## 1786           Same as the national average
## 1787                          Not Available
## 1788             Above the national average
## 1789                          Not Available
## 1790             Above the national average
## 1791           Same as the national average
## 1792                          Not Available
## 1793             Below the national average
## 1794             Below the national average
## 1795                          Not Available
## 1796             Below the national average
## 1797           Same as the national average
## 1798           Same as the national average
## 1799             Above the national average
## 1800             Above the national average
## 1801             Above the national average
## 1802             Above the national average
## 1803                          Not Available
## 1804           Same as the national average
## 1805                          Not Available
## 1806                          Not Available
## 1807                          Not Available
## 1808                          Not Available
## 1809                          Not Available
## 1810             Below the national average
## 1811                          Not Available
## 1812             Above the national average
## 1813                          Not Available
## 1814                          Not Available
## 1815             Above the national average
## 1816                          Not Available
## 1817             Below the national average
## 1818                          Not Available
## 1819             Above the national average
## 1820           Same as the national average
## 1821             Below the national average
## 1822             Above the national average
## 1823                          Not Available
## 1824           Same as the national average
## 1825             Above the national average
## 1826                          Not Available
## 1827                          Not Available
## 1828             Below the national average
## 1829                          Not Available
## 1830             Below the national average
## 1831           Same as the national average
## 1832             Below the national average
## 1833             Above the national average
## 1834             Above the national average
## 1835                          Not Available
## 1836           Same as the national average
## 1837           Same as the national average
## 1838           Same as the national average
## 1839             Above the national average
## 1840                          Not Available
## 1841             Below the national average
## 1842                          Not Available
## 1843           Same as the national average
## 1844             Above the national average
## 1845           Same as the national average
## 1846             Above the national average
## 1847                          Not Available
## 1848             Below the national average
## 1849                          Not Available
## 1850             Above the national average
## 1851                          Not Available
## 1852           Same as the national average
## 1853             Below the national average
## 1854           Same as the national average
## 1855             Above the national average
## 1856                          Not Available
## 1857           Same as the national average
## 1858             Below the national average
## 1859                          Not Available
## 1860           Same as the national average
## 1861             Above the national average
## 1862           Same as the national average
## 1863           Same as the national average
## 1864             Below the national average
## 1865             Above the national average
## 1866                          Not Available
## 1867           Same as the national average
## 1868             Above the national average
## 1869             Below the national average
## 1870             Above the national average
## 1871             Below the national average
## 1872             Below the national average
## 1873             Above the national average
## 1874                          Not Available
## 1875           Same as the national average
## 1876                          Not Available
## 1877                          Not Available
## 1878             Below the national average
## 1879                          Not Available
## 1880             Above the national average
## 1881             Below the national average
## 1882                          Not Available
## 1883             Above the national average
## 1884             Above the national average
## 1885           Same as the national average
## 1886             Above the national average
## 1887                          Not Available
## 1888                          Not Available
## 1889             Below the national average
## 1890             Above the national average
## 1891             Below the national average
## 1892                          Not Available
## 1893           Same as the national average
## 1894             Above the national average
## 1895             Below the national average
## 1896                          Not Available
## 1897                          Not Available
## 1898             Below the national average
## 1899                          Not Available
## 1900             Below the national average
## 1901             Above the national average
## 1902             Above the national average
## 1903             Above the national average
## 1904           Same as the national average
## 1905                          Not Available
## 1906                          Not Available
## 1907             Below the national average
## 1908             Below the national average
## 1909           Same as the national average
## 1910             Below the national average
## 1911                          Not Available
## 1912                          Not Available
## 1913             Above the national average
## 1914           Same as the national average
## 1915                          Not Available
## 1916                          Not Available
## 1917           Same as the national average
## 1918             Below the national average
## 1919                          Not Available
## 1920                          Not Available
## 1921             Below the national average
## 1922                          Not Available
## 1923             Above the national average
## 1924                          Not Available
## 1925             Below the national average
## 1926           Same as the national average
## 1927           Same as the national average
## 1928           Same as the national average
## 1929             Below the national average
## 1930           Same as the national average
## 1931             Below the national average
## 1932             Above the national average
## 1933             Below the national average
## 1934           Same as the national average
## 1935             Above the national average
## 1936             Below the national average
## 1937                          Not Available
## 1938                          Not Available
## 1939             Below the national average
## 1940                          Not Available
## 1941                          Not Available
## 1942           Same as the national average
## 1943                          Not Available
## 1944             Below the national average
## 1945             Below the national average
## 1946             Below the national average
## 1947             Below the national average
## 1948                          Not Available
## 1949             Above the national average
## 1950           Same as the national average
## 1951                          Not Available
## 1952                          Not Available
## 1953             Below the national average
## 1954             Above the national average
## 1955           Same as the national average
## 1956                          Not Available
## 1957                          Not Available
## 1958             Above the national average
## 1959                          Not Available
## 1960             Below the national average
## 1961             Below the national average
## 1962             Below the national average
## 1963                          Not Available
## 1964             Above the national average
## 1965             Above the national average
## 1966                          Not Available
## 1967                          Not Available
## 1968           Same as the national average
## 1969                          Not Available
## 1970                          Not Available
## 1971                          Not Available
## 1972             Below the national average
## 1973             Above the national average
## 1974             Above the national average
## 1975             Below the national average
## 1976                          Not Available
## 1977                          Not Available
## 1978             Above the national average
## 1979             Above the national average
## 1980             Above the national average
## 1981                          Not Available
## 1982                          Not Available
## 1983           Same as the national average
## 1984           Same as the national average
## 1985           Same as the national average
## 1986             Below the national average
## 1987                          Not Available
## 1988           Same as the national average
## 1989                          Not Available
## 1990             Below the national average
## 1991             Below the national average
## 1992           Same as the national average
## 1993             Above the national average
## 1994             Above the national average
## 1995             Below the national average
## 1996             Above the national average
## 1997                          Not Available
## 1998           Same as the national average
## 1999           Same as the national average
## 2000             Above the national average
## 2001                          Not Available
## 2002           Same as the national average
## 2003           Same as the national average
## 2004             Below the national average
## 2005                          Not Available
## 2006                          Not Available
## 2007           Same as the national average
## 2008                          Not Available
## 2009             Above the national average
## 2010             Above the national average
## 2011                          Not Available
## 2012             Above the national average
## 2013             Above the national average
## 2014             Above the national average
## 2015           Same as the national average
## 2016           Same as the national average
## 2017           Same as the national average
## 2018             Below the national average
## 2019                          Not Available
## 2020             Below the national average
## 2021                          Not Available
## 2022             Above the national average
## 2023             Below the national average
## 2024           Same as the national average
## 2025             Above the national average
## 2026           Same as the national average
## 2027                          Not Available
## 2028             Above the national average
## 2029             Above the national average
## 2030                          Not Available
## 2031                          Not Available
## 2032             Below the national average
## 2033             Above the national average
## 2034                          Not Available
## 2035             Below the national average
## 2036                          Not Available
## 2037             Below the national average
## 2038             Below the national average
## 2039             Above the national average
## 2040             Above the national average
## 2041             Above the national average
## 2042             Below the national average
## 2043                          Not Available
## 2044           Same as the national average
## 2045           Same as the national average
## 2046             Above the national average
## 2047             Above the national average
## 2048             Below the national average
## 2049                          Not Available
## 2050                          Not Available
## 2051           Same as the national average
## 2052             Above the national average
## 2053                          Not Available
## 2054           Same as the national average
## 2055             Below the national average
## 2056             Above the national average
## 2057             Above the national average
## 2058           Same as the national average
## 2059           Same as the national average
## 2060                          Not Available
## 2061                          Not Available
## 2062                          Not Available
## 2063             Above the national average
## 2064             Below the national average
## 2065             Below the national average
## 2066             Below the national average
## 2067                          Not Available
## 2068           Same as the national average
## 2069           Same as the national average
## 2070             Below the national average
## 2071                          Not Available
## 2072             Above the national average
## 2073             Below the national average
## 2074           Same as the national average
## 2075                          Not Available
## 2076                          Not Available
## 2077             Below the national average
## 2078             Above the national average
## 2079             Below the national average
## 2080                          Not Available
## 2081             Above the national average
## 2082             Above the national average
## 2083                          Not Available
## 2084             Below the national average
## 2085             Below the national average
## 2086           Same as the national average
## 2087             Below the national average
## 2088                          Not Available
## 2089           Same as the national average
## 2090                          Not Available
## 2091             Below the national average
## 2092                          Not Available
## 2093             Above the national average
## 2094                          Not Available
## 2095             Above the national average
## 2096             Above the national average
## 2097             Above the national average
## 2098                          Not Available
## 2099           Same as the national average
## 2100             Below the national average
## 2101             Below the national average
## 2102             Above the national average
## 2103                          Not Available
## 2104             Above the national average
## 2105           Same as the national average
## 2106           Same as the national average
## 2107             Above the national average
## 2108           Same as the national average
## 2109                          Not Available
## 2110                          Not Available
## 2111                          Not Available
## 2112             Above the national average
## 2113             Above the national average
## 2114             Above the national average
## 2115             Above the national average
## 2116                          Not Available
## 2117           Same as the national average
## 2118             Below the national average
## 2119             Above the national average
## 2120             Above the national average
## 2121                          Not Available
## 2122             Above the national average
## 2123           Same as the national average
## 2124             Below the national average
## 2125           Same as the national average
## 2126                          Not Available
## 2127                          Not Available
## 2128             Above the national average
## 2129                          Not Available
## 2130             Below the national average
## 2131           Same as the national average
## 2132                          Not Available
## 2133             Below the national average
## 2134           Same as the national average
## 2135             Above the national average
## 2136           Same as the national average
## 2137             Above the national average
## 2138                          Not Available
## 2139                          Not Available
## 2140                          Not Available
## 2141                          Not Available
## 2142             Above the national average
## 2143             Above the national average
## 2144             Below the national average
## 2145                          Not Available
## 2146           Same as the national average
## 2147                          Not Available
## 2148             Above the national average
## 2149                          Not Available
## 2150             Below the national average
## 2151           Same as the national average
## 2152                          Not Available
## 2153           Same as the national average
## 2154           Same as the national average
## 2155                          Not Available
## 2156           Same as the national average
## 2157                          Not Available
## 2158             Above the national average
## 2159             Above the national average
## 2160           Same as the national average
## 2161           Same as the national average
## 2162                          Not Available
## 2163                          Not Available
## 2164             Below the national average
## 2165                          Not Available
## 2166             Below the national average
## 2167                          Not Available
## 2168             Below the national average
## 2169                          Not Available
## 2170             Below the national average
## 2171             Below the national average
## 2172             Below the national average
## 2173             Above the national average
## 2174           Same as the national average
## 2175             Below the national average
## 2176                          Not Available
## 2177             Above the national average
## 2178           Same as the national average
## 2179           Same as the national average
## 2180             Below the national average
## 2181             Above the national average
## 2182                          Not Available
## 2183             Below the national average
## 2184                          Not Available
## 2185                          Not Available
## 2186                          Not Available
## 2187                          Not Available
## 2188                          Not Available
## 2189           Same as the national average
## 2190             Below the national average
## 2191           Same as the national average
## 2192                          Not Available
## 2193           Same as the national average
## 2194                          Not Available
## 2195             Below the national average
## 2196                          Not Available
## 2197             Below the national average
## 2198             Above the national average
## 2199             Below the national average
## 2200                          Not Available
## 2201             Below the national average
## 2202                          Not Available
## 2203             Above the national average
## 2204             Below the national average
## 2205             Below the national average
## 2206                          Not Available
## 2207             Above the national average
## 2208             Below the national average
## 2209             Below the national average
## 2210                          Not Available
## 2211           Same as the national average
## 2212             Below the national average
## 2213                          Not Available
## 2214           Same as the national average
## 2215             Below the national average
## 2216             Above the national average
## 2217           Same as the national average
## 2218             Below the national average
## 2219           Same as the national average
## 2220             Below the national average
## 2221             Below the national average
## 2222             Below the national average
## 2223             Above the national average
## 2224           Same as the national average
## 2225                          Not Available
## 2226                          Not Available
## 2227                          Not Available
## 2228                          Not Available
## 2229           Same as the national average
## 2230             Above the national average
## 2231                          Not Available
## 2232             Above the national average
## 2233           Same as the national average
## 2234                          Not Available
## 2235                          Not Available
## 2236                          Not Available
## 2237                          Not Available
## 2238                          Not Available
## 2239             Above the national average
## 2240                          Not Available
## 2241                          Not Available
## 2242             Below the national average
## 2243           Same as the national average
## 2244           Same as the national average
## 2245             Above the national average
## 2246                          Not Available
## 2247             Below the national average
## 2248             Above the national average
## 2249             Above the national average
## 2250                          Not Available
## 2251             Above the national average
## 2252           Same as the national average
## 2253           Same as the national average
## 2254             Below the national average
## 2255                          Not Available
## 2256                          Not Available
## 2257           Same as the national average
## 2258                          Not Available
## 2259                          Not Available
## 2260             Below the national average
## 2261           Same as the national average
## 2262             Above the national average
## 2263             Above the national average
## 2264             Above the national average
## 2265             Below the national average
## 2266                          Not Available
## 2267                          Not Available
## 2268             Below the national average
## 2269                          Not Available
## 2270                          Not Available
## 2271                          Not Available
## 2272           Same as the national average
## 2273             Below the national average
## 2274           Same as the national average
## 2275                          Not Available
## 2276             Below the national average
## 2277             Above the national average
## 2278           Same as the national average
## 2279                          Not Available
## 2280             Below the national average
## 2281                          Not Available
## 2282           Same as the national average
## 2283           Same as the national average
## 2284                          Not Available
## 2285             Above the national average
## 2286             Above the national average
## 2287                          Not Available
## 2288                          Not Available
## 2289             Above the national average
## 2290             Above the national average
## 2291             Below the national average
## 2292                          Not Available
## 2293                          Not Available
## 2294           Same as the national average
## 2295                          Not Available
## 2296                          Not Available
## 2297             Below the national average
## 2298                          Not Available
## 2299             Below the national average
## 2300                          Not Available
## 2301             Above the national average
## 2302             Above the national average
## 2303                          Not Available
## 2304                          Not Available
## 2305                          Not Available
## 2306                          Not Available
## 2307                          Not Available
## 2308           Same as the national average
## 2309           Same as the national average
## 2310           Same as the national average
## 2311                          Not Available
## 2312             Below the national average
## 2313           Same as the national average
## 2314             Above the national average
## 2315             Below the national average
## 2316                          Not Available
## 2317             Above the national average
## 2318                          Not Available
## 2319                          Not Available
## 2320                          Not Available
## 2321                          Not Available
## 2322             Above the national average
## 2323                          Not Available
## 2324             Above the national average
## 2325           Same as the national average
## 2326             Above the national average
## 2327                          Not Available
## 2328             Above the national average
## 2329             Above the national average
## 2330                          Not Available
## 2331                          Not Available
## 2332                          Not Available
## 2333                          Not Available
## 2334             Above the national average
## 2335                          Not Available
## 2336           Same as the national average
## 2337                          Not Available
## 2338             Above the national average
## 2339                          Not Available
## 2340                          Not Available
## 2341                          Not Available
## 2342                          Not Available
## 2343                          Not Available
## 2344             Above the national average
## 2345                          Not Available
## 2346                          Not Available
## 2347           Same as the national average
## 2348           Same as the national average
## 2349                          Not Available
## 2350             Above the national average
## 2351           Same as the national average
## 2352                          Not Available
## 2353             Above the national average
## 2354             Below the national average
## 2355                          Not Available
## 2356           Same as the national average
## 2357             Above the national average
## 2358           Same as the national average
## 2359             Above the national average
## 2360                          Not Available
## 2361             Below the national average
## 2362             Below the national average
## 2363             Above the national average
## 2364             Below the national average
## 2365             Above the national average
## 2366                          Not Available
## 2367             Above the national average
## 2368             Above the national average
## 2369                          Not Available
## 2370                          Not Available
## 2371             Below the national average
## 2372           Same as the national average
## 2373             Above the national average
## 2374                          Not Available
## 2375             Below the national average
## 2376                          Not Available
## 2377             Above the national average
## 2378                          Not Available
## 2379                          Not Available
## 2380           Same as the national average
## 2381             Above the national average
## 2382             Above the national average
## 2383                          Not Available
## 2384                          Not Available
## 2385             Above the national average
## 2386                          Not Available
## 2387           Same as the national average
## 2388           Same as the national average
## 2389           Same as the national average
## 2390                          Not Available
## 2391           Same as the national average
## 2392                          Not Available
## 2393                          Not Available
## 2394                          Not Available
## 2395                          Not Available
## 2396                          Not Available
## 2397                          Not Available
## 2398           Same as the national average
## 2399             Below the national average
## 2400             Above the national average
## 2401           Same as the national average
## 2402                          Not Available
## 2403                          Not Available
## 2404             Above the national average
## 2405                          Not Available
## 2406           Same as the national average
## 2407             Below the national average
## 2408             Below the national average
## 2409             Above the national average
## 2410                          Not Available
## 2411           Same as the national average
## 2412                          Not Available
## 2413             Below the national average
## 2414                          Not Available
## 2415           Same as the national average
## 2416                          Not Available
## 2417                          Not Available
## 2418                          Not Available
## 2419                          Not Available
## 2420             Below the national average
## 2421             Below the national average
## 2422           Same as the national average
## 2423             Below the national average
## 2424                          Not Available
## 2425             Below the national average
## 2426                          Not Available
## 2427           Same as the national average
## 2428                          Not Available
## 2429                          Not Available
## 2430             Above the national average
## 2431                          Not Available
## 2432                          Not Available
## 2433                          Not Available
## 2434                          Not Available
## 2435             Above the national average
## 2436           Same as the national average
## 2437             Above the national average
## 2438                          Not Available
## 2439           Same as the national average
## 2440                          Not Available
## 2441             Above the national average
## 2442                          Not Available
## 2443           Same as the national average
## 2444                          Not Available
## 2445                          Not Available
## 2446             Below the national average
## 2447                          Not Available
## 2448             Below the national average
## 2449                          Not Available
## 2450           Same as the national average
## 2451                          Not Available
## 2452           Same as the national average
## 2453           Same as the national average
## 2454           Same as the national average
## 2455             Above the national average
## 2456                          Not Available
## 2457             Above the national average
## 2458                          Not Available
## 2459             Below the national average
## 2460             Below the national average
## 2461             Below the national average
## 2462             Below the national average
## 2463                          Not Available
## 2464           Same as the national average
## 2465                          Not Available
## 2466                          Not Available
## 2467           Same as the national average
## 2468                          Not Available
## 2469             Above the national average
## 2470           Same as the national average
## 2471           Same as the national average
## 2472                          Not Available
## 2473                          Not Available
## 2474                          Not Available
## 2475             Below the national average
## 2476           Same as the national average
## 2477             Above the national average
## 2478             Below the national average
## 2479                          Not Available
## 2480             Below the national average
## 2481           Same as the national average
## 2482           Same as the national average
## 2483             Above the national average
## 2484           Same as the national average
## 2485                          Not Available
## 2486           Same as the national average
## 2487                          Not Available
## 2488                          Not Available
## 2489                          Not Available
## 2490             Above the national average
## 2491             Above the national average
## 2492                          Not Available
## 2493                          Not Available
## 2494                          Not Available
## 2495             Above the national average
## 2496                          Not Available
## 2497                          Not Available
## 2498           Same as the national average
## 2499                          Not Available
## 2500             Above the national average
## 2501             Above the national average
## 2502             Above the national average
## 2503             Above the national average
## 2504             Below the national average
## 2505             Above the national average
## 2506                          Not Available
## 2507             Below the national average
## 2508             Above the national average
## 2509           Same as the national average
## 2510                          Not Available
## 2511             Below the national average
## 2512           Same as the national average
## 2513                          Not Available
## 2514           Same as the national average
## 2515             Below the national average
## 2516             Above the national average
## 2517             Above the national average
## 2518                          Not Available
## 2519           Same as the national average
## 2520                          Not Available
## 2521           Same as the national average
## 2522           Same as the national average
## 2523             Below the national average
## 2524                          Not Available
## 2525           Same as the national average
## 2526           Same as the national average
## 2527             Above the national average
## 2528           Same as the national average
## 2529                          Not Available
## 2530             Above the national average
## 2531             Above the national average
## 2532                          Not Available
## 2533             Below the national average
## 2534             Above the national average
## 2535             Below the national average
## 2536                          Not Available
## 2537             Above the national average
## 2538                          Not Available
## 2539                          Not Available
## 2540                          Not Available
## 2541                          Not Available
## 2542           Same as the national average
## 2543                          Not Available
## 2544                          Not Available
## 2545             Above the national average
## 2546                          Not Available
## 2547                          Not Available
## 2548             Below the national average
## 2549             Above the national average
## 2550                          Not Available
## 2551           Same as the national average
## 2552                          Not Available
## 2553             Above the national average
## 2554                          Not Available
## 2555             Above the national average
## 2556                          Not Available
## 2557                          Not Available
## 2558                          Not Available
## 2559             Above the national average
## 2560             Below the national average
## 2561                          Not Available
## 2562             Above the national average
## 2563                          Not Available
## 2564           Same as the national average
## 2565             Above the national average
## 2566                          Not Available
## 2567             Above the national average
## 2568             Above the national average
## 2569                          Not Available
## 2570           Same as the national average
## 2571             Above the national average
## 2572           Same as the national average
## 2573                          Not Available
## 2574             Below the national average
## 2575             Below the national average
## 2576           Same as the national average
## 2577             Below the national average
## 2578             Above the national average
## 2579             Above the national average
## 2580             Above the national average
## 2581             Above the national average
## 2582                          Not Available
## 2583                          Not Available
## 2584           Same as the national average
## 2585                          Not Available
## 2586             Above the national average
## 2587                          Not Available
## 2588                          Not Available
## 2589             Above the national average
## 2590           Same as the national average
## 2591           Same as the national average
## 2592           Same as the national average
## 2593             Above the national average
## 2594                          Not Available
## 2595             Above the national average
## 2596                          Not Available
## 2597             Above the national average
## 2598           Same as the national average
## 2599             Below the national average
## 2600                          Not Available
## 2601           Same as the national average
## 2602             Above the national average
## 2603                          Not Available
## 2604                          Not Available
## 2605             Below the national average
## 2606                          Not Available
## 2607                          Not Available
## 2608           Same as the national average
## 2609                          Not Available
## 2610             Below the national average
## 2611             Above the national average
## 2612             Below the national average
## 2613             Above the national average
## 2614             Above the national average
## 2615           Same as the national average
## 2616                          Not Available
## 2617                          Not Available
## 2618             Above the national average
## 2619             Above the national average
## 2620             Above the national average
## 2621             Above the national average
## 2622             Below the national average
## 2623             Above the national average
## 2624                          Not Available
## 2625                          Not Available
## 2626           Same as the national average
## 2627                          Not Available
## 2628           Same as the national average
## 2629             Above the national average
## 2630             Above the national average
## 2631                          Not Available
## 2632                          Not Available
## 2633           Same as the national average
## 2634           Same as the national average
## 2635             Above the national average
## 2636                          Not Available
## 2637             Below the national average
## 2638             Below the national average
## 2639           Same as the national average
## 2640             Below the national average
## 2641             Above the national average
## 2642                          Not Available
## 2643           Same as the national average
## 2644             Above the national average
## 2645             Below the national average
## 2646           Same as the national average
## 2647             Below the national average
## 2648                          Not Available
## 2649             Below the national average
## 2650           Same as the national average
## 2651           Same as the national average
## 2652           Same as the national average
## 2653                          Not Available
## 2654             Below the national average
## 2655                          Not Available
## 2656             Above the national average
## 2657                          Not Available
## 2658           Same as the national average
## 2659             Above the national average
## 2660             Above the national average
## 2661                          Not Available
## 2662             Above the national average
## 2663           Same as the national average
## 2664           Same as the national average
## 2665           Same as the national average
## 2666             Above the national average
## 2667                          Not Available
## 2668                          Not Available
## 2669             Below the national average
## 2670                          Not Available
## 2671             Below the national average
## 2672             Above the national average
## 2673                          Not Available
## 2674           Same as the national average
## 2675                          Not Available
## 2676                          Not Available
## 2677             Above the national average
## 2678                          Not Available
## 2679             Above the national average
## 2680             Above the national average
## 2681                          Not Available
## 2682           Same as the national average
## 2683                          Not Available
## 2684             Above the national average
## 2685           Same as the national average
## 2686             Above the national average
## 2687           Same as the national average
## 2688             Below the national average
## 2689                          Not Available
## 2690                          Not Available
## 2691             Below the national average
## 2692           Same as the national average
## 2693             Above the national average
## 2694             Below the national average
## 2695             Above the national average
## 2696             Below the national average
## 2697             Above the national average
## 2698                          Not Available
## 2699                          Not Available
## 2700           Same as the national average
## 2701           Same as the national average
## 2702                          Not Available
## 2703                          Not Available
## 2704           Same as the national average
## 2705           Same as the national average
## 2706           Same as the national average
## 2707           Same as the national average
## 2708                          Not Available
## 2709           Same as the national average
## 2710           Same as the national average
## 2711                          Not Available
## 2712                          Not Available
## 2713                          Not Available
## 2714                          Not Available
## 2715             Below the national average
## 2716             Above the national average
## 2717                          Not Available
## 2718             Above the national average
## 2719             Below the national average
## 2720                          Not Available
## 2721             Below the national average
## 2722             Above the national average
## 2723             Below the national average
## 2724             Below the national average
## 2725                          Not Available
## 2726           Same as the national average
## 2727                          Not Available
## 2728           Same as the national average
## 2729                          Not Available
## 2730                          Not Available
## 2731                          Not Available
## 2732                          Not Available
## 2733           Same as the national average
## 2734                          Not Available
## 2735           Same as the national average
## 2736           Same as the national average
## 2737             Below the national average
## 2738           Same as the national average
## 2739                          Not Available
## 2740                          Not Available
## 2741                          Not Available
## 2742           Same as the national average
## 2743                          Not Available
## 2744             Above the national average
## 2745                          Not Available
## 2746             Below the national average
## 2747                          Not Available
## 2748                          Not Available
## 2749           Same as the national average
## 2750             Below the national average
## 2751             Below the national average
## 2752             Above the national average
## 2753                          Not Available
## 2754             Above the national average
## 2755             Above the national average
## 2756             Below the national average
## 2757             Below the national average
## 2758           Same as the national average
## 2759                          Not Available
## 2760           Same as the national average
## 2761             Below the national average
## 2762             Below the national average
## 2763                          Not Available
## 2764             Above the national average
## 2765             Above the national average
## 2766             Above the national average
## 2767                          Not Available
## 2768             Below the national average
## 2769             Above the national average
## 2770                          Not Available
## 2771                          Not Available
## 2772             Below the national average
## 2773                          Not Available
## 2774             Below the national average
## 2775                          Not Available
## 2776                          Not Available
## 2777           Same as the national average
## 2778             Above the national average
## 2779             Below the national average
## 2780           Same as the national average
## 2781             Above the national average
## 2782             Above the national average
## 2783             Below the national average
## 2784             Above the national average
## 2785             Above the national average
## 2786                          Not Available
## 2787             Below the national average
## 2788             Below the national average
## 2789             Above the national average
## 2790             Below the national average
## 2791                          Not Available
## 2792             Below the national average
## 2793             Below the national average
## 2794             Above the national average
## 2795                          Not Available
## 2796             Below the national average
## 2797             Below the national average
## 2798           Same as the national average
## 2799           Same as the national average
## 2800           Same as the national average
## 2801           Same as the national average
## 2802                          Not Available
## 2803             Below the national average
## 2804             Below the national average
## 2805                          Not Available
## 2806                          Not Available
## 2807             Above the national average
## 2808           Same as the national average
## 2809                          Not Available
## 2810           Same as the national average
## 2811             Above the national average
## 2812             Above the national average
## 2813             Above the national average
## 2814             Above the national average
## 2815                          Not Available
## 2816           Same as the national average
## 2817                          Not Available
## 2818           Same as the national average
## 2819             Above the national average
## 2820                          Not Available
## 2821                          Not Available
## 2822           Same as the national average
## 2823             Below the national average
## 2824             Above the national average
## 2825             Below the national average
## 2826                          Not Available
## 2827                          Not Available
## 2828                          Not Available
## 2829                          Not Available
## 2830                          Not Available
## 2831             Above the national average
## 2832                          Not Available
## 2833           Same as the national average
## 2834           Same as the national average
## 2835                          Not Available
## 2836             Above the national average
## 2837                          Not Available
## 2838             Below the national average
## 2839             Below the national average
## 2840           Same as the national average
## 2841           Same as the national average
## 2842                          Not Available
## 2843                          Not Available
## 2844                          Not Available
## 2845                          Not Available
## 2846                          Not Available
## 2847                          Not Available
## 2848             Above the national average
## 2849                          Not Available
## 2850                          Not Available
## 2851                          Not Available
## 2852                          Not Available
## 2853           Same as the national average
## 2854           Same as the national average
## 2855             Above the national average
## 2856             Above the national average
## 2857             Above the national average
## 2858             Below the national average
## 2859             Below the national average
## 2860             Below the national average
## 2861           Same as the national average
## 2862                          Not Available
## 2863             Below the national average
## 2864             Above the national average
## 2865             Below the national average
## 2866             Above the national average
## 2867                          Not Available
## 2868             Below the national average
## 2869             Below the national average
## 2870                          Not Available
## 2871             Below the national average
## 2872           Same as the national average
## 2873           Same as the national average
## 2874                          Not Available
## 2875           Same as the national average
## 2876           Same as the national average
## 2877           Same as the national average
## 2878           Same as the national average
## 2879                          Not Available
## 2880                          Not Available
## 2881             Below the national average
## 2882                          Not Available
## 2883             Above the national average
## 2884                          Not Available
## 2885             Below the national average
## 2886             Below the national average
## 2887           Same as the national average
## 2888                          Not Available
## 2889                          Not Available
## 2890           Same as the national average
## 2891                          Not Available
## 2892           Same as the national average
## 2893           Same as the national average
## 2894             Above the national average
## 2895             Below the national average
## 2896             Above the national average
## 2897             Below the national average
## 2898             Below the national average
## 2899             Below the national average
## 2900                          Not Available
## 2901           Same as the national average
## 2902             Above the national average
## 2903                          Not Available
## 2904             Above the national average
## 2905             Below the national average
## 2906             Below the national average
## 2907             Below the national average
## 2908             Below the national average
## 2909             Below the national average
## 2910                          Not Available
## 2911           Same as the national average
## 2912           Same as the national average
## 2913             Above the national average
## 2914           Same as the national average
## 2915             Below the national average
## 2916           Same as the national average
## 2917           Same as the national average
## 2918                          Not Available
## 2919           Same as the national average
## 2920           Same as the national average
## 2921             Below the national average
## 2922             Above the national average
## 2923             Below the national average
## 2924             Above the national average
## 2925             Above the national average
## 2926                          Not Available
## 2927                          Not Available
## 2928             Above the national average
## 2929             Above the national average
## 2930           Same as the national average
## 2931             Below the national average
## 2932             Above the national average
## 2933             Above the national average
## 2934                          Not Available
## 2935             Above the national average
## 2936             Above the national average
## 2937           Same as the national average
## 2938             Above the national average
## 2939           Same as the national average
## 2940           Same as the national average
## 2941           Same as the national average
## 2942                          Not Available
## 2943             Below the national average
## 2944             Above the national average
## 2945           Same as the national average
## 2946                          Not Available
## 2947             Above the national average
## 2948                          Not Available
## 2949                          Not Available
## 2950                          Not Available
## 2951           Same as the national average
## 2952                          Not Available
## 2953             Below the national average
## 2954             Above the national average
## 2955           Same as the national average
## 2956                          Not Available
## 2957                          Not Available
## 2958           Same as the national average
## 2959                          Not Available
## 2960             Below the national average
## 2961             Below the national average
## 2962                          Not Available
## 2963                          Not Available
## 2964             Below the national average
## 2965             Below the national average
## 2966                          Not Available
## 2967             Above the national average
## 2968             Below the national average
## 2969             Below the national average
## 2970             Above the national average
## 2971             Above the national average
## 2972             Below the national average
## 2973             Below the national average
## 2974             Below the national average
## 2975                          Not Available
## 2976             Above the national average
## 2977             Above the national average
## 2978                          Not Available
## 2979           Same as the national average
## 2980           Same as the national average
## 2981             Below the national average
## 2982             Below the national average
## 2983           Same as the national average
## 2984                          Not Available
## 2985             Below the national average
## 2986           Same as the national average
## 2987             Above the national average
## 2988             Above the national average
## 2989             Below the national average
## 2990           Same as the national average
## 2991           Same as the national average
## 2992             Above the national average
## 2993             Above the national average
## 2994                          Not Available
## 2995             Above the national average
## 2996                          Not Available
## 2997                          Not Available
## 2998             Above the national average
## 2999             Above the national average
## 3000           Same as the national average
## 3001                          Not Available
## 3002           Same as the national average
## 3003             Above the national average
## 3004                          Not Available
## 3005           Same as the national average
## 3006           Same as the national average
## 3007                          Not Available
## 3008           Same as the national average
## 3009             Below the national average
## 3010           Same as the national average
## 3011                          Not Available
## 3012             Below the national average
## 3013                          Not Available
## 3014             Above the national average
## 3015                          Not Available
## 3016           Same as the national average
## 3017             Above the national average
## 3018             Above the national average
## 3019             Above the national average
## 3020                          Not Available
## 3021             Below the national average
## 3022                          Not Available
## 3023           Same as the national average
## 3024             Below the national average
## 3025           Same as the national average
## 3026           Same as the national average
## 3027                          Not Available
## 3028             Above the national average
## 3029           Same as the national average
## 3030             Above the national average
## 3031             Above the national average
## 3032             Below the national average
## 3033             Below the national average
## 3034           Same as the national average
## 3035             Above the national average
## 3036             Below the national average
## 3037                          Not Available
## 3038           Same as the national average
## 3039             Above the national average
## 3040           Same as the national average
## 3041           Same as the national average
## 3042           Same as the national average
## 3043                          Not Available
## 3044             Below the national average
## 3045                          Not Available
## 3046                          Not Available
## 3047           Same as the national average
## 3048           Same as the national average
## 3049                          Not Available
## 3050           Same as the national average
## 3051             Below the national average
## 3052             Above the national average
## 3053           Same as the national average
## 3054             Below the national average
## 3055             Above the national average
## 3056           Same as the national average
## 3057                          Not Available
## 3058             Above the national average
## 3059             Below the national average
## 3060                          Not Available
## 3061                          Not Available
## 3062                          Not Available
## 3063             Above the national average
## 3064           Same as the national average
## 3065             Below the national average
## 3066           Same as the national average
## 3067           Same as the national average
## 3068                          Not Available
## 3069             Above the national average
## 3070           Same as the national average
## 3071           Same as the national average
## 3072             Above the national average
## 3073           Same as the national average
## 3074             Below the national average
## 3075           Same as the national average
## 3076             Above the national average
## 3077                          Not Available
## 3078             Below the national average
## 3079           Same as the national average
## 3080             Below the national average
## 3081             Above the national average
## 3082                          Not Available
## 3083                          Not Available
## 3084                          Not Available
## 3085             Above the national average
## 3086           Same as the national average
## 3087           Same as the national average
## 3088                          Not Available
## 3089                          Not Available
## 3090           Same as the national average
## 3091           Same as the national average
## 3092           Same as the national average
## 3093           Same as the national average
## 3094                          Not Available
## 3095             Above the national average
## 3096             Above the national average
## 3097             Above the national average
## 3098             Below the national average
## 3099           Same as the national average
## 3100           Same as the national average
## 3101             Above the national average
## 3102             Below the national average
## 3103                          Not Available
## 3104             Below the national average
## 3105             Above the national average
## 3106             Below the national average
## 3107                          Not Available
## 3108             Above the national average
## 3109             Below the national average
## 3110                          Not Available
## 3111             Above the national average
## 3112                          Not Available
## 3113             Below the national average
## 3114             Above the national average
## 3115                          Not Available
## 3116                          Not Available
## 3117                          Not Available
## 3118             Below the national average
## 3119                          Not Available
## 3120             Above the national average
## 3121           Same as the national average
## 3122             Above the national average
## 3123                          Not Available
## 3124             Above the national average
## 3125           Same as the national average
## 3126           Same as the national average
## 3127             Above the national average
## 3128             Below the national average
## 3129                          Not Available
## 3130                          Not Available
## 3131                          Not Available
## 3132           Same as the national average
## 3133             Above the national average
## 3134                          Not Available
## 3135                          Not Available
## 3136             Below the national average
## 3137                          Not Available
## 3138                          Not Available
## 3139                          Not Available
## 3140           Same as the national average
## 3141             Above the national average
## 3142           Same as the national average
## 3143             Above the national average
## 3144                          Not Available
## 3145           Same as the national average
## 3146             Above the national average
## 3147             Above the national average
## 3148           Same as the national average
## 3149             Above the national average
## 3150             Above the national average
## 3151           Same as the national average
## 3152           Same as the national average
## 3153             Below the national average
## 3154             Below the national average
## 3155                          Not Available
## 3156             Below the national average
## 3157             Below the national average
## 3158             Below the national average
## 3159             Below the national average
## 3160             Below the national average
## 3161             Below the national average
## 3162           Same as the national average
## 3163             Above the national average
## 3164                          Not Available
## 3165                          Not Available
## 3166             Above the national average
## 3167           Same as the national average
## 3168             Below the national average
## 3169             Below the national average
## 3170           Same as the national average
## 3171             Below the national average
## 3172                          Not Available
## 3173           Same as the national average
## 3174             Below the national average
## 3175             Above the national average
## 3176             Below the national average
## 3177             Below the national average
## 3178           Same as the national average
## 3179                          Not Available
## 3180           Same as the national average
## 3181             Below the national average
## 3182             Below the national average
## 3183                          Not Available
## 3184             Below the national average
## 3185             Below the national average
## 3186             Above the national average
## 3187             Below the national average
## 3188             Above the national average
## 3189                          Not Available
## 3190             Above the national average
## 3191                          Not Available
## 3192             Above the national average
## 3193             Below the national average
## 3194             Below the national average
## 3195                          Not Available
## 3196             Above the national average
## 3197             Above the national average
## 3198             Below the national average
## 3199             Above the national average
## 3200           Same as the national average
## 3201                          Not Available
## 3202           Same as the national average
## 3203           Same as the national average
## 3204             Above the national average
## 3205             Below the national average
## 3206             Above the national average
## 3207                          Not Available
## 3208                          Not Available
## 3209             Below the national average
## 3210             Below the national average
## 3211             Below the national average
## 3212             Above the national average
## 3213                          Not Available
## 3214                          Not Available
## 3215           Same as the national average
## 3216                          Not Available
## 3217           Same as the national average
## 3218           Same as the national average
## 3219             Below the national average
## 3220           Same as the national average
## 3221                          Not Available
## 3222             Below the national average
## 3223           Same as the national average
## 3224             Above the national average
## 3225                          Not Available
## 3226             Below the national average
## 3227           Same as the national average
## 3228           Same as the national average
## 3229           Same as the national average
## 3230             Below the national average
## 3231           Same as the national average
## 3232                          Not Available
## 3233                          Not Available
## 3234             Above the national average
## 3235             Above the national average
## 3236             Above the national average
## 3237                          Not Available
## 3238             Above the national average
## 3239                          Not Available
## 3240                          Not Available
## 3241             Below the national average
## 3242             Above the national average
## 3243           Same as the national average
## 3244             Above the national average
## 3245                          Not Available
## 3246             Below the national average
## 3247           Same as the national average
## 3248                          Not Available
## 3249           Same as the national average
## 3250                          Not Available
## 3251                          Not Available
## 3252           Same as the national average
## 3253             Above the national average
## 3254           Same as the national average
## 3255             Above the national average
## 3256             Above the national average
## 3257                          Not Available
## 3258           Same as the national average
## 3259                          Not Available
## 3260             Above the national average
## 3261             Above the national average
## 3262             Below the national average
## 3263                          Not Available
## 3264                          Not Available
## 3265                          Not Available
## 3266           Same as the national average
## 3267           Same as the national average
## 3268                          Not Available
## 3269             Below the national average
## 3270                          Not Available
## 3271             Below the national average
## 3272                          Not Available
## 3273           Same as the national average
## 3274                          Not Available
## 3275                          Not Available
## 3276                          Not Available
## 3277             Above the national average
## 3278                          Not Available
## 3279                          Not Available
## 3280             Above the national average
## 3281             Below the national average
## 3282             Above the national average
## 3283           Same as the national average
## 3284             Above the national average
## 3285             Below the national average
## 3286                          Not Available
## 3287                          Not Available
## 3288             Below the national average
## 3289           Same as the national average
## 3290           Same as the national average
## 3291           Same as the national average
## 3292                          Not Available
## 3293           Same as the national average
## 3294             Below the national average
## 3295             Above the national average
## 3296                          Not Available
## 3297                          Not Available
## 3298             Below the national average
## 3299             Below the national average
## 3300             Below the national average
## 3301             Below the national average
## 3302           Same as the national average
## 3303                          Not Available
## 3304           Same as the national average
## 3305             Above the national average
## 3306                          Not Available
## 3307             Below the national average
## 3308           Same as the national average
## 3309                          Not Available
## 3310             Below the national average
## 3311             Below the national average
## 3312           Same as the national average
## 3313             Below the national average
## 3314             Above the national average
## 3315             Above the national average
## 3316                          Not Available
## 3317                          Not Available
## 3318                          Not Available
## 3319             Above the national average
## 3320             Above the national average
## 3321             Above the national average
## 3322             Above the national average
## 3323             Above the national average
## 3324           Same as the national average
## 3325                          Not Available
## 3326             Above the national average
## 3327             Below the national average
## 3328             Above the national average
## 3329             Above the national average
## 3330             Below the national average
## 3331                          Not Available
## 3332             Above the national average
## 3333             Below the national average
## 3334             Above the national average
## 3335             Below the national average
## 3336           Same as the national average
## 3337             Below the national average
## 3338                          Not Available
## 3339                          Not Available
## 3340           Same as the national average
## 3341             Below the national average
## 3342             Below the national average
## 3343             Below the national average
## 3344           Same as the national average
## 3345                          Not Available
## 3346           Same as the national average
## 3347             Above the national average
## 3348                          Not Available
## 3349             Below the national average
## 3350           Same as the national average
## 3351                          Not Available
## 3352           Same as the national average
## 3353             Above the national average
## 3354                          Not Available
## 3355                          Not Available
## 3356                          Not Available
## 3357             Below the national average
## 3358           Same as the national average
## 3359             Above the national average
## 3360                          Not Available
## 3361             Below the national average
## 3362             Above the national average
## 3363           Same as the national average
## 3364             Below the national average
## 3365           Same as the national average
## 3366                          Not Available
## 3367           Same as the national average
## 3368                          Not Available
## 3369           Same as the national average
## 3370                          Not Available
## 3371           Same as the national average
## 3372                          Not Available
## 3373           Same as the national average
## 3374                          Not Available
## 3375             Above the national average
## 3376                          Not Available
## 3377             Above the national average
## 3378                          Not Available
## 3379             Above the national average
## 3380             Below the national average
## 3381                          Not Available
## 3382                          Not Available
## 3383                          Not Available
## 3384                          Not Available
## 3385           Same as the national average
## 3386             Above the national average
## 3387                          Not Available
## 3388             Above the national average
## 3389           Same as the national average
## 3390                          Not Available
## 3391           Same as the national average
## 3392             Above the national average
## 3393                          Not Available
## 3394             Below the national average
## 3395                          Not Available
## 3396                          Not Available
## 3397             Above the national average
## 3398                          Not Available
## 3399             Below the national average
## 3400             Below the national average
## 3401                          Not Available
## 3402                          Not Available
## 3403                          Not Available
## 3404             Above the national average
## 3405                          Not Available
## 3406             Above the national average
## 3407             Above the national average
## 3408             Above the national average
## 3409                          Not Available
## 3410           Same as the national average
## 3411                          Not Available
## 3412                          Not Available
## 3413           Same as the national average
## 3414                          Not Available
## 3415           Same as the national average
## 3416                          Not Available
## 3417             Below the national average
## 3418                          Not Available
## 3419           Same as the national average
## 3420             Below the national average
## 3421             Above the national average
## 3422           Same as the national average
## 3423                          Not Available
## 3424             Below the national average
## 3425                          Not Available
## 3426                          Not Available
## 3427             Above the national average
## 3428                          Not Available
## 3429             Below the national average
## 3430             Above the national average
## 3431             Below the national average
## 3432             Above the national average
## 3433             Above the national average
## 3434           Same as the national average
## 3435                          Not Available
## 3436           Same as the national average
## 3437             Below the national average
## 3438             Below the national average
## 3439             Below the national average
## 3440           Same as the national average
## 3441                          Not Available
## 3442             Above the national average
## 3443                          Not Available
## 3444             Below the national average
## 3445             Above the national average
## 3446                          Not Available
## 3447                          Not Available
## 3448                          Not Available
##      Patient_experience_national_comparison_footnote
## 1                                                 16
## 2                                                 19
## 3                                                 19
## 4                                                   
## 5                                                 19
## 6                                                   
## 7                                                 19
## 8                                                 16
## 9                                                 19
## 10                                                19
## 11                                                19
## 12                                                  
## 13                                                19
## 14                                                19
## 15                                                  
## 16                                                19
## 17                                                16
## 18                                                16
## 19                                                19
## 20                                                19
## 21                                                 5
## 22                                                16
## 23                                                 5
## 24                                                19
## 25                                                16
## 26                                                16
## 27                                                19
## 28                                                16
## 29                                                19
## 30                                                16
## 31                                                16
## 32                                                19
## 33                                                19
## 34                                                19
## 35                                                16
## 36                                                19
## 37                                                19
## 38                                                16
## 39                                                  
## 40                                                19
## 41                                                19
## 42                                                 5
## 43                                                  
## 44                                                16
## 45                                                19
## 46                                                19
## 47                                                16
## 48                                                19
## 49                                                16
## 50                                                19
## 51                                                19
## 52                                                19
## 53                                                19
## 54                                                19
## 55                                                19
## 56                                                16
## 57                                                  
## 58                                                16
## 59                                                  
## 60                                                  
## 61                                                19
## 62                                                16
## 63                                                19
## 64                                                  
## 65                                                  
## 66                                                16
## 67                                                  
## 68                                                16
## 69                                                  
## 70                                                  
## 71                                                  
## 72                                                  
## 73                                                  
## 74                                                16
## 75                                                16
## 76                                                  
## 77                                                16
## 78                                                  
## 79                                                  
## 80                                                  
## 81                                                19
## 82                                                16
## 83                                                19
## 84                                                  
## 85                                                19
## 86                                                16
## 87                                                  
## 88                                                19
## 89                                                  
## 90                                                  
## 91                                                  
## 92                                                  
## 93                                                  
## 94                                                  
## 95                                                16
## 96                                                 5
## 97                                                  
## 98                                                16
## 99                                                  
## 100                                                 
## 101                                               16
## 102                                                 
## 103                                                 
## 104                                                 
## 105                                                 
## 106                                                 
## 107                                                 
## 108                                                 
## 109                                                 
## 110                                                 
## 111                                                 
## 112                                                 
## 113                                                 
## 114                                                 
## 115                                                 
## 116                                               19
## 117                                               19
## 118                                                 
## 119                                                5
## 120                                               16
## 121                                               16
## 122                                               19
## 123                                                 
## 124                                                 
## 125                                               16
## 126                                               16
## 127                                                 
## 128                                                 
## 129                                               19
## 130                                                 
## 131                                                 
## 132                                               16
## 133                                                 
## 134                                                 
## 135                                               16
## 136                                                 
## 137                                               16
## 138                                               19
## 139                                                 
## 140                                                 
## 141                                               16
## 142                                               19
## 143                                               19
## 144                                                 
## 145                                                 
## 146                                               16
## 147                                                 
## 148                                                 
## 149                                               16
## 150                                                 
## 151                                                 
## 152                                               16
## 153                                                 
## 154                                                 
## 155                                                 
## 156                                                 
## 157                                               16
## 158                                                 
## 159                                                 
## 160                                                 
## 161                                               19
## 162                                                 
## 163                                                 
## 164                                                 
## 165                                                 
## 166                                               19
## 167                                                 
## 168                                                 
## 169                                                5
## 170                                                 
## 171                                               19
## 172                                                 
## 173                                               16
## 174                                                 
## 175                                               16
## 176                                                 
## 177                                                 
## 178                                                 
## 179                                                 
## 180                                                 
## 181                                               16
## 182                                                 
## 183                                                 
## 184                                               19
## 185                                                 
## 186                                                 
## 187                                                 
## 188                                                 
## 189                                                 
## 190                                                 
## 191                                                 
## 192                                                 
## 193                                               19
## 194                                                 
## 195                                               19
## 196                                                 
## 197                                                5
## 198                                                 
## 199                                                 
## 200                                               16
## 201                                               19
## 202                                                 
## 203                                               19
## 204                                                 
## 205                                               16
## 206                                               16
## 207                                               16
## 208                                                 
## 209                                                 
## 210                                                 
## 211                                               19
## 212                                               16
## 213                                               16
## 214                                                 
## 215                                               16
## 216                                                 
## 217                                                 
## 218                                                 
## 219                                               16
## 220                                               16
## 221                                                 
## 222                                               16
## 223                                                 
## 224                                               16
## 225                                                 
## 226                                               16
## 227                                               16
## 228                                                 
## 229                                                 
## 230                                               16
## 231                                               16
## 232                                                 
## 233                                               16
## 234                                                 
## 235                                                 
## 236                                                 
## 237                                                 
## 238                                                 
## 239                                                 
## 240                                                 
## 241                                                 
## 242                                                 
## 243                                                 
## 244                                                 
## 245                                                 
## 246                                                 
## 247                                                 
## 248                                               16
## 249                                               19
## 250                                               16
## 251                                                 
## 252                                               19
## 253                                                 
## 254                                               16
## 255                                                 
## 256                                                 
## 257                                                 
## 258                                                 
## 259                                                 
## 260                                                 
## 261                                               19
## 262                                                5
## 263                                                 
## 264                                               16
## 265                                                 
## 266                                               16
## 267                                                 
## 268                                               19
## 269                                                 
## 270                                                 
## 271                                                 
## 272                                                 
## 273                                               16
## 274                                               16
## 275                                               16
## 276                                                 
## 277                                                 
## 278                                               16
## 279                                                 
## 280                                                 
## 281                                                 
## 282                                                 
## 283                                                 
## 284                                               16
## 285                                               16
## 286                                               16
## 287                                               19
## 288                                                 
## 289                                                 
## 290                                                 
## 291                                               16
## 292                                                 
## 293                                                 
## 294                                               19
## 295                                               16
## 296                                               19
## 297                                                 
## 298                                                 
## 299                                               19
## 300                                               16
## 301                                               19
## 302                                               16
## 303                                                 
## 304                                               19
## 305                                               19
## 306                                               19
## 307                                                 
## 308                                                 
## 309                                               19
## 310                                               16
## 311                                                 
## 312                                                 
## 313                                                 
## 314                                                 
## 315                                               16
## 316                                                 
## 317                                                 
## 318                                                 
## 319                                               16
## 320                                                 
## 321                                                 
## 322                                                 
## 323                                                 
## 324                                               19
## 325                                                 
## 326                                               16
## 327                                                 
## 328                                               16
## 329                                                 
## 330                                               19
## 331                                                 
## 332                                                 
## 333                                                 
## 334                                                 
## 335                                                 
## 336                                               19
## 337                                                 
## 338                                               19
## 339                                                 
## 340                                                 
## 341                                                 
## 342                                               16
## 343                                                 
## 344                                               19
## 345                                                 
## 346                                                 
## 347                                               19
## 348                                                 
## 349                                                 
## 350                                                 
## 351                                               16
## 352                                                 
## 353                                               16
## 354                                                 
## 355                                                 
## 356                                                 
## 357                                                 
## 358                                                 
## 359                                                 
## 360                                               19
## 361                                                 
## 362                                                 
## 363                                                 
## 364                                                 
## 365                                                 
## 366                                                 
## 367                                                 
## 368                                                 
## 369                                                 
## 370                                                 
## 371                                                 
## 372                                                 
## 373                                                 
## 374                                                 
## 375                                               19
## 376                                                 
## 377                                               16
## 378                                                 
## 379                                               16
## 380                                                 
## 381                                                 
## 382                                               19
## 383                                                 
## 384                                               19
## 385                                               19
## 386                                                 
## 387                                                 
## 388                                                 
## 389                                                 
## 390                                                 
## 391                                                 
## 392                                                 
## 393                                               16
## 394                                                 
## 395                                                 
## 396                                                 
## 397                                               16
## 398                                                 
## 399                                                 
## 400                                                 
## 401                                               19
## 402                                                 
## 403                                               16
## 404                                                 
## 405                                               19
## 406                                                 
## 407                                               19
## 408                                               16
## 409                                               16
## 410                                                 
## 411                                                 
## 412                                                 
## 413                                                 
## 414                                                 
## 415                                               16
## 416                                                 
## 417                                               19
## 418                                               19
## 419                                                 
## 420                                               16
## 421                                               19
## 422                                                 
## 423                                                 
## 424                                               19
## 425                                                 
## 426                                                 
## 427                                               16
## 428                                                 
## 429                                               16
## 430                                                 
## 431                                                 
## 432                                                 
## 433                                                 
## 434                                                 
## 435                                               16
## 436                                                 
## 437                                                 
## 438                                                 
## 439                                                 
## 440                                               19
## 441                                                 
## 442                                               16
## 443                                                 
## 444                                                 
## 445                                                 
## 446                                                 
## 447                                                 
## 448                                               19
## 449                                                 
## 450                                                 
## 451                                               19
## 452                                               16
## 453                                               16
## 454                                                 
## 455                                                 
## 456                                                 
## 457                                               16
## 458                                                 
## 459                                                 
## 460                                                 
## 461                                                 
## 462                                                 
## 463                                               16
## 464                                                 
## 465                                                 
## 466                                                 
## 467                                                 
## 468                                                 
## 469                                                 
## 470                                                 
## 471                                                 
## 472                                               16
## 473                                                 
## 474                                                 
## 475                                               19
## 476                                               16
## 477                                                 
## 478                                                 
## 479                                                 
## 480                                                 
## 481                                                 
## 482                                                 
## 483                                                 
## 484                                               16
## 485                                                 
## 486                                               19
## 487                                               16
## 488                                                 
## 489                                                 
## 490                                                 
## 491                                                 
## 492                                                 
## 493                                                 
## 494                                                 
## 495                                                 
## 496                                                 
## 497                                                 
## 498                                                 
## 499                                               16
## 500                                               16
## 501                                               16
## 502                                               19
## 503                                                 
## 504                                                 
## 505                                               16
## 506                                               19
## 507                                               19
## 508                                               16
## 509                                               19
## 510                                                 
## 511                                               16
## 512                                                 
## 513                                                 
## 514                                                 
## 515                                               16
## 516                                               16
## 517                                               19
## 518                                                 
## 519                                                 
## 520                                                 
## 521                                                 
## 522                                               16
## 523                                                 
## 524                                                 
## 525                                                 
## 526                                                 
## 527                                                 
## 528                                               19
## 529                                                 
## 530                                                 
## 531                                               16
## 532                                               16
## 533                                                 
## 534                                                 
## 535                                               16
## 536                                                 
## 537                                                 
## 538                                                 
## 539                                                 
## 540                                               16
## 541                                                 
## 542                                               16
## 543                                               19
## 544                                               16
## 545                                                 
## 546                                                 
## 547                                                 
## 548                                               16
## 549                                                 
## 550                                                 
## 551                                                 
## 552                                                 
## 553                                               19
## 554                                               16
## 555                                                 
## 556                                                 
## 557                                                 
## 558                                                 
## 559                                                 
## 560                                                 
## 561                                                 
## 562                                                 
## 563                                               16
## 564                                                 
## 565                                                 
## 566                                                 
## 567                                               16
## 568                                                 
## 569                                               16
## 570                                               16
## 571                                                 
## 572                                                 
## 573                                                 
## 574                                                 
## 575                                               19
## 576                                                 
## 577                                                 
## 578                                                 
## 579                                               19
## 580                                                 
## 581                                               19
## 582                                                 
## 583                                                 
## 584                                                 
## 585                                                 
## 586                                               16
## 587                                                 
## 588                                                 
## 589                                               19
## 590                                               16
## 591                                                 
## 592                                                5
## 593                                               16
## 594                                               19
## 595                                                 
## 596                                                 
## 597                                                 
## 598                                               19
## 599                                               16
## 600                                                 
## 601                                               16
## 602                                                 
## 603                                                 
## 604                                                 
## 605                                               19
## 606                                                 
## 607                                               16
## 608                                                 
## 609                                               19
## 610                                               16
## 611                                               19
## 612                                               16
## 613                                                 
## 614                                                 
## 615                                                 
## 616                                                 
## 617                                               19
## 618                                                 
## 619                                                 
## 620                                                 
## 621                                               16
## 622                                                 
## 623                                               19
## 624                                               16
## 625                                                 
## 626                                                 
## 627                                                 
## 628                                                 
## 629                                                 
## 630                                                 
## 631                                               16
## 632                                                 
## 633                                                 
## 634                                                 
## 635                                                 
## 636                                               16
## 637                                               16
## 638                                               19
## 639                                                 
## 640                                                 
## 641                                               16
## 642                                               16
## 643                                                 
## 644                                                 
## 645                                               16
## 646                                               19
## 647                                               16
## 648                                                 
## 649                                               16
## 650                                                 
## 651                                               19
## 652                                                 
## 653                                                 
## 654                                                 
## 655                                                 
## 656                                                 
## 657                                                 
## 658                                                 
## 659                                               16
## 660                                                 
## 661                                                 
## 662                                                 
## 663                                                 
## 664                                               16
## 665                                               16
## 666                                               16
## 667                                                 
## 668                                               19
## 669                                               16
## 670                                                 
## 671                                                 
## 672                                               16
## 673                                                 
## 674                                                 
## 675                                                 
## 676                                                 
## 677                                                 
## 678                                                 
## 679                                               16
## 680                                               16
## 681                                                 
## 682                                                 
## 683                                               16
## 684                                               16
## 685                                                 
## 686                                                 
## 687                                                 
## 688                                               19
## 689                                                 
## 690                                                 
## 691                                                 
## 692                                                 
## 693                                                 
## 694                                                 
## 695                                                 
## 696                                                 
## 697                                                 
## 698                                               16
## 699                                                 
## 700                                               16
## 701                                                 
## 702                                               19
## 703                                               16
## 704                                                 
## 705                                                 
## 706                                               19
## 707                                                 
## 708                                                 
## 709                                                 
## 710                                               16
## 711                                               16
## 712                                                 
## 713                                               16
## 714                                               16
## 715                                                 
## 716                                                 
## 717                                               16
## 718                                                 
## 719                                                 
## 720                                                 
## 721                                                 
## 722                                               16
## 723                                                 
## 724                                                 
## 725                                                 
## 726                                               16
## 727                                                 
## 728                                                 
## 729                                                 
## 730                                                 
## 731                                                 
## 732                                                 
## 733                                                 
## 734                                               19
## 735                                               16
## 736                                                 
## 737                                                 
## 738                                                 
## 739                                                 
## 740                                               19
## 741                                               19
## 742                                                 
## 743                                                 
## 744                                                 
## 745                                               19
## 746                                                 
## 747                                                 
## 748                                                 
## 749                                               19
## 750                                               16
## 751                                               19
## 752                                                 
## 753                                                 
## 754                                                 
## 755                                                 
## 756                                                 
## 757                                                 
## 758                                                 
## 759                                               19
## 760                                                 
## 761                                               16
## 762                                                 
## 763                                               19
## 764                                               16
## 765                                                 
## 766                                               16
## 767                                                 
## 768                                               19
## 769                                               16
## 770                                                 
## 771                                               19
## 772                                                 
## 773                                                 
## 774                                                 
## 775                                                 
## 776                                                 
## 777                                                 
## 778                                                 
## 779                                                 
## 780                                                 
## 781                                               16
## 782                                                 
## 783                                               19
## 784                                                 
## 785                                                 
## 786                                                 
## 787                                                 
## 788                                                 
## 789                                                 
## 790                                               16
## 791                                                 
## 792                                               16
## 793                                               19
## 794                                                 
## 795                                                 
## 796                                                 
## 797                                                 
## 798                                               19
## 799                                                 
## 800                                                 
## 801                                                 
## 802                                                 
## 803                                               19
## 804                                                 
## 805                                                 
## 806                                               16
## 807                                               19
## 808                                                 
## 809                                                 
## 810                                               16
## 811                                                 
## 812                                                 
## 813                                               16
## 814                                                 
## 815                                                 
## 816                                                5
## 817                                               19
## 818                                                 
## 819                                                 
## 820                                                 
## 821                                                 
## 822                                               16
## 823                                               16
## 824                                                 
## 825                                               16
## 826                                                 
## 827                                                 
## 828                                                 
## 829                                                 
## 830                                                 
## 831                                                 
## 832                                               16
## 833                                                 
## 834                                                 
## 835                                               16
## 836                                                 
## 837                                               19
## 838                                                 
## 839                                                 
## 840                                                 
## 841                                                 
## 842                                               19
## 843                                               16
## 844                                                 
## 845                                               16
## 846                                                 
## 847                                                 
## 848                                               16
## 849                                               19
## 850                                                 
## 851                                                 
## 852                                                 
## 853                                                5
## 854                                                 
## 855                                                 
## 856                                                 
## 857                                               16
## 858                                                 
## 859                                               16
## 860                                                 
## 861                                                 
## 862                                               16
## 863                                                 
## 864                                               19
## 865                                               19
## 866                                                 
## 867                                                 
## 868                                                 
## 869                                                 
## 870                                                 
## 871                                                 
## 872                                                 
## 873                                                 
## 874                                                 
## 875                                                 
## 876                                                 
## 877                                               19
## 878                                               16
## 879                                                 
## 880                                                 
## 881                                                 
## 882                                               19
## 883                                                 
## 884                                                 
## 885                                                 
## 886                                                 
## 887                                                 
## 888                                                 
## 889                                                 
## 890                                               16
## 891                                                 
## 892                                                 
## 893                                                 
## 894                                                 
## 895                                                 
## 896                                                 
## 897                                                 
## 898                                               19
## 899                                                 
## 900                                               19
## 901                                                 
## 902                                                 
## 903                                                5
## 904                                                 
## 905                                                 
## 906                                                 
## 907                                                 
## 908                                               16
## 909                                               19
## 910                                               16
## 911                                                 
## 912                                               16
## 913                                                 
## 914                                               19
## 915                                               16
## 916                                               16
## 917                                               19
## 918                                                 
## 919                                                 
## 920                                               19
## 921                                               16
## 922                                                 
## 923                                                 
## 924                                                 
## 925                                                 
## 926                                                 
## 927                                                 
## 928                                                 
## 929                                               16
## 930                                                 
## 931                                               16
## 932                                               19
## 933                                               19
## 934                                                 
## 935                                                 
## 936                                               19
## 937                                                 
## 938                                               19
## 939                                                 
## 940                                                 
## 941                                                 
## 942                                                 
## 943                                               19
## 944                                                 
## 945                                                 
## 946                                                 
## 947                                               16
## 948                                               16
## 949                                               19
## 950                                                 
## 951                                                 
## 952                                               16
## 953                                               16
## 954                                                 
## 955                                                 
## 956                                                 
## 957                                                 
## 958                                               16
## 959                                                 
## 960                                                 
## 961                                                 
## 962                                                 
## 963                                               16
## 964                                                5
## 965                                                 
## 966                                                 
## 967                                                 
## 968                                                 
## 969                                                 
## 970                                                 
## 971                                                 
## 972                                                 
## 973                                               19
## 974                                                 
## 975                                               16
## 976                                               16
## 977                                                 
## 978                                                 
## 979                                               16
## 980                                               19
## 981                                                 
## 982                                                 
## 983                                                 
## 984                                                 
## 985                                                 
## 986                                               19
## 987                                                 
## 988                                                 
## 989                                               16
## 990                                                 
## 991                                                 
## 992                                                 
## 993                                                 
## 994                                                 
## 995                                                 
## 996                                                 
## 997                                               19
## 998                                                 
## 999                                                 
## 1000                                              19
## 1001                                              19
## 1002                                              16
## 1003                                                
## 1004                                              16
## 1005                                              16
## 1006                                                
## 1007                                                
## 1008                                                
## 1009                                              19
## 1010                                                
## 1011                                              19
## 1012                                              19
## 1013                                                
## 1014                                                
## 1015                                              16
## 1016                                                
## 1017                                                
## 1018                                               5
## 1019                                              16
## 1020                                                
## 1021                                                
## 1022                                                
## 1023                                                
## 1024                                                
## 1025                                              19
## 1026                                                
## 1027                                              19
## 1028                                                
## 1029                                              16
## 1030                                                
## 1031                                              16
## 1032                                                
## 1033                                                
## 1034                                                
## 1035                                              16
## 1036                                                
## 1037                                              16
## 1038                                              16
## 1039                                              16
## 1040                                                
## 1041                                              16
## 1042                                                
## 1043                                                
## 1044                                              16
## 1045                                                
## 1046                                                
## 1047                                                
## 1048                                              19
## 1049                                              16
## 1050                                              19
## 1051                                              19
## 1052                                              16
## 1053                                                
## 1054                                                
## 1055                                                
## 1056                                                
## 1057                                                
## 1058                                                
## 1059                                                
## 1060                                              16
## 1061                                              16
## 1062                                                
## 1063                                                
## 1064                                                
## 1065                                                
## 1066                                                
## 1067                                                
## 1068                                              16
## 1069                                                
## 1070                                                
## 1071                                                
## 1072                                              19
## 1073                                              16
## 1074                                              19
## 1075                                              16
## 1076                                              16
## 1077                                                
## 1078                                                
## 1079                                                
## 1080                                              16
## 1081                                                
## 1082                                                
## 1083                                                
## 1084                                                
## 1085                                                
## 1086                                                
## 1087                                              16
## 1088                                                
## 1089                                                
## 1090                                              19
## 1091                                                
## 1092                                                
## 1093                                                
## 1094                                                
## 1095                                              19
## 1096                                              16
## 1097                                                
## 1098                                                
## 1099                                                
## 1100                                              16
## 1101                                                
## 1102                                                
## 1103                                              19
## 1104                                                
## 1105                                                
## 1106                                              16
## 1107                                              19
## 1108                                                
## 1109                                                
## 1110                                                
## 1111                                              16
## 1112                                              19
## 1113                                                
## 1114                                                
## 1115                                                
## 1116                                                
## 1117                                              19
## 1118                                              16
## 1119                                                
## 1120                                              16
## 1121                                                
## 1122                                                
## 1123                                                
## 1124                                              19
## 1125                                                
## 1126                                                
## 1127                                                
## 1128                                                
## 1129                                                
## 1130                                              16
## 1131                                                
## 1132                                                
## 1133                                              16
## 1134                                                
## 1135                                                
## 1136                                                
## 1137                                              19
## 1138                                                
## 1139                                              19
## 1140                                                
## 1141                                              16
## 1142                                                
## 1143                                                
## 1144                                                
## 1145                                              16
## 1146                                              16
## 1147                                              16
## 1148                                              16
## 1149                                              16
## 1150                                              19
## 1151                                                
## 1152                                                
## 1153                                               5
## 1154                                                
## 1155                                                
## 1156                                              16
## 1157                                                
## 1158                                                
## 1159                                                
## 1160                                                
## 1161                                              19
## 1162                                              19
## 1163                                                
## 1164                                                
## 1165                                              16
## 1166                                                
## 1167                                                
## 1168                                              19
## 1169                                              16
## 1170                                                
## 1171                                              16
## 1172                                                
## 1173                                                
## 1174                                                
## 1175                                              16
## 1176                                                
## 1177                                                
## 1178                                              19
## 1179                                                
## 1180                                              16
## 1181                                                
## 1182                                                
## 1183                                                
## 1184                                              19
## 1185                                              19
## 1186                                                
## 1187                                                
## 1188                                              16
## 1189                                                
## 1190                                                
## 1191                                                
## 1192                                                
## 1193                                                
## 1194                                                
## 1195                                                
## 1196                                                
## 1197                                              16
## 1198                                                
## 1199                                              16
## 1200                                              19
## 1201                                              19
## 1202                                              19
## 1203                                                
## 1204                                              16
## 1205                                                
## 1206                                              16
## 1207                                              16
## 1208                                              19
## 1209                                                
## 1210                                                
## 1211                                                
## 1212                                               5
## 1213                                              16
## 1214                                                
## 1215                                                
## 1216                                                
## 1217                                                
## 1218                                                
## 1219                                                
## 1220                                                
## 1221                                              16
## 1222                                                
## 1223                                              16
## 1224                                                
## 1225                                              16
## 1226                                                
## 1227                                                
## 1228                                                
## 1229                                                
## 1230                                              16
## 1231                                                
## 1232                                              16
## 1233                                              16
## 1234                                              16
## 1235                                              16
## 1236                                                
## 1237                                                
## 1238                                                
## 1239                                                
## 1240                                                
## 1241                                               5
## 1242                                              19
## 1243                                                
## 1244                                                
## 1245                                                
## 1246                                                
## 1247                                              16
## 1248                                              19
## 1249                                                
## 1250                                                
## 1251                                              16
## 1252                                               5
## 1253                                                
## 1254                                              16
## 1255                                              16
## 1256                                                
## 1257                                                
## 1258                                                
## 1259                                                
## 1260                                                
## 1261                                              19
## 1262                                              19
## 1263                                                
## 1264                                              19
## 1265                                                
## 1266                                                
## 1267                                              19
## 1268                                                
## 1269                                              16
## 1270                                                
## 1271                                                
## 1272                                              16
## 1273                                                
## 1274                                                
## 1275                                                
## 1276                                              16
## 1277                                                
## 1278                                                
## 1279                                              16
## 1280                                                
## 1281                                                
## 1282                                                
## 1283                                              16
## 1284                                                
## 1285                                                
## 1286                                                
## 1287                                                
## 1288                                              16
## 1289                                                
## 1290                                              16
## 1291                                                
## 1292                                                
## 1293                                              16
## 1294                                              19
## 1295                                                
## 1296                                                
## 1297                                                
## 1298                                                
## 1299                                              16
## 1300                                                
## 1301                                              19
## 1302                                                
## 1303                                              16
## 1304                                                
## 1305                                                
## 1306                                              19
## 1307                                                
## 1308                                                
## 1309                                                
## 1310                                                
## 1311                                                
## 1312                                                
## 1313                                                
## 1314                                                
## 1315                                                
## 1316                                                
## 1317                                                
## 1318                                                
## 1319                                                
## 1320                                                
## 1321                                                
## 1322                                                
## 1323                                              16
## 1324                                                
## 1325                                                
## 1326                                                
## 1327                                              19
## 1328                                                
## 1329                                                
## 1330                                              19
## 1331                                                
## 1332                                                
## 1333                                                
## 1334                                                
## 1335                                                
## 1336                                                
## 1337                                                
## 1338                                              16
## 1339                                                
## 1340                                                
## 1341                                              16
## 1342                                                
## 1343                                              16
## 1344                                              19
## 1345                                                
## 1346                                                
## 1347                                              16
## 1348                                                
## 1349                                              16
## 1350                                                
## 1351                                                
## 1352                                                
## 1353                                              16
## 1354                                              19
## 1355                                                
## 1356                                              19
## 1357                                              19
## 1358                                                
## 1359                                                
## 1360                                                
## 1361                                                
## 1362                                                
## 1363                                                
## 1364                                                
## 1365                                               5
## 1366                                              16
## 1367                                                
## 1368                                                
## 1369                                              16
## 1370                                                
## 1371                                                
## 1372                                                
## 1373                                              16
## 1374                                                
## 1375                                                
## 1376                                                
## 1377                                                
## 1378                                              16
## 1379                                              16
## 1380                                                
## 1381                                              19
## 1382                                                
## 1383                                              16
## 1384                                                
## 1385                                                
## 1386                                                
## 1387                                                
## 1388                                                
## 1389                                                
## 1390                                                
## 1391                                                
## 1392                                                
## 1393                                                
## 1394                                                
## 1395                                                
## 1396                                                
## 1397                                                
## 1398                                                
## 1399                                                
## 1400                                               5
## 1401                                                
## 1402                                                
## 1403                                              16
## 1404                                                
## 1405                                                
## 1406                                              16
## 1407                                                
## 1408                                                
## 1409                                                
## 1410                                                
## 1411                                                
## 1412                                                
## 1413                                                
## 1414                                              16
## 1415                                                
## 1416                                              16
## 1417                                                
## 1418                                                
## 1419                                                
## 1420                                                
## 1421                                              16
## 1422                                                
## 1423                                                
## 1424                                                
## 1425                                                
## 1426                                              16
## 1427                                                
## 1428                                                
## 1429                                                
## 1430                                                
## 1431                                              16
## 1432                                                
## 1433                                              16
## 1434                                                
## 1435                                                
## 1436                                              19
## 1437                                                
## 1438                                                
## 1439                                                
## 1440                                              19
## 1441                                              19
## 1442                                              19
## 1443                                                
## 1444                                                
## 1445                                                
## 1446                                                
## 1447                                                
## 1448                                                
## 1449                                              16
## 1450                                                
## 1451                                                
## 1452                                                
## 1453                                                
## 1454                                                
## 1455                                                
## 1456                                              16
## 1457                                                
## 1458                                              19
## 1459                                              19
## 1460                                               5
## 1461                                              19
## 1462                                              16
## 1463                                              16
## 1464                                                
## 1465                                                
## 1466                                                
## 1467                                              16
## 1468                                                
## 1469                                              19
## 1470                                                
## 1471                                                
## 1472                                                
## 1473                                              16
## 1474                                              16
## 1475                                                
## 1476                                                
## 1477                                                
## 1478                                              16
## 1479                                                
## 1480                                              16
## 1481                                                
## 1482                                              16
## 1483                                                
## 1484                                                
## 1485                                              19
## 1486                                                
## 1487                                              16
## 1488                                                
## 1489                                              19
## 1490                                                
## 1491                                                
## 1492                                                
## 1493                                              16
## 1494                                              16
## 1495                                                
## 1496                                                
## 1497                                                
## 1498                                              19
## 1499                                              16
## 1500                                                
## 1501                                                
## 1502                                                
## 1503                                                
## 1504                                                
## 1505                                                
## 1506                                                
## 1507                                                
## 1508                                                
## 1509                                                
## 1510                                              16
## 1511                                              16
## 1512                                              16
## 1513                                                
## 1514                                              19
## 1515                                                
## 1516                                                
## 1517                                                
## 1518                                                
## 1519                                                
## 1520                                              16
## 1521                                              16
## 1522                                                
## 1523                                              16
## 1524                                                
## 1525                                                
## 1526                                                
## 1527                                              19
## 1528                                                
## 1529                                                
## 1530                                                
## 1531                                                
## 1532                                                
## 1533                                                
## 1534                                                
## 1535                                                
## 1536                                                
## 1537                                                
## 1538                                                
## 1539                                                
## 1540                                                
## 1541                                                
## 1542                                                
## 1543                                                
## 1544                                                
## 1545                                                
## 1546                                                
## 1547                                                
## 1548                                              16
## 1549                                                
## 1550                                              16
## 1551                                              19
## 1552                                                
## 1553                                                
## 1554                                              16
## 1555                                              19
## 1556                                                
## 1557                                                
## 1558                                                
## 1559                                                
## 1560                                                
## 1561                                              19
## 1562                                              16
## 1563                                                
## 1564                                                
## 1565                                                
## 1566                                                
## 1567                                                
## 1568                                              16
## 1569                                                
## 1570                                                
## 1571                                              16
## 1572                                                
## 1573                                                
## 1574                                              16
## 1575                                                
## 1576                                                
## 1577                                              16
## 1578                                                
## 1579                                                
## 1580                                                
## 1581                                              19
## 1582                                                
## 1583                                              16
## 1584                                                
## 1585                                                
## 1586                                                
## 1587                                                
## 1588                                                
## 1589                                                
## 1590                                                
## 1591                                                
## 1592                                              16
## 1593                                                
## 1594                                                
## 1595                                               5
## 1596                                                
## 1597                                                
## 1598                                              16
## 1599                                                
## 1600                                                
## 1601                                                
## 1602                                              19
## 1603                                                
## 1604                                                
## 1605                                              19
## 1606                                                
## 1607                                              19
## 1608                                                
## 1609                                                
## 1610                                              16
## 1611                                                
## 1612                                                
## 1613                                              19
## 1614                                              16
## 1615                                                
## 1616                                                
## 1617                                               5
## 1618                                              19
## 1619                                                
## 1620                                                
## 1621                                                
## 1622                                                
## 1623                                                
## 1624                                              16
## 1625                                                
## 1626                                                
## 1627                                              16
## 1628                                                
## 1629                                              16
## 1630                                                
## 1631                                                
## 1632                                                
## 1633                                                
## 1634                                                
## 1635                                                
## 1636                                              19
## 1637                                                
## 1638                                                
## 1639                                              19
## 1640                                                
## 1641                                              16
## 1642                                              16
## 1643                                              19
## 1644                                                
## 1645                                              16
## 1646                                                
## 1647                                              16
## 1648                                              16
## 1649                                                
## 1650                                                
## 1651                                              16
## 1652                                                
## 1653                                                
## 1654                                              16
## 1655                                                
## 1656                                                
## 1657                                              16
## 1658                                                
## 1659                                                
## 1660                                                
## 1661                                              16
## 1662                                                
## 1663                                                
## 1664                                                
## 1665                                                
## 1666                                                
## 1667                                                
## 1668                                                
## 1669                                               5
## 1670                                              19
## 1671                                              16
## 1672                                              19
## 1673                                                
## 1674                                                
## 1675                                                
## 1676                                                
## 1677                                                
## 1678                                                
## 1679                                              19
## 1680                                                
## 1681                                                
## 1682                                                
## 1683                                              19
## 1684                                                
## 1685                                                
## 1686                                                
## 1687                                              16
## 1688                                                
## 1689                                                
## 1690                                              16
## 1691                                                
## 1692                                                
## 1693                                              16
## 1694                                              16
## 1695                                              19
## 1696                                                
## 1697                                                
## 1698                                                
## 1699                                                
## 1700                                                
## 1701                                                
## 1702                                              16
## 1703                                                
## 1704                                              19
## 1705                                              19
## 1706                                                
## 1707                                                
## 1708                                              16
## 1709                                                
## 1710                                                
## 1711                                                
## 1712                                                
## 1713                                              16
## 1714                                              19
## 1715                                                
## 1716                                                
## 1717                                                
## 1718                                              19
## 1719                                                
## 1720                                                
## 1721                                              16
## 1722                                              16
## 1723                                                
## 1724                                                
## 1725                                              16
## 1726                                                
## 1727                                              16
## 1728                                              19
## 1729                                                
## 1730                                                
## 1731                                                
## 1732                                                
## 1733                                                
## 1734                                                
## 1735                                                
## 1736                                              19
## 1737                                              16
## 1738                                                
## 1739                                              16
## 1740                                                
## 1741                                              19
## 1742                                                
## 1743                                                
## 1744                                                
## 1745                                              16
## 1746                                                
## 1747                                              16
## 1748                                              16
## 1749                                              19
## 1750                                               5
## 1751                                                
## 1752                                                
## 1753                                              16
## 1754                                              19
## 1755                                                
## 1756                                                
## 1757                                                
## 1758                                                
## 1759                                              16
## 1760                                              16
## 1761                                                
## 1762                                                
## 1763                                              16
## 1764                                              16
## 1765                                                
## 1766                                               5
## 1767                                                
## 1768                                              16
## 1769                                              16
## 1770                                                
## 1771                                              16
## 1772                                              16
## 1773                                              16
## 1774                                                
## 1775                                                
## 1776                                                
## 1777                                                
## 1778                                              19
## 1779                                              19
## 1780                                              16
## 1781                                              16
## 1782                                                
## 1783                                                
## 1784                                                
## 1785                                              16
## 1786                                                
## 1787                                              16
## 1788                                                
## 1789                                              16
## 1790                                                
## 1791                                                
## 1792                                              16
## 1793                                                
## 1794                                                
## 1795                                              16
## 1796                                                
## 1797                                                
## 1798                                                
## 1799                                                
## 1800                                                
## 1801                                                
## 1802                                                
## 1803                                              16
## 1804                                                
## 1805                                              16
## 1806                                               5
## 1807                                              16
## 1808                                              16
## 1809                                              16
## 1810                                                
## 1811                                              16
## 1812                                                
## 1813                                              16
## 1814                                              19
## 1815                                                
## 1816                                              19
## 1817                                                
## 1818                                              19
## 1819                                                
## 1820                                                
## 1821                                                
## 1822                                                
## 1823                                              19
## 1824                                                
## 1825                                                
## 1826                                              16
## 1827                                              16
## 1828                                                
## 1829                                              16
## 1830                                                
## 1831                                                
## 1832                                                
## 1833                                                
## 1834                                                
## 1835                                              16
## 1836                                                
## 1837                                                
## 1838                                                
## 1839                                                
## 1840                                              19
## 1841                                                
## 1842                                              16
## 1843                                                
## 1844                                                
## 1845                                                
## 1846                                                
## 1847                                              16
## 1848                                                
## 1849                                              19
## 1850                                                
## 1851                                              16
## 1852                                                
## 1853                                                
## 1854                                                
## 1855                                                
## 1856                                              16
## 1857                                                
## 1858                                                
## 1859                                              19
## 1860                                                
## 1861                                                
## 1862                                                
## 1863                                                
## 1864                                                
## 1865                                                
## 1866                                              16
## 1867                                                
## 1868                                                
## 1869                                                
## 1870                                                
## 1871                                                
## 1872                                                
## 1873                                                
## 1874                                              16
## 1875                                                
## 1876                                              16
## 1877                                              16
## 1878                                                
## 1879                                              19
## 1880                                                
## 1881                                                
## 1882                                              16
## 1883                                                
## 1884                                                
## 1885                                                
## 1886                                                
## 1887                                              16
## 1888                                              16
## 1889                                                
## 1890                                                
## 1891                                                
## 1892                                              16
## 1893                                                
## 1894                                                
## 1895                                                
## 1896                                              19
## 1897                                              16
## 1898                                                
## 1899                                              16
## 1900                                                
## 1901                                                
## 1902                                                
## 1903                                                
## 1904                                                
## 1905                                              19
## 1906                                              16
## 1907                                                
## 1908                                                
## 1909                                                
## 1910                                                
## 1911                                              16
## 1912                                              16
## 1913                                                
## 1914                                                
## 1915                                              16
## 1916                                              16
## 1917                                                
## 1918                                                
## 1919                                              16
## 1920                                              19
## 1921                                                
## 1922                                              16
## 1923                                                
## 1924                                              19
## 1925                                                
## 1926                                                
## 1927                                                
## 1928                                                
## 1929                                                
## 1930                                                
## 1931                                                
## 1932                                                
## 1933                                                
## 1934                                                
## 1935                                                
## 1936                                                
## 1937                                              16
## 1938                                              16
## 1939                                                
## 1940                                              19
## 1941                                              19
## 1942                                                
## 1943                                              16
## 1944                                                
## 1945                                                
## 1946                                                
## 1947                                                
## 1948                                              16
## 1949                                                
## 1950                                                
## 1951                                              16
## 1952                                              16
## 1953                                                
## 1954                                                
## 1955                                                
## 1956                                              16
## 1957                                              19
## 1958                                                
## 1959                                              19
## 1960                                                
## 1961                                                
## 1962                                                
## 1963                                              19
## 1964                                                
## 1965                                                
## 1966                                              16
## 1967                                              19
## 1968                                                
## 1969                                              19
## 1970                                              16
## 1971                                              19
## 1972                                                
## 1973                                                
## 1974                                                
## 1975                                                
## 1976                                              19
## 1977                                              16
## 1978                                                
## 1979                                                
## 1980                                                
## 1981                                              16
## 1982                                              16
## 1983                                                
## 1984                                                
## 1985                                                
## 1986                                                
## 1987                                              16
## 1988                                                
## 1989                                              16
## 1990                                                
## 1991                                                
## 1992                                                
## 1993                                                
## 1994                                                
## 1995                                                
## 1996                                                
## 1997                                              16
## 1998                                                
## 1999                                                
## 2000                                                
## 2001                                              16
## 2002                                                
## 2003                                                
## 2004                                                
## 2005                                              16
## 2006                                              19
## 2007                                                
## 2008                                              16
## 2009                                                
## 2010                                                
## 2011                                              19
## 2012                                                
## 2013                                                
## 2014                                                
## 2015                                                
## 2016                                                
## 2017                                                
## 2018                                                
## 2019                                              19
## 2020                                                
## 2021                                              16
## 2022                                                
## 2023                                                
## 2024                                                
## 2025                                                
## 2026                                                
## 2027                                              16
## 2028                                                
## 2029                                                
## 2030                                              16
## 2031                                              16
## 2032                                                
## 2033                                                
## 2034                                              16
## 2035                                                
## 2036                                              19
## 2037                                                
## 2038                                                
## 2039                                                
## 2040                                                
## 2041                                                
## 2042                                                
## 2043                                              16
## 2044                                                
## 2045                                                
## 2046                                                
## 2047                                                
## 2048                                                
## 2049                                              16
## 2050                                              16
## 2051                                                
## 2052                                                
## 2053                                              16
## 2054                                                
## 2055                                                
## 2056                                                
## 2057                                                
## 2058                                                
## 2059                                                
## 2060                                              16
## 2061                                              16
## 2062                                              19
## 2063                                                
## 2064                                                
## 2065                                                
## 2066                                                
## 2067                                              16
## 2068                                                
## 2069                                                
## 2070                                                
## 2071                                              16
## 2072                                                
## 2073                                                
## 2074                                                
## 2075                                              16
## 2076                                              19
## 2077                                                
## 2078                                                
## 2079                                                
## 2080                                              16
## 2081                                                
## 2082                                                
## 2083                                              16
## 2084                                                
## 2085                                                
## 2086                                                
## 2087                                                
## 2088                                              16
## 2089                                                
## 2090                                              19
## 2091                                                
## 2092                                              16
## 2093                                                
## 2094                                              19
## 2095                                                
## 2096                                                
## 2097                                                
## 2098                                              16
## 2099                                                
## 2100                                                
## 2101                                                
## 2102                                                
## 2103                                              16
## 2104                                                
## 2105                                                
## 2106                                                
## 2107                                                
## 2108                                                
## 2109                                              19
## 2110                                              16
## 2111                                              19
## 2112                                                
## 2113                                                
## 2114                                                
## 2115                                                
## 2116                                               5
## 2117                                                
## 2118                                                
## 2119                                                
## 2120                                                
## 2121                                              16
## 2122                                                
## 2123                                                
## 2124                                                
## 2125                                                
## 2126                                              19
## 2127                                              16
## 2128                                                
## 2129                                              16
## 2130                                                
## 2131                                                
## 2132                                              19
## 2133                                                
## 2134                                                
## 2135                                                
## 2136                                                
## 2137                                                
## 2138                                              19
## 2139                                              19
## 2140                                              19
## 2141                                              19
## 2142                                                
## 2143                                                
## 2144                                                
## 2145                                              19
## 2146                                                
## 2147                                              16
## 2148                                                
## 2149                                              16
## 2150                                                
## 2151                                                
## 2152                                              19
## 2153                                                
## 2154                                                
## 2155                                              16
## 2156                                                
## 2157                                              19
## 2158                                                
## 2159                                                
## 2160                                                
## 2161                                                
## 2162                                              19
## 2163                                              16
## 2164                                                
## 2165                                              16
## 2166                                                
## 2167                                               5
## 2168                                                
## 2169                                              19
## 2170                                                
## 2171                                                
## 2172                                                
## 2173                                                
## 2174                                                
## 2175                                                
## 2176                                              19
## 2177                                                
## 2178                                                
## 2179                                                
## 2180                                                
## 2181                                                
## 2182                                              16
## 2183                                                
## 2184                                              19
## 2185                                              19
## 2186                                              16
## 2187                                              16
## 2188                                              16
## 2189                                                
## 2190                                                
## 2191                                                
## 2192                                              16
## 2193                                                
## 2194                                              16
## 2195                                                
## 2196                                              19
## 2197                                                
## 2198                                                
## 2199                                                
## 2200                                              19
## 2201                                                
## 2202                                              16
## 2203                                                
## 2204                                                
## 2205                                                
## 2206                                              19
## 2207                                                
## 2208                                                
## 2209                                                
## 2210                                              19
## 2211                                                
## 2212                                                
## 2213                                              16
## 2214                                                
## 2215                                                
## 2216                                                
## 2217                                                
## 2218                                                
## 2219                                                
## 2220                                                
## 2221                                                
## 2222                                                
## 2223                                                
## 2224                                                
## 2225                                              19
## 2226                                              16
## 2227                                              16
## 2228                                              16
## 2229                                                
## 2230                                                
## 2231                                              16
## 2232                                                
## 2233                                                
## 2234                                              16
## 2235                                              16
## 2236                                              16
## 2237                                              16
## 2238                                              16
## 2239                                                
## 2240                                              16
## 2241                                              19
## 2242                                                
## 2243                                                
## 2244                                                
## 2245                                                
## 2246                                              16
## 2247                                                
## 2248                                                
## 2249                                                
## 2250                                              19
## 2251                                                
## 2252                                                
## 2253                                                
## 2254                                                
## 2255                                              19
## 2256                                              16
## 2257                                                
## 2258                                              16
## 2259                                              19
## 2260                                                
## 2261                                                
## 2262                                                
## 2263                                                
## 2264                                                
## 2265                                                
## 2266                                              19
## 2267                                              19
## 2268                                                
## 2269                                              16
## 2270                                              16
## 2271                                              16
## 2272                                                
## 2273                                                
## 2274                                                
## 2275                                              19
## 2276                                                
## 2277                                                
## 2278                                                
## 2279                                              16
## 2280                                                
## 2281                                              16
## 2282                                                
## 2283                                                
## 2284                                              16
## 2285                                                
## 2286                                                
## 2287                                              19
## 2288                                              16
## 2289                                                
## 2290                                                
## 2291                                                
## 2292                                              16
## 2293                                              16
## 2294                                                
## 2295                                              16
## 2296                                              16
## 2297                                                
## 2298                                              16
## 2299                                                
## 2300                                              16
## 2301                                                
## 2302                                                
## 2303                                              16
## 2304                                              16
## 2305                                              19
## 2306                                              19
## 2307                                              19
## 2308                                                
## 2309                                                
## 2310                                                
## 2311                                              16
## 2312                                                
## 2313                                                
## 2314                                                
## 2315                                                
## 2316                                              16
## 2317                                                
## 2318                                              19
## 2319                                              16
## 2320                                               5
## 2321                                               5
## 2322                                                
## 2323                                              16
## 2324                                                
## 2325                                                
## 2326                                                
## 2327                                              16
## 2328                                                
## 2329                                                
## 2330                                              16
## 2331                                              16
## 2332                                              19
## 2333                                              19
## 2334                                                
## 2335                                              16
## 2336                                                
## 2337                                              19
## 2338                                                
## 2339                                              16
## 2340                                              16
## 2341                                              16
## 2342                                              16
## 2343                                              16
## 2344                                                
## 2345                                              19
## 2346                                              16
## 2347                                                
## 2348                                                
## 2349                                              16
## 2350                                                
## 2351                                                
## 2352                                              16
## 2353                                                
## 2354                                                
## 2355                                              19
## 2356                                                
## 2357                                                
## 2358                                                
## 2359                                                
## 2360                                              19
## 2361                                                
## 2362                                                
## 2363                                                
## 2364                                                
## 2365                                                
## 2366                                              19
## 2367                                                
## 2368                                                
## 2369                                              19
## 2370                                              16
## 2371                                                
## 2372                                                
## 2373                                                
## 2374                                              19
## 2375                                                
## 2376                                              16
## 2377                                                
## 2378                                              16
## 2379                                              16
## 2380                                                
## 2381                                                
## 2382                                                
## 2383                                              19
## 2384                                              19
## 2385                                                
## 2386                                              16
## 2387                                                
## 2388                                                
## 2389                                                
## 2390                                              19
## 2391                                                
## 2392                                              16
## 2393                                              16
## 2394                                              16
## 2395                                              19
## 2396                                              19
## 2397                                              16
## 2398                                                
## 2399                                                
## 2400                                                
## 2401                                                
## 2402                                              19
## 2403                                              16
## 2404                                                
## 2405                                              16
## 2406                                                
## 2407                                                
## 2408                                                
## 2409                                                
## 2410                                              19
## 2411                                                
## 2412                                              16
## 2413                                                
## 2414                                              16
## 2415                                                
## 2416                                              16
## 2417                                              16
## 2418                                              16
## 2419                                              19
## 2420                                                
## 2421                                                
## 2422                                                
## 2423                                                
## 2424                                              16
## 2425                                                
## 2426                                              19
## 2427                                                
## 2428                                              19
## 2429                                              16
## 2430                                                
## 2431                                              16
## 2432                                              19
## 2433                                              16
## 2434                                              16
## 2435                                                
## 2436                                                
## 2437                                                
## 2438                                              19
## 2439                                                
## 2440                                              19
## 2441                                                
## 2442                                              16
## 2443                                                
## 2444                                              19
## 2445                                              16
## 2446                                                
## 2447                                               5
## 2448                                                
## 2449                                              19
## 2450                                                
## 2451                                              16
## 2452                                                
## 2453                                                
## 2454                                                
## 2455                                                
## 2456                                              19
## 2457                                                
## 2458                                              16
## 2459                                                
## 2460                                                
## 2461                                                
## 2462                                                
## 2463                                              16
## 2464                                                
## 2465                                              16
## 2466                                              16
## 2467                                                
## 2468                                              19
## 2469                                                
## 2470                                                
## 2471                                                
## 2472                                              19
## 2473                                              16
## 2474                                              16
## 2475                                                
## 2476                                                
## 2477                                                
## 2478                                                
## 2479                                              16
## 2480                                                
## 2481                                                
## 2482                                                
## 2483                                                
## 2484                                                
## 2485                                              16
## 2486                                                
## 2487                                              19
## 2488                                              16
## 2489                                              19
## 2490                                                
## 2491                                                
## 2492                                              16
## 2493                                              19
## 2494                                              19
## 2495                                                
## 2496                                              16
## 2497                                              19
## 2498                                                
## 2499                                              19
## 2500                                                
## 2501                                                
## 2502                                                
## 2503                                                
## 2504                                                
## 2505                                                
## 2506                                              19
## 2507                                                
## 2508                                                
## 2509                                                
## 2510                                              16
## 2511                                                
## 2512                                                
## 2513                                               5
## 2514                                                
## 2515                                                
## 2516                                                
## 2517                                                
## 2518                                              16
## 2519                                                
## 2520                                              19
## 2521                                                
## 2522                                                
## 2523                                                
## 2524                                              19
## 2525                                                
## 2526                                                
## 2527                                                
## 2528                                                
## 2529                                              16
## 2530                                                
## 2531                                                
## 2532                                              16
## 2533                                                
## 2534                                                
## 2535                                                
## 2536                                              16
## 2537                                                
## 2538                                              19
## 2539                                              19
## 2540                                              19
## 2541                                              16
## 2542                                                
## 2543                                               5
## 2544                                              16
## 2545                                                
## 2546                                              16
## 2547                                              19
## 2548                                                
## 2549                                                
## 2550                                              19
## 2551                                                
## 2552                                              19
## 2553                                                
## 2554                                              16
## 2555                                                
## 2556                                              16
## 2557                                              19
## 2558                                              19
## 2559                                                
## 2560                                                
## 2561                                              16
## 2562                                                
## 2563                                              16
## 2564                                                
## 2565                                                
## 2566                                              16
## 2567                                                
## 2568                                                
## 2569                                              16
## 2570                                                
## 2571                                                
## 2572                                                
## 2573                                              19
## 2574                                                
## 2575                                                
## 2576                                                
## 2577                                                
## 2578                                                
## 2579                                                
## 2580                                                
## 2581                                                
## 2582                                              16
## 2583                                              19
## 2584                                                
## 2585                                              19
## 2586                                                
## 2587                                              16
## 2588                                              16
## 2589                                                
## 2590                                                
## 2591                                                
## 2592                                                
## 2593                                                
## 2594                                              16
## 2595                                                
## 2596                                              19
## 2597                                                
## 2598                                                
## 2599                                                
## 2600                                              16
## 2601                                                
## 2602                                                
## 2603                                              16
## 2604                                              16
## 2605                                                
## 2606                                              19
## 2607                                              19
## 2608                                                
## 2609                                              19
## 2610                                                
## 2611                                                
## 2612                                                
## 2613                                                
## 2614                                                
## 2615                                                
## 2616                                              16
## 2617                                              16
## 2618                                                
## 2619                                                
## 2620                                                
## 2621                                                
## 2622                                                
## 2623                                                
## 2624                                              16
## 2625                                              19
## 2626                                                
## 2627                                              16
## 2628                                                
## 2629                                                
## 2630                                                
## 2631                                              19
## 2632                                              19
## 2633                                                
## 2634                                                
## 2635                                                
## 2636                                              16
## 2637                                                
## 2638                                                
## 2639                                                
## 2640                                                
## 2641                                                
## 2642                                              16
## 2643                                                
## 2644                                                
## 2645                                                
## 2646                                                
## 2647                                                
## 2648                                              19
## 2649                                                
## 2650                                                
## 2651                                                
## 2652                                                
## 2653                                              16
## 2654                                                
## 2655                                              19
## 2656                                                
## 2657                                              16
## 2658                                                
## 2659                                                
## 2660                                                
## 2661                                              19
## 2662                                                
## 2663                                                
## 2664                                                
## 2665                                                
## 2666                                                
## 2667                                              16
## 2668                                              16
## 2669                                                
## 2670                                              16
## 2671                                                
## 2672                                                
## 2673                                               5
## 2674                                                
## 2675                                               5
## 2676                                              16
## 2677                                                
## 2678                                              19
## 2679                                                
## 2680                                                
## 2681                                              19
## 2682                                                
## 2683                                              19
## 2684                                                
## 2685                                                
## 2686                                                
## 2687                                                
## 2688                                                
## 2689                                              19
## 2690                                              19
## 2691                                                
## 2692                                                
## 2693                                                
## 2694                                                
## 2695                                                
## 2696                                                
## 2697                                                
## 2698                                              19
## 2699                                              16
## 2700                                                
## 2701                                                
## 2702                                              16
## 2703                                              19
## 2704                                                
## 2705                                                
## 2706                                                
## 2707                                                
## 2708                                              19
## 2709                                                
## 2710                                                
## 2711                                              16
## 2712                                              16
## 2713                                              16
## 2714                                              16
## 2715                                                
## 2716                                                
## 2717                                              16
## 2718                                                
## 2719                                                
## 2720                                              16
## 2721                                                
## 2722                                                
## 2723                                                
## 2724                                                
## 2725                                              19
## 2726                                                
## 2727                                              16
## 2728                                                
## 2729                                              16
## 2730                                              16
## 2731                                              16
## 2732                                              16
## 2733                                                
## 2734                                              16
## 2735                                                
## 2736                                                
## 2737                                                
## 2738                                                
## 2739                                              16
## 2740                                              16
## 2741                                              16
## 2742                                                
## 2743                                              16
## 2744                                                
## 2745                                              16
## 2746                                                
## 2747                                              16
## 2748                                              19
## 2749                                                
## 2750                                                
## 2751                                                
## 2752                                                
## 2753                                              19
## 2754                                                
## 2755                                                
## 2756                                                
## 2757                                                
## 2758                                                
## 2759                                              16
## 2760                                                
## 2761                                                
## 2762                                                
## 2763                                              19
## 2764                                                
## 2765                                                
## 2766                                                
## 2767                                              16
## 2768                                                
## 2769                                                
## 2770                                              16
## 2771                                              16
## 2772                                                
## 2773                                              16
## 2774                                                
## 2775                                              19
## 2776                                              16
## 2777                                                
## 2778                                                
## 2779                                                
## 2780                                                
## 2781                                                
## 2782                                                
## 2783                                                
## 2784                                                
## 2785                                                
## 2786                                              19
## 2787                                                
## 2788                                                
## 2789                                                
## 2790                                                
## 2791                                              16
## 2792                                                
## 2793                                                
## 2794                                                
## 2795                                              16
## 2796                                                
## 2797                                                
## 2798                                                
## 2799                                                
## 2800                                                
## 2801                                                
## 2802                                              19
## 2803                                                
## 2804                                                
## 2805                                              16
## 2806                                               5
## 2807                                                
## 2808                                                
## 2809                                              16
## 2810                                                
## 2811                                                
## 2812                                                
## 2813                                                
## 2814                                                
## 2815                                              16
## 2816                                                
## 2817                                              19
## 2818                                                
## 2819                                                
## 2820                                              19
## 2821                                              19
## 2822                                                
## 2823                                                
## 2824                                                
## 2825                                                
## 2826                                              16
## 2827                                              19
## 2828                                              19
## 2829                                              16
## 2830                                              16
## 2831                                                
## 2832                                              19
## 2833                                                
## 2834                                                
## 2835                                              16
## 2836                                                
## 2837                                              16
## 2838                                                
## 2839                                                
## 2840                                                
## 2841                                                
## 2842                                              16
## 2843                                              19
## 2844                                              16
## 2845                                              19
## 2846                                              19
## 2847                                              19
## 2848                                                
## 2849                                              16
## 2850                                              16
## 2851                                              16
## 2852                                              16
## 2853                                                
## 2854                                                
## 2855                                                
## 2856                                                
## 2857                                                
## 2858                                                
## 2859                                                
## 2860                                                
## 2861                                                
## 2862                                              16
## 2863                                                
## 2864                                                
## 2865                                                
## 2866                                                
## 2867                                              16
## 2868                                                
## 2869                                                
## 2870                                              16
## 2871                                                
## 2872                                                
## 2873                                                
## 2874                                              16
## 2875                                                
## 2876                                                
## 2877                                                
## 2878                                                
## 2879                                              16
## 2880                                              19
## 2881                                                
## 2882                                              16
## 2883                                                
## 2884                                              19
## 2885                                                
## 2886                                                
## 2887                                                
## 2888                                              16
## 2889                                              16
## 2890                                                
## 2891                                              16
## 2892                                                
## 2893                                                
## 2894                                                
## 2895                                                
## 2896                                                
## 2897                                                
## 2898                                                
## 2899                                                
## 2900                                              16
## 2901                                                
## 2902                                                
## 2903                                              16
## 2904                                                
## 2905                                                
## 2906                                                
## 2907                                                
## 2908                                                
## 2909                                                
## 2910                                               5
## 2911                                                
## 2912                                                
## 2913                                                
## 2914                                                
## 2915                                                
## 2916                                                
## 2917                                                
## 2918                                              16
## 2919                                                
## 2920                                                
## 2921                                                
## 2922                                                
## 2923                                                
## 2924                                                
## 2925                                                
## 2926                                              19
## 2927                                              16
## 2928                                                
## 2929                                                
## 2930                                                
## 2931                                                
## 2932                                                
## 2933                                                
## 2934                                              19
## 2935                                                
## 2936                                                
## 2937                                                
## 2938                                                
## 2939                                                
## 2940                                                
## 2941                                                
## 2942                                              16
## 2943                                                
## 2944                                                
## 2945                                                
## 2946                                              16
## 2947                                                
## 2948                                              16
## 2949                                              16
## 2950                                              19
## 2951                                                
## 2952                                              16
## 2953                                                
## 2954                                                
## 2955                                                
## 2956                                               5
## 2957                                              19
## 2958                                                
## 2959                                              16
## 2960                                                
## 2961                                                
## 2962                                              16
## 2963                                              16
## 2964                                                
## 2965                                                
## 2966                                              19
## 2967                                                
## 2968                                                
## 2969                                                
## 2970                                                
## 2971                                                
## 2972                                                
## 2973                                                
## 2974                                                
## 2975                                              16
## 2976                                                
## 2977                                                
## 2978                                              16
## 2979                                                
## 2980                                                
## 2981                                                
## 2982                                                
## 2983                                                
## 2984                                              16
## 2985                                                
## 2986                                                
## 2987                                                
## 2988                                                
## 2989                                                
## 2990                                                
## 2991                                                
## 2992                                                
## 2993                                                
## 2994                                              16
## 2995                                                
## 2996                                              16
## 2997                                              19
## 2998                                                
## 2999                                                
## 3000                                                
## 3001                                               5
## 3002                                                
## 3003                                                
## 3004                                              16
## 3005                                                
## 3006                                                
## 3007                                              19
## 3008                                                
## 3009                                                
## 3010                                                
## 3011                                              16
## 3012                                                
## 3013                                              16
## 3014                                                
## 3015                                              19
## 3016                                                
## 3017                                                
## 3018                                                
## 3019                                                
## 3020                                              16
## 3021                                                
## 3022                                              19
## 3023                                                
## 3024                                                
## 3025                                                
## 3026                                                
## 3027                                              19
## 3028                                                
## 3029                                                
## 3030                                                
## 3031                                                
## 3032                                                
## 3033                                                
## 3034                                                
## 3035                                                
## 3036                                                
## 3037                                              19
## 3038                                                
## 3039                                                
## 3040                                                
## 3041                                                
## 3042                                                
## 3043                                              16
## 3044                                                
## 3045                                              19
## 3046                                              16
## 3047                                                
## 3048                                                
## 3049                                              19
## 3050                                                
## 3051                                                
## 3052                                                
## 3053                                                
## 3054                                                
## 3055                                                
## 3056                                                
## 3057                                              19
## 3058                                                
## 3059                                                
## 3060                                              19
## 3061                                              19
## 3062                                              16
## 3063                                                
## 3064                                                
## 3065                                                
## 3066                                                
## 3067                                                
## 3068                                              19
## 3069                                                
## 3070                                                
## 3071                                                
## 3072                                                
## 3073                                                
## 3074                                                
## 3075                                                
## 3076                                                
## 3077                                              16
## 3078                                                
## 3079                                                
## 3080                                                
## 3081                                                
## 3082                                              16
## 3083                                              16
## 3084                                              19
## 3085                                                
## 3086                                                
## 3087                                                
## 3088                                              19
## 3089                                              16
## 3090                                                
## 3091                                                
## 3092                                                
## 3093                                                
## 3094                                              16
## 3095                                                
## 3096                                                
## 3097                                                
## 3098                                                
## 3099                                                
## 3100                                                
## 3101                                                
## 3102                                                
## 3103                                              16
## 3104                                                
## 3105                                                
## 3106                                                
## 3107                                              16
## 3108                                                
## 3109                                                
## 3110                                              19
## 3111                                                
## 3112                                              16
## 3113                                                
## 3114                                                
## 3115                                              16
## 3116                                              19
## 3117                                              19
## 3118                                                
## 3119                                              16
## 3120                                                
## 3121                                                
## 3122                                                
## 3123                                              19
## 3124                                                
## 3125                                                
## 3126                                                
## 3127                                                
## 3128                                                
## 3129                                              16
## 3130                                              19
## 3131                                              19
## 3132                                                
## 3133                                                
## 3134                                              16
## 3135                                              19
## 3136                                                
## 3137                                              19
## 3138                                              19
## 3139                                              19
## 3140                                                
## 3141                                                
## 3142                                                
## 3143                                                
## 3144                                              16
## 3145                                                
## 3146                                                
## 3147                                                
## 3148                                                
## 3149                                                
## 3150                                                
## 3151                                                
## 3152                                                
## 3153                                                
## 3154                                                
## 3155                                              16
## 3156                                                
## 3157                                                
## 3158                                                
## 3159                                                
## 3160                                                
## 3161                                                
## 3162                                                
## 3163                                                
## 3164                                               5
## 3165                                              16
## 3166                                                
## 3167                                                
## 3168                                                
## 3169                                                
## 3170                                                
## 3171                                                
## 3172                                               5
## 3173                                                
## 3174                                                
## 3175                                                
## 3176                                                
## 3177                                                
## 3178                                                
## 3179                                              16
## 3180                                                
## 3181                                                
## 3182                                                
## 3183                                              19
## 3184                                                
## 3185                                                
## 3186                                                
## 3187                                                
## 3188                                                
## 3189                                              16
## 3190                                                
## 3191                                              16
## 3192                                                
## 3193                                                
## 3194                                                
## 3195                                              16
## 3196                                                
## 3197                                                
## 3198                                                
## 3199                                                
## 3200                                                
## 3201                                              19
## 3202                                                
## 3203                                                
## 3204                                                
## 3205                                                
## 3206                                                
## 3207                                              19
## 3208                                              16
## 3209                                                
## 3210                                                
## 3211                                                
## 3212                                                
## 3213                                              19
## 3214                                              19
## 3215                                                
## 3216                                              19
## 3217                                                
## 3218                                                
## 3219                                                
## 3220                                                
## 3221                                              16
## 3222                                                
## 3223                                                
## 3224                                                
## 3225                                              16
## 3226                                                
## 3227                                                
## 3228                                                
## 3229                                                
## 3230                                                
## 3231                                                
## 3232                                               5
## 3233                                              16
## 3234                                                
## 3235                                                
## 3236                                                
## 3237                                              16
## 3238                                                
## 3239                                              16
## 3240                                              16
## 3241                                                
## 3242                                                
## 3243                                                
## 3244                                                
## 3245                                              19
## 3246                                                
## 3247                                                
## 3248                                              19
## 3249                                                
## 3250                                              16
## 3251                                              16
## 3252                                                
## 3253                                                
## 3254                                                
## 3255                                                
## 3256                                                
## 3257                                              19
## 3258                                                
## 3259                                              16
## 3260                                                
## 3261                                                
## 3262                                                
## 3263                                              16
## 3264                                              16
## 3265                                              19
## 3266                                                
## 3267                                                
## 3268                                              19
## 3269                                                
## 3270                                              19
## 3271                                                
## 3272                                              16
## 3273                                                
## 3274                                              16
## 3275                                              16
## 3276                                              16
## 3277                                                
## 3278                                              16
## 3279                                              19
## 3280                                                
## 3281                                                
## 3282                                                
## 3283                                                
## 3284                                                
## 3285                                                
## 3286                                              16
## 3287                                              19
## 3288                                                
## 3289                                                
## 3290                                                
## 3291                                                
## 3292                                              16
## 3293                                                
## 3294                                                
## 3295                                                
## 3296                                              19
## 3297                                              16
## 3298                                                
## 3299                                                
## 3300                                                
## 3301                                                
## 3302                                                
## 3303                                              19
## 3304                                                
## 3305                                                
## 3306                                              16
## 3307                                                
## 3308                                                
## 3309                                              19
## 3310                                                
## 3311                                                
## 3312                                                
## 3313                                                
## 3314                                                
## 3315                                                
## 3316                                              19
## 3317                                              16
## 3318                                              16
## 3319                                                
## 3320                                                
## 3321                                                
## 3322                                                
## 3323                                                
## 3324                                                
## 3325                                              19
## 3326                                                
## 3327                                                
## 3328                                                
## 3329                                                
## 3330                                                
## 3331                                              16
## 3332                                                
## 3333                                                
## 3334                                                
## 3335                                                
## 3336                                                
## 3337                                                
## 3338                                              16
## 3339                                              16
## 3340                                                
## 3341                                                
## 3342                                                
## 3343                                                
## 3344                                                
## 3345                                              16
## 3346                                                
## 3347                                                
## 3348                                              19
## 3349                                                
## 3350                                                
## 3351                                              19
## 3352                                                
## 3353                                                
## 3354                                              16
## 3355                                              19
## 3356                                              16
## 3357                                                
## 3358                                                
## 3359                                                
## 3360                                              19
## 3361                                                
## 3362                                                
## 3363                                                
## 3364                                                
## 3365                                                
## 3366                                              16
## 3367                                                
## 3368                                              16
## 3369                                                
## 3370                                              16
## 3371                                                
## 3372                                              16
## 3373                                                
## 3374                                              16
## 3375                                                
## 3376                                              19
## 3377                                                
## 3378                                              16
## 3379                                                
## 3380                                                
## 3381                                              16
## 3382                                              16
## 3383                                              19
## 3384                                              16
## 3385                                                
## 3386                                                
## 3387                                              16
## 3388                                                
## 3389                                                
## 3390                                              16
## 3391                                                
## 3392                                                
## 3393                                              16
## 3394                                                
## 3395                                              16
## 3396                                              16
## 3397                                                
## 3398                                              19
## 3399                                                
## 3400                                                
## 3401                                              16
## 3402                                              16
## 3403                                              19
## 3404                                                
## 3405                                              19
## 3406                                                
## 3407                                                
## 3408                                                
## 3409                                              16
## 3410                                                
## 3411                                              16
## 3412                                              16
## 3413                                                
## 3414                                              16
## 3415                                                
## 3416                                              16
## 3417                                                
## 3418                                              16
## 3419                                                
## 3420                                                
## 3421                                                
## 3422                                                
## 3423                                              16
## 3424                                                
## 3425                                              16
## 3426                                              16
## 3427                                                
## 3428                                              16
## 3429                                                
## 3430                                                
## 3431                                                
## 3432                                                
## 3433                                                
## 3434                                                
## 3435                                              16
## 3436                                                
## 3437                                                
## 3438                                                
## 3439                                                
## 3440                                                
## 3441                                              16
## 3442                                                
## 3443                                              19
## 3444                                                
## 3445                                                
## 3446                                              19
## 3447                                              16
## 3448                                              19
##      Effectiveness_of_care_national_comparison
## 1                   Below the national average
## 2                                Not Available
## 3                                Not Available
## 4                 Same as the national average
## 5                                Not Available
## 6                   Below the national average
## 7                                Not Available
## 8                                Not Available
## 9                                Not Available
## 10                               Not Available
## 11                               Not Available
## 12                Same as the national average
## 13                               Not Available
## 14                               Not Available
## 15                               Not Available
## 16                               Not Available
## 17                Same as the national average
## 18                               Not Available
## 19                               Not Available
## 20                               Not Available
## 21                               Not Available
## 22                               Not Available
## 23                               Not Available
## 24                               Not Available
## 25                               Not Available
## 26                               Not Available
## 27                               Not Available
## 28                               Not Available
## 29                               Not Available
## 30                Same as the national average
## 31                               Not Available
## 32                               Not Available
## 33                               Not Available
## 34                               Not Available
## 35                               Not Available
## 36                               Not Available
## 37                               Not Available
## 38                               Not Available
## 39                Same as the national average
## 40                               Not Available
## 41                               Not Available
## 42                               Not Available
## 43                Same as the national average
## 44                Same as the national average
## 45                               Not Available
## 46                               Not Available
## 47                               Not Available
## 48                               Not Available
## 49                               Not Available
## 50                               Not Available
## 51                               Not Available
## 52                               Not Available
## 53                               Not Available
## 54                               Not Available
## 55                               Not Available
## 56                Same as the national average
## 57                Same as the national average
## 58                               Not Available
## 59                               Not Available
## 60                Same as the national average
## 61                               Not Available
## 62                Same as the national average
## 63                               Not Available
## 64                Same as the national average
## 65                Same as the national average
## 66                               Not Available
## 67                Same as the national average
## 68                               Not Available
## 69                Same as the national average
## 70                Same as the national average
## 71                  Above the national average
## 72                  Below the national average
## 73                Same as the national average
## 74                Same as the national average
## 75                               Not Available
## 76                Same as the national average
## 77                               Not Available
## 78                Same as the national average
## 79                Same as the national average
## 80                Same as the national average
## 81                               Not Available
## 82                               Not Available
## 83                               Not Available
## 84                Same as the national average
## 85                               Not Available
## 86                               Not Available
## 87                Same as the national average
## 88                               Not Available
## 89                Same as the national average
## 90                Same as the national average
## 91                  Below the national average
## 92                  Above the national average
## 93                Same as the national average
## 94                Same as the national average
## 95                Same as the national average
## 96                               Not Available
## 97                Same as the national average
## 98                Same as the national average
## 99                Same as the national average
## 100                 Below the national average
## 101               Same as the national average
## 102               Same as the national average
## 103               Same as the national average
## 104                 Below the national average
## 105               Same as the national average
## 106               Same as the national average
## 107               Same as the national average
## 108               Same as the national average
## 109               Same as the national average
## 110                              Not Available
## 111               Same as the national average
## 112                 Below the national average
## 113               Same as the national average
## 114               Same as the national average
## 115               Same as the national average
## 116                              Not Available
## 117                              Not Available
## 118               Same as the national average
## 119                              Not Available
## 120                              Not Available
## 121               Same as the national average
## 122                              Not Available
## 123               Same as the national average
## 124               Same as the national average
## 125                              Not Available
## 126                              Not Available
## 127               Same as the national average
## 128               Same as the national average
## 129                              Not Available
## 130               Same as the national average
## 131                 Below the national average
## 132               Same as the national average
## 133               Same as the national average
## 134               Same as the national average
## 135               Same as the national average
## 136               Same as the national average
## 137               Same as the national average
## 138                              Not Available
## 139               Same as the national average
## 140               Same as the national average
## 141               Same as the national average
## 142                              Not Available
## 143                              Not Available
## 144               Same as the national average
## 145               Same as the national average
## 146                              Not Available
## 147               Same as the national average
## 148               Same as the national average
## 149                              Not Available
## 150                 Below the national average
## 151               Same as the national average
## 152                              Not Available
## 153                 Below the national average
## 154               Same as the national average
## 155               Same as the national average
## 156               Same as the national average
## 157                              Not Available
## 158               Same as the national average
## 159               Same as the national average
## 160               Same as the national average
## 161                              Not Available
## 162               Same as the national average
## 163               Same as the national average
## 164               Same as the national average
## 165               Same as the national average
## 166                              Not Available
## 167               Same as the national average
## 168               Same as the national average
## 169                              Not Available
## 170               Same as the national average
## 171                              Not Available
## 172                 Above the national average
## 173               Same as the national average
## 174                 Below the national average
## 175               Same as the national average
## 176               Same as the national average
## 177               Same as the national average
## 178               Same as the national average
## 179               Same as the national average
## 180                 Above the national average
## 181               Same as the national average
## 182               Same as the national average
## 183               Same as the national average
## 184                              Not Available
## 185               Same as the national average
## 186                 Below the national average
## 187               Same as the national average
## 188                 Below the national average
## 189               Same as the national average
## 190               Same as the national average
## 191               Same as the national average
## 192               Same as the national average
## 193                              Not Available
## 194               Same as the national average
## 195                              Not Available
## 196               Same as the national average
## 197                              Not Available
## 198               Same as the national average
## 199                 Below the national average
## 200                              Not Available
## 201                              Not Available
## 202               Same as the national average
## 203                              Not Available
## 204               Same as the national average
## 205               Same as the national average
## 206                              Not Available
## 207                              Not Available
## 208               Same as the national average
## 209               Same as the national average
## 210               Same as the national average
## 211                              Not Available
## 212               Same as the national average
## 213                              Not Available
## 214               Same as the national average
## 215                              Not Available
## 216                              Not Available
## 217               Same as the national average
## 218               Same as the national average
## 219                              Not Available
## 220                              Not Available
## 221               Same as the national average
## 222               Same as the national average
## 223               Same as the national average
## 224                              Not Available
## 225               Same as the national average
## 226               Same as the national average
## 227                              Not Available
## 228                 Below the national average
## 229               Same as the national average
## 230                              Not Available
## 231               Same as the national average
## 232               Same as the national average
## 233               Same as the national average
## 234               Same as the national average
## 235               Same as the national average
## 236               Same as the national average
## 237               Same as the national average
## 238               Same as the national average
## 239               Same as the national average
## 240                 Below the national average
## 241               Same as the national average
## 242               Same as the national average
## 243               Same as the national average
## 244                 Below the national average
## 245               Same as the national average
## 246               Same as the national average
## 247               Same as the national average
## 248               Same as the national average
## 249                              Not Available
## 250                              Not Available
## 251               Same as the national average
## 252                              Not Available
## 253               Same as the national average
## 254               Same as the national average
## 255               Same as the national average
## 256               Same as the national average
## 257               Same as the national average
## 258               Same as the national average
## 259               Same as the national average
## 260               Same as the national average
## 261                              Not Available
## 262                              Not Available
## 263               Same as the national average
## 264               Same as the national average
## 265               Same as the national average
## 266                              Not Available
## 267               Same as the national average
## 268                              Not Available
## 269               Same as the national average
## 270                 Below the national average
## 271               Same as the national average
## 272               Same as the national average
## 273               Same as the national average
## 274                              Not Available
## 275                              Not Available
## 276               Same as the national average
## 277               Same as the national average
## 278                              Not Available
## 279               Same as the national average
## 280               Same as the national average
## 281               Same as the national average
## 282               Same as the national average
## 283               Same as the national average
## 284               Same as the national average
## 285                              Not Available
## 286               Same as the national average
## 287                              Not Available
## 288                 Below the national average
## 289               Same as the national average
## 290               Same as the national average
## 291                              Not Available
## 292               Same as the national average
## 293               Same as the national average
## 294                              Not Available
## 295               Same as the national average
## 296                              Not Available
## 297               Same as the national average
## 298                 Above the national average
## 299                              Not Available
## 300               Same as the national average
## 301                              Not Available
## 302               Same as the national average
## 303               Same as the national average
## 304                              Not Available
## 305                              Not Available
## 306                              Not Available
## 307               Same as the national average
## 308               Same as the national average
## 309                              Not Available
## 310                              Not Available
## 311               Same as the national average
## 312               Same as the national average
## 313               Same as the national average
## 314               Same as the national average
## 315                              Not Available
## 316               Same as the national average
## 317               Same as the national average
## 318                 Above the national average
## 319               Same as the national average
## 320               Same as the national average
## 321                 Below the national average
## 322               Same as the national average
## 323               Same as the national average
## 324                              Not Available
## 325               Same as the national average
## 326               Same as the national average
## 327               Same as the national average
## 328               Same as the national average
## 329               Same as the national average
## 330                              Not Available
## 331               Same as the national average
## 332               Same as the national average
## 333               Same as the national average
## 334               Same as the national average
## 335               Same as the national average
## 336                              Not Available
## 337               Same as the national average
## 338                              Not Available
## 339               Same as the national average
## 340               Same as the national average
## 341               Same as the national average
## 342                              Not Available
## 343               Same as the national average
## 344                              Not Available
## 345               Same as the national average
## 346               Same as the national average
## 347                              Not Available
## 348               Same as the national average
## 349               Same as the national average
## 350               Same as the national average
## 351                 Below the national average
## 352               Same as the national average
## 353                              Not Available
## 354               Same as the national average
## 355               Same as the national average
## 356               Same as the national average
## 357               Same as the national average
## 358               Same as the national average
## 359               Same as the national average
## 360                              Not Available
## 361               Same as the national average
## 362               Same as the national average
## 363               Same as the national average
## 364               Same as the national average
## 365                 Below the national average
## 366               Same as the national average
## 367               Same as the national average
## 368               Same as the national average
## 369               Same as the national average
## 370               Same as the national average
## 371               Same as the national average
## 372               Same as the national average
## 373               Same as the national average
## 374               Same as the national average
## 375                              Not Available
## 376                              Not Available
## 377                              Not Available
## 378                 Below the national average
## 379                              Not Available
## 380               Same as the national average
## 381               Same as the national average
## 382                              Not Available
## 383               Same as the national average
## 384                              Not Available
## 385                              Not Available
## 386               Same as the national average
## 387               Same as the national average
## 388               Same as the national average
## 389               Same as the national average
## 390               Same as the national average
## 391               Same as the national average
## 392               Same as the national average
## 393                              Not Available
## 394               Same as the national average
## 395               Same as the national average
## 396               Same as the national average
## 397               Same as the national average
## 398               Same as the national average
## 399               Same as the national average
## 400               Same as the national average
## 401                              Not Available
## 402               Same as the national average
## 403                              Not Available
## 404               Same as the national average
## 405                              Not Available
## 406               Same as the national average
## 407                              Not Available
## 408               Same as the national average
## 409               Same as the national average
## 410                              Not Available
## 411               Same as the national average
## 412               Same as the national average
## 413               Same as the national average
## 414               Same as the national average
## 415                              Not Available
## 416               Same as the national average
## 417                              Not Available
## 418                              Not Available
## 419               Same as the national average
## 420                              Not Available
## 421                              Not Available
## 422               Same as the national average
## 423               Same as the national average
## 424                              Not Available
## 425               Same as the national average
## 426               Same as the national average
## 427               Same as the national average
## 428               Same as the national average
## 429                              Not Available
## 430               Same as the national average
## 431                 Below the national average
## 432                 Below the national average
## 433               Same as the national average
## 434               Same as the national average
## 435                              Not Available
## 436               Same as the national average
## 437               Same as the national average
## 438               Same as the national average
## 439                 Below the national average
## 440                              Not Available
## 441               Same as the national average
## 442               Same as the national average
## 443               Same as the national average
## 444               Same as the national average
## 445               Same as the national average
## 446               Same as the national average
## 447               Same as the national average
## 448                              Not Available
## 449               Same as the national average
## 450                 Above the national average
## 451                              Not Available
## 452               Same as the national average
## 453               Same as the national average
## 454               Same as the national average
## 455               Same as the national average
## 456               Same as the national average
## 457                              Not Available
## 458               Same as the national average
## 459               Same as the national average
## 460               Same as the national average
## 461               Same as the national average
## 462               Same as the national average
## 463               Same as the national average
## 464               Same as the national average
## 465               Same as the national average
## 466               Same as the national average
## 467                 Below the national average
## 468               Same as the national average
## 469                              Not Available
## 470               Same as the national average
## 471                 Above the national average
## 472               Same as the national average
## 473               Same as the national average
## 474               Same as the national average
## 475                              Not Available
## 476                              Not Available
## 477               Same as the national average
## 478               Same as the national average
## 479               Same as the national average
## 480                 Above the national average
## 481               Same as the national average
## 482                 Above the national average
## 483                 Above the national average
## 484               Same as the national average
## 485               Same as the national average
## 486                              Not Available
## 487                              Not Available
## 488               Same as the national average
## 489               Same as the national average
## 490                 Above the national average
## 491               Same as the national average
## 492                 Above the national average
## 493                 Above the national average
## 494               Same as the national average
## 495               Same as the national average
## 496               Same as the national average
## 497               Same as the national average
## 498                 Below the national average
## 499                              Not Available
## 500                              Not Available
## 501                              Not Available
## 502                              Not Available
## 503               Same as the national average
## 504                 Above the national average
## 505               Same as the national average
## 506                              Not Available
## 507                              Not Available
## 508                              Not Available
## 509                              Not Available
## 510               Same as the national average
## 511                              Not Available
## 512               Same as the national average
## 513               Same as the national average
## 514               Same as the national average
## 515               Same as the national average
## 516                              Not Available
## 517                              Not Available
## 518                 Above the national average
## 519               Same as the national average
## 520               Same as the national average
## 521               Same as the national average
## 522               Same as the national average
## 523                 Above the national average
## 524               Same as the national average
## 525               Same as the national average
## 526               Same as the national average
## 527               Same as the national average
## 528                              Not Available
## 529               Same as the national average
## 530               Same as the national average
## 531                              Not Available
## 532               Same as the national average
## 533               Same as the national average
## 534               Same as the national average
## 535                              Not Available
## 536               Same as the national average
## 537               Same as the national average
## 538                              Not Available
## 539               Same as the national average
## 540               Same as the national average
## 541                 Below the national average
## 542                              Not Available
## 543                              Not Available
## 544               Same as the national average
## 545               Same as the national average
## 546               Same as the national average
## 547                 Below the national average
## 548                              Not Available
## 549               Same as the national average
## 550               Same as the national average
## 551                 Above the national average
## 552                 Below the national average
## 553                              Not Available
## 554                              Not Available
## 555               Same as the national average
## 556                 Below the national average
## 557               Same as the national average
## 558               Same as the national average
## 559               Same as the national average
## 560               Same as the national average
## 561                 Below the national average
## 562               Same as the national average
## 563               Same as the national average
## 564               Same as the national average
## 565               Same as the national average
## 566               Same as the national average
## 567               Same as the national average
## 568               Same as the national average
## 569                              Not Available
## 570                              Not Available
## 571               Same as the national average
## 572               Same as the national average
## 573               Same as the national average
## 574                 Below the national average
## 575                              Not Available
## 576               Same as the national average
## 577               Same as the national average
## 578               Same as the national average
## 579                              Not Available
## 580               Same as the national average
## 581                              Not Available
## 582               Same as the national average
## 583               Same as the national average
## 584               Same as the national average
## 585               Same as the national average
## 586               Same as the national average
## 587               Same as the national average
## 588               Same as the national average
## 589                              Not Available
## 590                              Not Available
## 591               Same as the national average
## 592                              Not Available
## 593               Same as the national average
## 594                              Not Available
## 595                 Below the national average
## 596               Same as the national average
## 597               Same as the national average
## 598                              Not Available
## 599                              Not Available
## 600               Same as the national average
## 601               Same as the national average
## 602                 Above the national average
## 603                 Above the national average
## 604               Same as the national average
## 605                              Not Available
## 606               Same as the national average
## 607                              Not Available
## 608               Same as the national average
## 609                              Not Available
## 610                              Not Available
## 611                              Not Available
## 612               Same as the national average
## 613               Same as the national average
## 614               Same as the national average
## 615               Same as the national average
## 616               Same as the national average
## 617                              Not Available
## 618               Same as the national average
## 619               Same as the national average
## 620               Same as the national average
## 621                 Below the national average
## 622                 Below the national average
## 623                              Not Available
## 624               Same as the national average
## 625               Same as the national average
## 626               Same as the national average
## 627               Same as the national average
## 628                              Not Available
## 629                 Above the national average
## 630               Same as the national average
## 631               Same as the national average
## 632                 Below the national average
## 633               Same as the national average
## 634               Same as the national average
## 635                 Above the national average
## 636                 Below the national average
## 637               Same as the national average
## 638                              Not Available
## 639               Same as the national average
## 640                 Below the national average
## 641               Same as the national average
## 642               Same as the national average
## 643               Same as the national average
## 644               Same as the national average
## 645                              Not Available
## 646                              Not Available
## 647                              Not Available
## 648               Same as the national average
## 649                              Not Available
## 650                 Below the national average
## 651                              Not Available
## 652               Same as the national average
## 653               Same as the national average
## 654                 Below the national average
## 655                 Below the national average
## 656               Same as the national average
## 657               Same as the national average
## 658               Same as the national average
## 659               Same as the national average
## 660               Same as the national average
## 661                              Not Available
## 662               Same as the national average
## 663               Same as the national average
## 664                              Not Available
## 665                              Not Available
## 666               Same as the national average
## 667               Same as the national average
## 668                              Not Available
## 669                              Not Available
## 670               Same as the national average
## 671               Same as the national average
## 672               Same as the national average
## 673                              Not Available
## 674                              Not Available
## 675               Same as the national average
## 676                 Above the national average
## 677               Same as the national average
## 678               Same as the national average
## 679                              Not Available
## 680               Same as the national average
## 681               Same as the national average
## 682               Same as the national average
## 683                              Not Available
## 684                              Not Available
## 685               Same as the national average
## 686               Same as the national average
## 687               Same as the national average
## 688                              Not Available
## 689               Same as the national average
## 690               Same as the national average
## 691               Same as the national average
## 692               Same as the national average
## 693               Same as the national average
## 694               Same as the national average
## 695               Same as the national average
## 696               Same as the national average
## 697               Same as the national average
## 698               Same as the national average
## 699               Same as the national average
## 700               Same as the national average
## 701               Same as the national average
## 702                              Not Available
## 703                              Not Available
## 704               Same as the national average
## 705                              Not Available
## 706                              Not Available
## 707               Same as the national average
## 708               Same as the national average
## 709               Same as the national average
## 710                              Not Available
## 711                              Not Available
## 712                 Below the national average
## 713               Same as the national average
## 714                              Not Available
## 715               Same as the national average
## 716               Same as the national average
## 717               Same as the national average
## 718                 Above the national average
## 719               Same as the national average
## 720               Same as the national average
## 721               Same as the national average
## 722               Same as the national average
## 723                 Below the national average
## 724               Same as the national average
## 725               Same as the national average
## 726                              Not Available
## 727               Same as the national average
## 728               Same as the national average
## 729               Same as the national average
## 730               Same as the national average
## 731               Same as the national average
## 732                 Below the national average
## 733                 Below the national average
## 734                              Not Available
## 735                 Below the national average
## 736               Same as the national average
## 737               Same as the national average
## 738               Same as the national average
## 739               Same as the national average
## 740                              Not Available
## 741                              Not Available
## 742               Same as the national average
## 743               Same as the national average
## 744               Same as the national average
## 745                              Not Available
## 746               Same as the national average
## 747               Same as the national average
## 748               Same as the national average
## 749                              Not Available
## 750               Same as the national average
## 751                              Not Available
## 752               Same as the national average
## 753               Same as the national average
## 754               Same as the national average
## 755               Same as the national average
## 756               Same as the national average
## 757               Same as the national average
## 758               Same as the national average
## 759                              Not Available
## 760               Same as the national average
## 761               Same as the national average
## 762               Same as the national average
## 763                              Not Available
## 764               Same as the national average
## 765               Same as the national average
## 766                 Below the national average
## 767               Same as the national average
## 768                              Not Available
## 769                              Not Available
## 770               Same as the national average
## 771                              Not Available
## 772               Same as the national average
## 773               Same as the national average
## 774               Same as the national average
## 775               Same as the national average
## 776               Same as the national average
## 777                              Not Available
## 778               Same as the national average
## 779               Same as the national average
## 780               Same as the national average
## 781                 Below the national average
## 782               Same as the national average
## 783                              Not Available
## 784               Same as the national average
## 785               Same as the national average
## 786               Same as the national average
## 787               Same as the national average
## 788               Same as the national average
## 789               Same as the national average
## 790               Same as the national average
## 791                              Not Available
## 792                              Not Available
## 793                              Not Available
## 794                 Below the national average
## 795               Same as the national average
## 796               Same as the national average
## 797               Same as the national average
## 798                              Not Available
## 799               Same as the national average
## 800               Same as the national average
## 801               Same as the national average
## 802               Same as the national average
## 803                              Not Available
## 804               Same as the national average
## 805               Same as the national average
## 806                 Below the national average
## 807                              Not Available
## 808               Same as the national average
## 809               Same as the national average
## 810                              Not Available
## 811               Same as the national average
## 812                 Above the national average
## 813               Same as the national average
## 814               Same as the national average
## 815               Same as the national average
## 816                              Not Available
## 817                              Not Available
## 818               Same as the national average
## 819                 Above the national average
## 820               Same as the national average
## 821               Same as the national average
## 822               Same as the national average
## 823               Same as the national average
## 824               Same as the national average
## 825                              Not Available
## 826               Same as the national average
## 827               Same as the national average
## 828               Same as the national average
## 829               Same as the national average
## 830               Same as the national average
## 831               Same as the national average
## 832               Same as the national average
## 833                 Below the national average
## 834               Same as the national average
## 835                              Not Available
## 836               Same as the national average
## 837                              Not Available
## 838               Same as the national average
## 839               Same as the national average
## 840                              Not Available
## 841               Same as the national average
## 842                              Not Available
## 843                              Not Available
## 844               Same as the national average
## 845                 Below the national average
## 846               Same as the national average
## 847               Same as the national average
## 848               Same as the national average
## 849                              Not Available
## 850               Same as the national average
## 851               Same as the national average
## 852               Same as the national average
## 853                              Not Available
## 854               Same as the national average
## 855               Same as the national average
## 856                 Above the national average
## 857                              Not Available
## 858               Same as the national average
## 859                              Not Available
## 860                 Below the national average
## 861                 Below the national average
## 862               Same as the national average
## 863               Same as the national average
## 864                              Not Available
## 865                              Not Available
## 866                 Above the national average
## 867               Same as the national average
## 868               Same as the national average
## 869               Same as the national average
## 870               Same as the national average
## 871               Same as the national average
## 872                 Above the national average
## 873               Same as the national average
## 874               Same as the national average
## 875               Same as the national average
## 876               Same as the national average
## 877                              Not Available
## 878               Same as the national average
## 879               Same as the national average
## 880               Same as the national average
## 881               Same as the national average
## 882                              Not Available
## 883               Same as the national average
## 884                 Above the national average
## 885               Same as the national average
## 886               Same as the national average
## 887               Same as the national average
## 888               Same as the national average
## 889               Same as the national average
## 890                              Not Available
## 891               Same as the national average
## 892               Same as the national average
## 893               Same as the national average
## 894               Same as the national average
## 895                 Below the national average
## 896               Same as the national average
## 897               Same as the national average
## 898                              Not Available
## 899               Same as the national average
## 900                              Not Available
## 901               Same as the national average
## 902               Same as the national average
## 903                              Not Available
## 904               Same as the national average
## 905                 Below the national average
## 906               Same as the national average
## 907               Same as the national average
## 908               Same as the national average
## 909                              Not Available
## 910               Same as the national average
## 911               Same as the national average
## 912                              Not Available
## 913               Same as the national average
## 914                              Not Available
## 915                              Not Available
## 916                              Not Available
## 917                              Not Available
## 918               Same as the national average
## 919               Same as the national average
## 920                              Not Available
## 921               Same as the national average
## 922               Same as the national average
## 923               Same as the national average
## 924                 Below the national average
## 925               Same as the national average
## 926               Same as the national average
## 927                 Above the national average
## 928               Same as the national average
## 929                              Not Available
## 930               Same as the national average
## 931               Same as the national average
## 932                              Not Available
## 933                              Not Available
## 934               Same as the national average
## 935               Same as the national average
## 936                              Not Available
## 937               Same as the national average
## 938                              Not Available
## 939               Same as the national average
## 940               Same as the national average
## 941               Same as the national average
## 942               Same as the national average
## 943                              Not Available
## 944               Same as the national average
## 945                 Above the national average
## 946               Same as the national average
## 947                 Below the national average
## 948                              Not Available
## 949                              Not Available
## 950               Same as the national average
## 951               Same as the national average
## 952                 Below the national average
## 953               Same as the national average
## 954               Same as the national average
## 955               Same as the national average
## 956               Same as the national average
## 957               Same as the national average
## 958                              Not Available
## 959                 Above the national average
## 960               Same as the national average
## 961               Same as the national average
## 962               Same as the national average
## 963               Same as the national average
## 964                              Not Available
## 965               Same as the national average
## 966               Same as the national average
## 967               Same as the national average
## 968               Same as the national average
## 969               Same as the national average
## 970                 Below the national average
## 971               Same as the national average
## 972               Same as the national average
## 973                              Not Available
## 974                 Above the national average
## 975               Same as the national average
## 976                              Not Available
## 977               Same as the national average
## 978               Same as the national average
## 979                              Not Available
## 980                              Not Available
## 981               Same as the national average
## 982                              Not Available
## 983               Same as the national average
## 984                 Above the national average
## 985               Same as the national average
## 986                              Not Available
## 987               Same as the national average
## 988                              Not Available
## 989               Same as the national average
## 990               Same as the national average
## 991               Same as the national average
## 992               Same as the national average
## 993                              Not Available
## 994                 Below the national average
## 995                 Above the national average
## 996               Same as the national average
## 997                              Not Available
## 998               Same as the national average
## 999               Same as the national average
## 1000                             Not Available
## 1001                             Not Available
## 1002              Same as the national average
## 1003              Same as the national average
## 1004              Same as the national average
## 1005              Same as the national average
## 1006              Same as the national average
## 1007              Same as the national average
## 1008              Same as the national average
## 1009                             Not Available
## 1010              Same as the national average
## 1011                             Not Available
## 1012                             Not Available
## 1013              Same as the national average
## 1014              Same as the national average
## 1015                             Not Available
## 1016              Same as the national average
## 1017              Same as the national average
## 1018                             Not Available
## 1019              Same as the national average
## 1020              Same as the national average
## 1021                             Not Available
## 1022              Same as the national average
## 1023              Same as the national average
## 1024              Same as the national average
## 1025                             Not Available
## 1026                             Not Available
## 1027                             Not Available
## 1028                Below the national average
## 1029              Same as the national average
## 1030              Same as the national average
## 1031                             Not Available
## 1032              Same as the national average
## 1033              Same as the national average
## 1034              Same as the national average
## 1035                             Not Available
## 1036                             Not Available
## 1037              Same as the national average
## 1038              Same as the national average
## 1039                             Not Available
## 1040              Same as the national average
## 1041              Same as the national average
## 1042              Same as the national average
## 1043              Same as the national average
## 1044                             Not Available
## 1045              Same as the national average
## 1046                Below the national average
## 1047              Same as the national average
## 1048                             Not Available
## 1049              Same as the national average
## 1050                             Not Available
## 1051                             Not Available
## 1052              Same as the national average
## 1053              Same as the national average
## 1054              Same as the national average
## 1055              Same as the national average
## 1056              Same as the national average
## 1057                Below the national average
## 1058              Same as the national average
## 1059              Same as the national average
## 1060              Same as the national average
## 1061                             Not Available
## 1062              Same as the national average
## 1063              Same as the national average
## 1064              Same as the national average
## 1065                Below the national average
## 1066              Same as the national average
## 1067              Same as the national average
## 1068                             Not Available
## 1069              Same as the national average
## 1070              Same as the national average
## 1071              Same as the national average
## 1072                             Not Available
## 1073              Same as the national average
## 1074                             Not Available
## 1075                Below the national average
## 1076                             Not Available
## 1077              Same as the national average
## 1078                Above the national average
## 1079              Same as the national average
## 1080                             Not Available
## 1081              Same as the national average
## 1082                Above the national average
## 1083              Same as the national average
## 1084              Same as the national average
## 1085              Same as the national average
## 1086              Same as the national average
## 1087              Same as the national average
## 1088              Same as the national average
## 1089              Same as the national average
## 1090                             Not Available
## 1091              Same as the national average
## 1092              Same as the national average
## 1093              Same as the national average
## 1094              Same as the national average
## 1095                             Not Available
## 1096              Same as the national average
## 1097              Same as the national average
## 1098                Below the national average
## 1099                Below the national average
## 1100              Same as the national average
## 1101              Same as the national average
## 1102              Same as the national average
## 1103                             Not Available
## 1104              Same as the national average
## 1105              Same as the national average
## 1106                             Not Available
## 1107                             Not Available
## 1108              Same as the national average
## 1109              Same as the national average
## 1110              Same as the national average
## 1111              Same as the national average
## 1112                             Not Available
## 1113              Same as the national average
## 1114              Same as the national average
## 1115              Same as the national average
## 1116              Same as the national average
## 1117                             Not Available
## 1118                             Not Available
## 1119              Same as the national average
## 1120                             Not Available
## 1121              Same as the national average
## 1122              Same as the national average
## 1123              Same as the national average
## 1124                             Not Available
## 1125              Same as the national average
## 1126                Above the national average
## 1127              Same as the national average
## 1128              Same as the national average
## 1129                Below the national average
## 1130              Same as the national average
## 1131              Same as the national average
## 1132              Same as the national average
## 1133              Same as the national average
## 1134              Same as the national average
## 1135              Same as the national average
## 1136              Same as the national average
## 1137                             Not Available
## 1138              Same as the national average
## 1139                             Not Available
## 1140                Above the national average
## 1141              Same as the national average
## 1142              Same as the national average
## 1143              Same as the national average
## 1144              Same as the national average
## 1145                             Not Available
## 1146              Same as the national average
## 1147              Same as the national average
## 1148                             Not Available
## 1149                             Not Available
## 1150                             Not Available
## 1151              Same as the national average
## 1152              Same as the national average
## 1153                             Not Available
## 1154              Same as the national average
## 1155                Above the national average
## 1156                             Not Available
## 1157              Same as the national average
## 1158              Same as the national average
## 1159              Same as the national average
## 1160              Same as the national average
## 1161                             Not Available
## 1162                             Not Available
## 1163              Same as the national average
## 1164              Same as the national average
## 1165                             Not Available
## 1166              Same as the national average
## 1167                             Not Available
## 1168                             Not Available
## 1169              Same as the national average
## 1170              Same as the national average
## 1171              Same as the national average
## 1172              Same as the national average
## 1173              Same as the national average
## 1174              Same as the national average
## 1175                             Not Available
## 1176              Same as the national average
## 1177              Same as the national average
## 1178                             Not Available
## 1179              Same as the national average
## 1180                             Not Available
## 1181                             Not Available
## 1182                Below the national average
## 1183              Same as the national average
## 1184                             Not Available
## 1185                             Not Available
## 1186              Same as the national average
## 1187              Same as the national average
## 1188                             Not Available
## 1189              Same as the national average
## 1190              Same as the national average
## 1191              Same as the national average
## 1192              Same as the national average
## 1193              Same as the national average
## 1194                             Not Available
## 1195              Same as the national average
## 1196              Same as the national average
## 1197              Same as the national average
## 1198              Same as the national average
## 1199                             Not Available
## 1200                             Not Available
## 1201                             Not Available
## 1202                             Not Available
## 1203              Same as the national average
## 1204                             Not Available
## 1205              Same as the national average
## 1206              Same as the national average
## 1207                             Not Available
## 1208                             Not Available
## 1209              Same as the national average
## 1210              Same as the national average
## 1211              Same as the national average
## 1212                             Not Available
## 1213                             Not Available
## 1214              Same as the national average
## 1215              Same as the national average
## 1216              Same as the national average
## 1217                Below the national average
## 1218              Same as the national average
## 1219              Same as the national average
## 1220              Same as the national average
## 1221                             Not Available
## 1222              Same as the national average
## 1223              Same as the national average
## 1224                Below the national average
## 1225              Same as the national average
## 1226              Same as the national average
## 1227              Same as the national average
## 1228              Same as the national average
## 1229              Same as the national average
## 1230              Same as the national average
## 1231              Same as the national average
## 1232                             Not Available
## 1233                             Not Available
## 1234              Same as the national average
## 1235                             Not Available
## 1236              Same as the national average
## 1237              Same as the national average
## 1238              Same as the national average
## 1239              Same as the national average
## 1240              Same as the national average
## 1241                             Not Available
## 1242                             Not Available
## 1243              Same as the national average
## 1244              Same as the national average
## 1245              Same as the national average
## 1246              Same as the national average
## 1247              Same as the national average
## 1248                             Not Available
## 1249              Same as the national average
## 1250              Same as the national average
## 1251              Same as the national average
## 1252                             Not Available
## 1253              Same as the national average
## 1254                             Not Available
## 1255                             Not Available
## 1256              Same as the national average
## 1257              Same as the national average
## 1258                Above the national average
## 1259              Same as the national average
## 1260              Same as the national average
## 1261                             Not Available
## 1262                             Not Available
## 1263                Below the national average
## 1264                             Not Available
## 1265              Same as the national average
## 1266              Same as the national average
## 1267                             Not Available
## 1268              Same as the national average
## 1269                             Not Available
## 1270                Above the national average
## 1271              Same as the national average
## 1272              Same as the national average
## 1273              Same as the national average
## 1274              Same as the national average
## 1275              Same as the national average
## 1276                             Not Available
## 1277              Same as the national average
## 1278              Same as the national average
## 1279              Same as the national average
## 1280                Below the national average
## 1281                Above the national average
## 1282              Same as the national average
## 1283              Same as the national average
## 1284              Same as the national average
## 1285              Same as the national average
## 1286              Same as the national average
## 1287              Same as the national average
## 1288                             Not Available
## 1289              Same as the national average
## 1290              Same as the national average
## 1291                Below the national average
## 1292              Same as the national average
## 1293              Same as the national average
## 1294                             Not Available
## 1295              Same as the national average
## 1296              Same as the national average
## 1297              Same as the national average
## 1298              Same as the national average
## 1299                             Not Available
## 1300              Same as the national average
## 1301                             Not Available
## 1302              Same as the national average
## 1303                             Not Available
## 1304              Same as the national average
## 1305              Same as the national average
## 1306                             Not Available
## 1307              Same as the national average
## 1308              Same as the national average
## 1309              Same as the national average
## 1310              Same as the national average
## 1311              Same as the national average
## 1312              Same as the national average
## 1313                             Not Available
## 1314              Same as the national average
## 1315              Same as the national average
## 1316              Same as the national average
## 1317              Same as the national average
## 1318              Same as the national average
## 1319              Same as the national average
## 1320              Same as the national average
## 1321              Same as the national average
## 1322              Same as the national average
## 1323              Same as the national average
## 1324              Same as the national average
## 1325                Below the national average
## 1326              Same as the national average
## 1327                             Not Available
## 1328              Same as the national average
## 1329              Same as the national average
## 1330                             Not Available
## 1331              Same as the national average
## 1332              Same as the national average
## 1333              Same as the national average
## 1334              Same as the national average
## 1335              Same as the national average
## 1336              Same as the national average
## 1337                Below the national average
## 1338                             Not Available
## 1339              Same as the national average
## 1340                             Not Available
## 1341              Same as the national average
## 1342              Same as the national average
## 1343                             Not Available
## 1344                             Not Available
## 1345                Below the national average
## 1346              Same as the national average
## 1347                             Not Available
## 1348              Same as the national average
## 1349                             Not Available
## 1350              Same as the national average
## 1351                Above the national average
## 1352              Same as the national average
## 1353              Same as the national average
## 1354                             Not Available
## 1355              Same as the national average
## 1356                             Not Available
## 1357                             Not Available
## 1358              Same as the national average
## 1359              Same as the national average
## 1360                             Not Available
## 1361              Same as the national average
## 1362                Above the national average
## 1363              Same as the national average
## 1364              Same as the national average
## 1365                             Not Available
## 1366                Below the national average
## 1367              Same as the national average
## 1368              Same as the national average
## 1369              Same as the national average
## 1370              Same as the national average
## 1371              Same as the national average
## 1372              Same as the national average
## 1373                             Not Available
## 1374              Same as the national average
## 1375              Same as the national average
## 1376              Same as the national average
## 1377                             Not Available
## 1378                             Not Available
## 1379                             Not Available
## 1380              Same as the national average
## 1381                             Not Available
## 1382              Same as the national average
## 1383                             Not Available
## 1384              Same as the national average
## 1385              Same as the national average
## 1386              Same as the national average
## 1387              Same as the national average
## 1388              Same as the national average
## 1389              Same as the national average
## 1390              Same as the national average
## 1391                             Not Available
## 1392              Same as the national average
## 1393              Same as the national average
## 1394              Same as the national average
## 1395              Same as the national average
## 1396              Same as the national average
## 1397              Same as the national average
## 1398                Above the national average
## 1399                             Not Available
## 1400                             Not Available
## 1401              Same as the national average
## 1402              Same as the national average
## 1403              Same as the national average
## 1404              Same as the national average
## 1405              Same as the national average
## 1406                             Not Available
## 1407              Same as the national average
## 1408              Same as the national average
## 1409              Same as the national average
## 1410              Same as the national average
## 1411              Same as the national average
## 1412              Same as the national average
## 1413              Same as the national average
## 1414                Below the national average
## 1415              Same as the national average
## 1416              Same as the national average
## 1417              Same as the national average
## 1418              Same as the national average
## 1419              Same as the national average
## 1420                             Not Available
## 1421                             Not Available
## 1422              Same as the national average
## 1423              Same as the national average
## 1424              Same as the national average
## 1425              Same as the national average
## 1426              Same as the national average
## 1427                             Not Available
## 1428              Same as the national average
## 1429              Same as the national average
## 1430              Same as the national average
## 1431              Same as the national average
## 1432              Same as the national average
## 1433              Same as the national average
## 1434              Same as the national average
## 1435              Same as the national average
## 1436                             Not Available
## 1437              Same as the national average
## 1438              Same as the national average
## 1439              Same as the national average
## 1440                             Not Available
## 1441                             Not Available
## 1442                             Not Available
## 1443              Same as the national average
## 1444              Same as the national average
## 1445              Same as the national average
## 1446                Above the national average
## 1447              Same as the national average
## 1448              Same as the national average
## 1449              Same as the national average
## 1450              Same as the national average
## 1451                Above the national average
## 1452                Below the national average
## 1453              Same as the national average
## 1454              Same as the national average
## 1455              Same as the national average
## 1456              Same as the national average
## 1457                Above the national average
## 1458                             Not Available
## 1459                             Not Available
## 1460                             Not Available
## 1461                             Not Available
## 1462              Same as the national average
## 1463                             Not Available
## 1464              Same as the national average
## 1465              Same as the national average
## 1466                Above the national average
## 1467                             Not Available
## 1468              Same as the national average
## 1469                             Not Available
## 1470              Same as the national average
## 1471              Same as the national average
## 1472              Same as the national average
## 1473                             Not Available
## 1474              Same as the national average
## 1475                             Not Available
## 1476                Above the national average
## 1477              Same as the national average
## 1478                             Not Available
## 1479                Below the national average
## 1480                             Not Available
## 1481              Same as the national average
## 1482                             Not Available
## 1483              Same as the national average
## 1484              Same as the national average
## 1485                             Not Available
## 1486              Same as the national average
## 1487              Same as the national average
## 1488              Same as the national average
## 1489                             Not Available
## 1490              Same as the national average
## 1491              Same as the national average
## 1492              Same as the national average
## 1493                             Not Available
## 1494              Same as the national average
## 1495              Same as the national average
## 1496              Same as the national average
## 1497              Same as the national average
## 1498                             Not Available
## 1499              Same as the national average
## 1500              Same as the national average
## 1501              Same as the national average
## 1502              Same as the national average
## 1503                Above the national average
## 1504              Same as the national average
## 1505              Same as the national average
## 1506              Same as the national average
## 1507                Below the national average
## 1508              Same as the national average
## 1509              Same as the national average
## 1510              Same as the national average
## 1511              Same as the national average
## 1512              Same as the national average
## 1513                             Not Available
## 1514                             Not Available
## 1515                Below the national average
## 1516              Same as the national average
## 1517              Same as the national average
## 1518              Same as the national average
## 1519                             Not Available
## 1520              Same as the national average
## 1521                             Not Available
## 1522              Same as the national average
## 1523              Same as the national average
## 1524              Same as the national average
## 1525                Below the national average
## 1526              Same as the national average
## 1527                             Not Available
## 1528              Same as the national average
## 1529              Same as the national average
## 1530              Same as the national average
## 1531                             Not Available
## 1532              Same as the national average
## 1533              Same as the national average
## 1534              Same as the national average
## 1535              Same as the national average
## 1536              Same as the national average
## 1537              Same as the national average
## 1538                Below the national average
## 1539                             Not Available
## 1540              Same as the national average
## 1541                Above the national average
## 1542              Same as the national average
## 1543              Same as the national average
## 1544              Same as the national average
## 1545              Same as the national average
## 1546              Same as the national average
## 1547              Same as the national average
## 1548                             Not Available
## 1549              Same as the national average
## 1550                             Not Available
## 1551                             Not Available
## 1552              Same as the national average
## 1553              Same as the national average
## 1554                             Not Available
## 1555                             Not Available
## 1556              Same as the national average
## 1557              Same as the national average
## 1558              Same as the national average
## 1559                Below the national average
## 1560              Same as the national average
## 1561                             Not Available
## 1562              Same as the national average
## 1563              Same as the national average
## 1564              Same as the national average
## 1565              Same as the national average
## 1566              Same as the national average
## 1567              Same as the national average
## 1568                Below the national average
## 1569              Same as the national average
## 1570              Same as the national average
## 1571                             Not Available
## 1572                             Not Available
## 1573              Same as the national average
## 1574              Same as the national average
## 1575              Same as the national average
## 1576              Same as the national average
## 1577              Same as the national average
## 1578              Same as the national average
## 1579              Same as the national average
## 1580              Same as the national average
## 1581                             Not Available
## 1582              Same as the national average
## 1583              Same as the national average
## 1584              Same as the national average
## 1585              Same as the national average
## 1586              Same as the national average
## 1587                Above the national average
## 1588                             Not Available
## 1589              Same as the national average
## 1590              Same as the national average
## 1591              Same as the national average
## 1592              Same as the national average
## 1593              Same as the national average
## 1594              Same as the national average
## 1595                             Not Available
## 1596              Same as the national average
## 1597              Same as the national average
## 1598              Same as the national average
## 1599              Same as the national average
## 1600                Below the national average
## 1601              Same as the national average
## 1602                             Not Available
## 1603              Same as the national average
## 1604              Same as the national average
## 1605                             Not Available
## 1606              Same as the national average
## 1607                             Not Available
## 1608                Below the national average
## 1609              Same as the national average
## 1610              Same as the national average
## 1611              Same as the national average
## 1612              Same as the national average
## 1613                             Not Available
## 1614              Same as the national average
## 1615              Same as the national average
## 1616              Same as the national average
## 1617                             Not Available
## 1618                             Not Available
## 1619              Same as the national average
## 1620              Same as the national average
## 1621                Below the national average
## 1622                Above the national average
## 1623              Same as the national average
## 1624                             Not Available
## 1625              Same as the national average
## 1626              Same as the national average
## 1627              Same as the national average
## 1628              Same as the national average
## 1629              Same as the national average
## 1630                             Not Available
## 1631              Same as the national average
## 1632              Same as the national average
## 1633              Same as the national average
## 1634              Same as the national average
## 1635              Same as the national average
## 1636                             Not Available
## 1637              Same as the national average
## 1638              Same as the national average
## 1639                             Not Available
## 1640              Same as the national average
## 1641                             Not Available
## 1642                             Not Available
## 1643                             Not Available
## 1644              Same as the national average
## 1645              Same as the national average
## 1646              Same as the national average
## 1647                             Not Available
## 1648                             Not Available
## 1649              Same as the national average
## 1650              Same as the national average
## 1651              Same as the national average
## 1652              Same as the national average
## 1653                Above the national average
## 1654                             Not Available
## 1655                             Not Available
## 1656              Same as the national average
## 1657                             Not Available
## 1658              Same as the national average
## 1659              Same as the national average
## 1660              Same as the national average
## 1661                             Not Available
## 1662              Same as the national average
## 1663              Same as the national average
## 1664              Same as the national average
## 1665              Same as the national average
## 1666              Same as the national average
## 1667              Same as the national average
## 1668              Same as the national average
## 1669                             Not Available
## 1670                             Not Available
## 1671              Same as the national average
## 1672                             Not Available
## 1673              Same as the national average
## 1674                Above the national average
## 1675              Same as the national average
## 1676              Same as the national average
## 1677              Same as the national average
## 1678              Same as the national average
## 1679                             Not Available
## 1680                Above the national average
## 1681              Same as the national average
## 1682              Same as the national average
## 1683                             Not Available
## 1684              Same as the national average
## 1685                Below the national average
## 1686              Same as the national average
## 1687              Same as the national average
## 1688              Same as the national average
## 1689              Same as the national average
## 1690              Same as the national average
## 1691              Same as the national average
## 1692              Same as the national average
## 1693                             Not Available
## 1694              Same as the national average
## 1695                             Not Available
## 1696                Below the national average
## 1697                Below the national average
## 1698                             Not Available
## 1699                Above the national average
## 1700              Same as the national average
## 1701                Below the national average
## 1702                             Not Available
## 1703              Same as the national average
## 1704                             Not Available
## 1705                             Not Available
## 1706              Same as the national average
## 1707              Same as the national average
## 1708              Same as the national average
## 1709              Same as the national average
## 1710              Same as the national average
## 1711              Same as the national average
## 1712                Below the national average
## 1713                             Not Available
## 1714                             Not Available
## 1715              Same as the national average
## 1716              Same as the national average
## 1717              Same as the national average
## 1718                             Not Available
## 1719                Below the national average
## 1720              Same as the national average
## 1721              Same as the national average
## 1722              Same as the national average
## 1723              Same as the national average
## 1724              Same as the national average
## 1725                             Not Available
## 1726              Same as the national average
## 1727                             Not Available
## 1728                             Not Available
## 1729              Same as the national average
## 1730              Same as the national average
## 1731              Same as the national average
## 1732              Same as the national average
## 1733                Above the national average
## 1734              Same as the national average
## 1735              Same as the national average
## 1736                             Not Available
## 1737                             Not Available
## 1738              Same as the national average
## 1739                             Not Available
## 1740              Same as the national average
## 1741                             Not Available
## 1742              Same as the national average
## 1743              Same as the national average
## 1744              Same as the national average
## 1745              Same as the national average
## 1746                             Not Available
## 1747              Same as the national average
## 1748              Same as the national average
## 1749                             Not Available
## 1750                             Not Available
## 1751              Same as the national average
## 1752              Same as the national average
## 1753                             Not Available
## 1754                             Not Available
## 1755              Same as the national average
## 1756              Same as the national average
## 1757              Same as the national average
## 1758              Same as the national average
## 1759              Same as the national average
## 1760              Same as the national average
## 1761              Same as the national average
## 1762              Same as the national average
## 1763                             Not Available
## 1764                             Not Available
## 1765              Same as the national average
## 1766                             Not Available
## 1767              Same as the national average
## 1768                             Not Available
## 1769              Same as the national average
## 1770              Same as the national average
## 1771                             Not Available
## 1772                             Not Available
## 1773              Same as the national average
## 1774              Same as the national average
## 1775              Same as the national average
## 1776              Same as the national average
## 1777              Same as the national average
## 1778                             Not Available
## 1779                             Not Available
## 1780                             Not Available
## 1781              Same as the national average
## 1782              Same as the national average
## 1783              Same as the national average
## 1784              Same as the national average
## 1785                             Not Available
## 1786                             Not Available
## 1787                             Not Available
## 1788              Same as the national average
## 1789                             Not Available
## 1790              Same as the national average
## 1791              Same as the national average
## 1792              Same as the national average
## 1793              Same as the national average
## 1794              Same as the national average
## 1795              Same as the national average
## 1796              Same as the national average
## 1797              Same as the national average
## 1798              Same as the national average
## 1799              Same as the national average
## 1800              Same as the national average
## 1801                             Not Available
## 1802              Same as the national average
## 1803              Same as the national average
## 1804              Same as the national average
## 1805                             Not Available
## 1806                             Not Available
## 1807                             Not Available
## 1808                             Not Available
## 1809                             Not Available
## 1810                Below the national average
## 1811              Same as the national average
## 1812              Same as the national average
## 1813              Same as the national average
## 1814                             Not Available
## 1815              Same as the national average
## 1816                             Not Available
## 1817              Same as the national average
## 1818                             Not Available
## 1819                             Not Available
## 1820              Same as the national average
## 1821              Same as the national average
## 1822                             Not Available
## 1823                             Not Available
## 1824              Same as the national average
## 1825              Same as the national average
## 1826              Same as the national average
## 1827                             Not Available
## 1828                Below the national average
## 1829                             Not Available
## 1830                Below the national average
## 1831              Same as the national average
## 1832              Same as the national average
## 1833              Same as the national average
## 1834              Same as the national average
## 1835                             Not Available
## 1836              Same as the national average
## 1837              Same as the national average
## 1838              Same as the national average
## 1839                             Not Available
## 1840                             Not Available
## 1841              Same as the national average
## 1842              Same as the national average
## 1843              Same as the national average
## 1844              Same as the national average
## 1845              Same as the national average
## 1846              Same as the national average
## 1847                             Not Available
## 1848              Same as the national average
## 1849                             Not Available
## 1850              Same as the national average
## 1851                             Not Available
## 1852              Same as the national average
## 1853              Same as the national average
## 1854              Same as the national average
## 1855              Same as the national average
## 1856                             Not Available
## 1857              Same as the national average
## 1858              Same as the national average
## 1859                             Not Available
## 1860              Same as the national average
## 1861              Same as the national average
## 1862              Same as the national average
## 1863              Same as the national average
## 1864                Above the national average
## 1865              Same as the national average
## 1866              Same as the national average
## 1867                Below the national average
## 1868              Same as the national average
## 1869              Same as the national average
## 1870              Same as the national average
## 1871                Below the national average
## 1872              Same as the national average
## 1873              Same as the national average
## 1874              Same as the national average
## 1875                Above the national average
## 1876              Same as the national average
## 1877              Same as the national average
## 1878              Same as the national average
## 1879                             Not Available
## 1880              Same as the national average
## 1881              Same as the national average
## 1882                             Not Available
## 1883              Same as the national average
## 1884              Same as the national average
## 1885              Same as the national average
## 1886              Same as the national average
## 1887                             Not Available
## 1888                             Not Available
## 1889              Same as the national average
## 1890              Same as the national average
## 1891              Same as the national average
## 1892                             Not Available
## 1893              Same as the national average
## 1894              Same as the national average
## 1895              Same as the national average
## 1896                             Not Available
## 1897                             Not Available
## 1898                Below the national average
## 1899                             Not Available
## 1900              Same as the national average
## 1901              Same as the national average
## 1902                             Not Available
## 1903                             Not Available
## 1904              Same as the national average
## 1905                             Not Available
## 1906              Same as the national average
## 1907              Same as the national average
## 1908              Same as the national average
## 1909              Same as the national average
## 1910              Same as the national average
## 1911              Same as the national average
## 1912              Same as the national average
## 1913              Same as the national average
## 1914              Same as the national average
## 1915              Same as the national average
## 1916              Same as the national average
## 1917              Same as the national average
## 1918              Same as the national average
## 1919              Same as the national average
## 1920                             Not Available
## 1921                Below the national average
## 1922                             Not Available
## 1923                             Not Available
## 1924                             Not Available
## 1925              Same as the national average
## 1926              Same as the national average
## 1927                Below the national average
## 1928              Same as the national average
## 1929              Same as the national average
## 1930              Same as the national average
## 1931              Same as the national average
## 1932              Same as the national average
## 1933              Same as the national average
## 1934              Same as the national average
## 1935              Same as the national average
## 1936              Same as the national average
## 1937              Same as the national average
## 1938              Same as the national average
## 1939              Same as the national average
## 1940                             Not Available
## 1941                             Not Available
## 1942              Same as the national average
## 1943              Same as the national average
## 1944              Same as the national average
## 1945              Same as the national average
## 1946              Same as the national average
## 1947              Same as the national average
## 1948                             Not Available
## 1949                             Not Available
## 1950              Same as the national average
## 1951                             Not Available
## 1952              Same as the national average
## 1953              Same as the national average
## 1954              Same as the national average
## 1955              Same as the national average
## 1956                             Not Available
## 1957                             Not Available
## 1958              Same as the national average
## 1959                             Not Available
## 1960              Same as the national average
## 1961              Same as the national average
## 1962              Same as the national average
## 1963                             Not Available
## 1964                Above the national average
## 1965              Same as the national average
## 1966              Same as the national average
## 1967                             Not Available
## 1968              Same as the national average
## 1969                             Not Available
## 1970                             Not Available
## 1971                             Not Available
## 1972              Same as the national average
## 1973              Same as the national average
## 1974              Same as the national average
## 1975              Same as the national average
## 1976                             Not Available
## 1977                             Not Available
## 1978              Same as the national average
## 1979              Same as the national average
## 1980              Same as the national average
## 1981              Same as the national average
## 1982                             Not Available
## 1983              Same as the national average
## 1984              Same as the national average
## 1985              Same as the national average
## 1986              Same as the national average
## 1987                             Not Available
## 1988                             Not Available
## 1989                             Not Available
## 1990              Same as the national average
## 1991              Same as the national average
## 1992              Same as the national average
## 1993              Same as the national average
## 1994              Same as the national average
## 1995              Same as the national average
## 1996              Same as the national average
## 1997              Same as the national average
## 1998              Same as the national average
## 1999              Same as the national average
## 2000              Same as the national average
## 2001              Same as the national average
## 2002              Same as the national average
## 2003              Same as the national average
## 2004              Same as the national average
## 2005                             Not Available
## 2006                             Not Available
## 2007              Same as the national average
## 2008              Same as the national average
## 2009              Same as the national average
## 2010              Same as the national average
## 2011                             Not Available
## 2012              Same as the national average
## 2013              Same as the national average
## 2014              Same as the national average
## 2015              Same as the national average
## 2016              Same as the national average
## 2017              Same as the national average
## 2018              Same as the national average
## 2019                             Not Available
## 2020              Same as the national average
## 2021                Below the national average
## 2022              Same as the national average
## 2023              Same as the national average
## 2024              Same as the national average
## 2025              Same as the national average
## 2026                Below the national average
## 2027                             Not Available
## 2028              Same as the national average
## 2029              Same as the national average
## 2030                             Not Available
## 2031              Same as the national average
## 2032              Same as the national average
## 2033              Same as the national average
## 2034              Same as the national average
## 2035                Below the national average
## 2036                             Not Available
## 2037                Above the national average
## 2038              Same as the national average
## 2039              Same as the national average
## 2040              Same as the national average
## 2041              Same as the national average
## 2042              Same as the national average
## 2043              Same as the national average
## 2044              Same as the national average
## 2045              Same as the national average
## 2046              Same as the national average
## 2047              Same as the national average
## 2048              Same as the national average
## 2049                             Not Available
## 2050                             Not Available
## 2051              Same as the national average
## 2052              Same as the national average
## 2053                             Not Available
## 2054              Same as the national average
## 2055              Same as the national average
## 2056              Same as the national average
## 2057                             Not Available
## 2058              Same as the national average
## 2059              Same as the national average
## 2060              Same as the national average
## 2061              Same as the national average
## 2062                             Not Available
## 2063              Same as the national average
## 2064              Same as the national average
## 2065              Same as the national average
## 2066              Same as the national average
## 2067                             Not Available
## 2068              Same as the national average
## 2069              Same as the national average
## 2070              Same as the national average
## 2071                             Not Available
## 2072              Same as the national average
## 2073              Same as the national average
## 2074                             Not Available
## 2075              Same as the national average
## 2076                             Not Available
## 2077                Above the national average
## 2078              Same as the national average
## 2079              Same as the national average
## 2080              Same as the national average
## 2081                             Not Available
## 2082              Same as the national average
## 2083                             Not Available
## 2084                Below the national average
## 2085              Same as the national average
## 2086              Same as the national average
## 2087              Same as the national average
## 2088              Same as the national average
## 2089                             Not Available
## 2090                             Not Available
## 2091              Same as the national average
## 2092              Same as the national average
## 2093                             Not Available
## 2094                             Not Available
## 2095              Same as the national average
## 2096              Same as the national average
## 2097              Same as the national average
## 2098                             Not Available
## 2099              Same as the national average
## 2100              Same as the national average
## 2101              Same as the national average
## 2102              Same as the national average
## 2103              Same as the national average
## 2104              Same as the national average
## 2105                Below the national average
## 2106                             Not Available
## 2107                             Not Available
## 2108              Same as the national average
## 2109                             Not Available
## 2110                             Not Available
## 2111                             Not Available
## 2112              Same as the national average
## 2113                             Not Available
## 2114              Same as the national average
## 2115              Same as the national average
## 2116                             Not Available
## 2117              Same as the national average
## 2118              Same as the national average
## 2119                             Not Available
## 2120              Same as the national average
## 2121              Same as the national average
## 2122              Same as the national average
## 2123              Same as the national average
## 2124              Same as the national average
## 2125              Same as the national average
## 2126                             Not Available
## 2127                             Not Available
## 2128              Same as the national average
## 2129              Same as the national average
## 2130              Same as the national average
## 2131              Same as the national average
## 2132                             Not Available
## 2133              Same as the national average
## 2134              Same as the national average
## 2135              Same as the national average
## 2136              Same as the national average
## 2137              Same as the national average
## 2138                             Not Available
## 2139                             Not Available
## 2140                             Not Available
## 2141                             Not Available
## 2142              Same as the national average
## 2143              Same as the national average
## 2144              Same as the national average
## 2145                             Not Available
## 2146              Same as the national average
## 2147              Same as the national average
## 2148              Same as the national average
## 2149              Same as the national average
## 2150              Same as the national average
## 2151              Same as the national average
## 2152                             Not Available
## 2153              Same as the national average
## 2154                Below the national average
## 2155                             Not Available
## 2156              Same as the national average
## 2157                             Not Available
## 2158              Same as the national average
## 2159              Same as the national average
## 2160              Same as the national average
## 2161              Same as the national average
## 2162                             Not Available
## 2163                             Not Available
## 2164                Below the national average
## 2165                             Not Available
## 2166                Below the national average
## 2167                             Not Available
## 2168              Same as the national average
## 2169                             Not Available
## 2170              Same as the national average
## 2171              Same as the national average
## 2172              Same as the national average
## 2173                Above the national average
## 2174              Same as the national average
## 2175              Same as the national average
## 2176                             Not Available
## 2177              Same as the national average
## 2178              Same as the national average
## 2179              Same as the national average
## 2180              Same as the national average
## 2181                Above the national average
## 2182                             Not Available
## 2183              Same as the national average
## 2184                             Not Available
## 2185                             Not Available
## 2186              Same as the national average
## 2187              Same as the national average
## 2188                             Not Available
## 2189              Same as the national average
## 2190              Same as the national average
## 2191              Same as the national average
## 2192                             Not Available
## 2193              Same as the national average
## 2194              Same as the national average
## 2195              Same as the national average
## 2196                             Not Available
## 2197              Same as the national average
## 2198                             Not Available
## 2199              Same as the national average
## 2200                             Not Available
## 2201              Same as the national average
## 2202                             Not Available
## 2203              Same as the national average
## 2204              Same as the national average
## 2205              Same as the national average
## 2206                             Not Available
## 2207              Same as the national average
## 2208              Same as the national average
## 2209              Same as the national average
## 2210                             Not Available
## 2211              Same as the national average
## 2212                Above the national average
## 2213                             Not Available
## 2214              Same as the national average
## 2215              Same as the national average
## 2216              Same as the national average
## 2217              Same as the national average
## 2218              Same as the national average
## 2219              Same as the national average
## 2220              Same as the national average
## 2221              Same as the national average
## 2222              Same as the national average
## 2223              Same as the national average
## 2224                Above the national average
## 2225                             Not Available
## 2226              Same as the national average
## 2227              Same as the national average
## 2228                             Not Available
## 2229              Same as the national average
## 2230              Same as the national average
## 2231                             Not Available
## 2232              Same as the national average
## 2233              Same as the national average
## 2234              Same as the national average
## 2235                             Not Available
## 2236              Same as the national average
## 2237              Same as the national average
## 2238              Same as the national average
## 2239              Same as the national average
## 2240              Same as the national average
## 2241                             Not Available
## 2242              Same as the national average
## 2243              Same as the national average
## 2244                Above the national average
## 2245              Same as the national average
## 2246                             Not Available
## 2247              Same as the national average
## 2248              Same as the national average
## 2249              Same as the national average
## 2250                             Not Available
## 2251                             Not Available
## 2252              Same as the national average
## 2253              Same as the national average
## 2254              Same as the national average
## 2255                             Not Available
## 2256              Same as the national average
## 2257                             Not Available
## 2258              Same as the national average
## 2259                             Not Available
## 2260              Same as the national average
## 2261              Same as the national average
## 2262              Same as the national average
## 2263                Below the national average
## 2264              Same as the national average
## 2265              Same as the national average
## 2266                             Not Available
## 2267                             Not Available
## 2268              Same as the national average
## 2269                             Not Available
## 2270                             Not Available
## 2271              Same as the national average
## 2272              Same as the national average
## 2273                Above the national average
## 2274              Same as the national average
## 2275                             Not Available
## 2276              Same as the national average
## 2277              Same as the national average
## 2278              Same as the national average
## 2279                             Not Available
## 2280              Same as the national average
## 2281                             Not Available
## 2282                Below the national average
## 2283              Same as the national average
## 2284              Same as the national average
## 2285                Above the national average
## 2286              Same as the national average
## 2287                             Not Available
## 2288                             Not Available
## 2289              Same as the national average
## 2290              Same as the national average
## 2291                Below the national average
## 2292              Same as the national average
## 2293                Below the national average
## 2294              Same as the national average
## 2295                             Not Available
## 2296                             Not Available
## 2297              Same as the national average
## 2298                             Not Available
## 2299              Same as the national average
## 2300                             Not Available
## 2301              Same as the national average
## 2302                             Not Available
## 2303              Same as the national average
## 2304              Same as the national average
## 2305                             Not Available
## 2306                             Not Available
## 2307                             Not Available
## 2308              Same as the national average
## 2309              Same as the national average
## 2310                Below the national average
## 2311                             Not Available
## 2312              Same as the national average
## 2313              Same as the national average
## 2314              Same as the national average
## 2315              Same as the national average
## 2316                             Not Available
## 2317              Same as the national average
## 2318                             Not Available
## 2319              Same as the national average
## 2320                             Not Available
## 2321                             Not Available
## 2322              Same as the national average
## 2323                Below the national average
## 2324                             Not Available
## 2325              Same as the national average
## 2326              Same as the national average
## 2327              Same as the national average
## 2328              Same as the national average
## 2329                             Not Available
## 2330                             Not Available
## 2331                             Not Available
## 2332                             Not Available
## 2333                             Not Available
## 2334              Same as the national average
## 2335                             Not Available
## 2336              Same as the national average
## 2337                             Not Available
## 2338              Same as the national average
## 2339                             Not Available
## 2340                             Not Available
## 2341              Same as the national average
## 2342                             Not Available
## 2343                             Not Available
## 2344              Same as the national average
## 2345                             Not Available
## 2346              Same as the national average
## 2347              Same as the national average
## 2348              Same as the national average
## 2349                Below the national average
## 2350              Same as the national average
## 2351              Same as the national average
## 2352                             Not Available
## 2353              Same as the national average
## 2354              Same as the national average
## 2355                             Not Available
## 2356              Same as the national average
## 2357                Below the national average
## 2358              Same as the national average
## 2359                Below the national average
## 2360                             Not Available
## 2361              Same as the national average
## 2362              Same as the national average
## 2363              Same as the national average
## 2364                Above the national average
## 2365                             Not Available
## 2366                             Not Available
## 2367                             Not Available
## 2368              Same as the national average
## 2369                             Not Available
## 2370              Same as the national average
## 2371              Same as the national average
## 2372              Same as the national average
## 2373              Same as the national average
## 2374                             Not Available
## 2375                Above the national average
## 2376              Same as the national average
## 2377              Same as the national average
## 2378                             Not Available
## 2379                             Not Available
## 2380              Same as the national average
## 2381              Same as the national average
## 2382                             Not Available
## 2383                             Not Available
## 2384                             Not Available
## 2385              Same as the national average
## 2386              Same as the national average
## 2387                Above the national average
## 2388              Same as the national average
## 2389                Below the national average
## 2390                             Not Available
## 2391                Below the national average
## 2392              Same as the national average
## 2393              Same as the national average
## 2394              Same as the national average
## 2395                             Not Available
## 2396                             Not Available
## 2397                             Not Available
## 2398              Same as the national average
## 2399              Same as the national average
## 2400                             Not Available
## 2401                Below the national average
## 2402                             Not Available
## 2403                             Not Available
## 2404              Same as the national average
## 2405                             Not Available
## 2406              Same as the national average
## 2407              Same as the national average
## 2408              Same as the national average
## 2409              Same as the national average
## 2410                             Not Available
## 2411              Same as the national average
## 2412              Same as the national average
## 2413              Same as the national average
## 2414                             Not Available
## 2415                             Not Available
## 2416              Same as the national average
## 2417              Same as the national average
## 2418                             Not Available
## 2419                             Not Available
## 2420              Same as the national average
## 2421              Same as the national average
## 2422              Same as the national average
## 2423              Same as the national average
## 2424                             Not Available
## 2425              Same as the national average
## 2426                             Not Available
## 2427              Same as the national average
## 2428                             Not Available
## 2429              Same as the national average
## 2430                             Not Available
## 2431                Below the national average
## 2432                             Not Available
## 2433                             Not Available
## 2434              Same as the national average
## 2435              Same as the national average
## 2436                Above the national average
## 2437                             Not Available
## 2438                             Not Available
## 2439              Same as the national average
## 2440                             Not Available
## 2441              Same as the national average
## 2442                             Not Available
## 2443              Same as the national average
## 2444                             Not Available
## 2445              Same as the national average
## 2446              Same as the national average
## 2447                             Not Available
## 2448              Same as the national average
## 2449                             Not Available
## 2450              Same as the national average
## 2451              Same as the national average
## 2452              Same as the national average
## 2453                             Not Available
## 2454              Same as the national average
## 2455              Same as the national average
## 2456                             Not Available
## 2457              Same as the national average
## 2458                             Not Available
## 2459              Same as the national average
## 2460              Same as the national average
## 2461              Same as the national average
## 2462              Same as the national average
## 2463              Same as the national average
## 2464                Above the national average
## 2465                             Not Available
## 2466              Same as the national average
## 2467              Same as the national average
## 2468                             Not Available
## 2469              Same as the national average
## 2470              Same as the national average
## 2471              Same as the national average
## 2472                             Not Available
## 2473              Same as the national average
## 2474              Same as the national average
## 2475              Same as the national average
## 2476              Same as the national average
## 2477              Same as the national average
## 2478                Below the national average
## 2479              Same as the national average
## 2480                Below the national average
## 2481              Same as the national average
## 2482              Same as the national average
## 2483              Same as the national average
## 2484              Same as the national average
## 2485                             Not Available
## 2486              Same as the national average
## 2487                             Not Available
## 2488                Below the national average
## 2489                             Not Available
## 2490                Below the national average
## 2491              Same as the national average
## 2492              Same as the national average
## 2493                             Not Available
## 2494                             Not Available
## 2495              Same as the national average
## 2496                             Not Available
## 2497                             Not Available
## 2498              Same as the national average
## 2499                             Not Available
## 2500              Same as the national average
## 2501                             Not Available
## 2502                             Not Available
## 2503              Same as the national average
## 2504              Same as the national average
## 2505              Same as the national average
## 2506                             Not Available
## 2507              Same as the national average
## 2508              Same as the national average
## 2509              Same as the national average
## 2510              Same as the national average
## 2511              Same as the national average
## 2512              Same as the national average
## 2513                             Not Available
## 2514              Same as the national average
## 2515              Same as the national average
## 2516              Same as the national average
## 2517              Same as the national average
## 2518              Same as the national average
## 2519              Same as the national average
## 2520                             Not Available
## 2521              Same as the national average
## 2522              Same as the national average
## 2523              Same as the national average
## 2524                             Not Available
## 2525              Same as the national average
## 2526              Same as the national average
## 2527              Same as the national average
## 2528              Same as the national average
## 2529                             Not Available
## 2530              Same as the national average
## 2531                             Not Available
## 2532              Same as the national average
## 2533                             Not Available
## 2534              Same as the national average
## 2535              Same as the national average
## 2536              Same as the national average
## 2537              Same as the national average
## 2538                             Not Available
## 2539                             Not Available
## 2540                             Not Available
## 2541              Same as the national average
## 2542              Same as the national average
## 2543                             Not Available
## 2544              Same as the national average
## 2545              Same as the national average
## 2546                Below the national average
## 2547                             Not Available
## 2548              Same as the national average
## 2549                Above the national average
## 2550                             Not Available
## 2551              Same as the national average
## 2552                             Not Available
## 2553              Same as the national average
## 2554                             Not Available
## 2555              Same as the national average
## 2556                             Not Available
## 2557                             Not Available
## 2558                             Not Available
## 2559                             Not Available
## 2560                Below the national average
## 2561                             Not Available
## 2562              Same as the national average
## 2563              Same as the national average
## 2564              Same as the national average
## 2565              Same as the national average
## 2566                             Not Available
## 2567              Same as the national average
## 2568              Same as the national average
## 2569              Same as the national average
## 2570              Same as the national average
## 2571                             Not Available
## 2572              Same as the national average
## 2573                             Not Available
## 2574                Below the national average
## 2575              Same as the national average
## 2576              Same as the national average
## 2577              Same as the national average
## 2578              Same as the national average
## 2579              Same as the national average
## 2580              Same as the national average
## 2581              Same as the national average
## 2582                             Not Available
## 2583                             Not Available
## 2584              Same as the national average
## 2585                             Not Available
## 2586              Same as the national average
## 2587                             Not Available
## 2588                             Not Available
## 2589              Same as the national average
## 2590              Same as the national average
## 2591              Same as the national average
## 2592              Same as the national average
## 2593              Same as the national average
## 2594              Same as the national average
## 2595                Below the national average
## 2596                             Not Available
## 2597                Below the national average
## 2598              Same as the national average
## 2599              Same as the national average
## 2600              Same as the national average
## 2601              Same as the national average
## 2602                Below the national average
## 2603                             Not Available
## 2604              Same as the national average
## 2605                Below the national average
## 2606                             Not Available
## 2607                             Not Available
## 2608              Same as the national average
## 2609                             Not Available
## 2610              Same as the national average
## 2611              Same as the national average
## 2612              Same as the national average
## 2613              Same as the national average
## 2614              Same as the national average
## 2615              Same as the national average
## 2616                             Not Available
## 2617              Same as the national average
## 2618              Same as the national average
## 2619              Same as the national average
## 2620              Same as the national average
## 2621                             Not Available
## 2622              Same as the national average
## 2623              Same as the national average
## 2624              Same as the national average
## 2625                             Not Available
## 2626              Same as the national average
## 2627              Same as the national average
## 2628              Same as the national average
## 2629              Same as the national average
## 2630              Same as the national average
## 2631                             Not Available
## 2632                             Not Available
## 2633              Same as the national average
## 2634              Same as the national average
## 2635              Same as the national average
## 2636                             Not Available
## 2637              Same as the national average
## 2638              Same as the national average
## 2639              Same as the national average
## 2640              Same as the national average
## 2641              Same as the national average
## 2642              Same as the national average
## 2643              Same as the national average
## 2644              Same as the national average
## 2645              Same as the national average
## 2646              Same as the national average
## 2647              Same as the national average
## 2648                             Not Available
## 2649              Same as the national average
## 2650              Same as the national average
## 2651              Same as the national average
## 2652              Same as the national average
## 2653                             Not Available
## 2654              Same as the national average
## 2655                             Not Available
## 2656              Same as the national average
## 2657              Same as the national average
## 2658              Same as the national average
## 2659              Same as the national average
## 2660              Same as the national average
## 2661                             Not Available
## 2662              Same as the national average
## 2663                Below the national average
## 2664              Same as the national average
## 2665              Same as the national average
## 2666              Same as the national average
## 2667              Same as the national average
## 2668                             Not Available
## 2669              Same as the national average
## 2670              Same as the national average
## 2671              Same as the national average
## 2672              Same as the national average
## 2673                             Not Available
## 2674              Same as the national average
## 2675                             Not Available
## 2676              Same as the national average
## 2677              Same as the national average
## 2678                             Not Available
## 2679              Same as the national average
## 2680              Same as the national average
## 2681                             Not Available
## 2682              Same as the national average
## 2683                             Not Available
## 2684              Same as the national average
## 2685              Same as the national average
## 2686              Same as the national average
## 2687              Same as the national average
## 2688              Same as the national average
## 2689                             Not Available
## 2690                             Not Available
## 2691                Below the national average
## 2692              Same as the national average
## 2693              Same as the national average
## 2694              Same as the national average
## 2695                             Not Available
## 2696              Same as the national average
## 2697                Below the national average
## 2698                             Not Available
## 2699                             Not Available
## 2700              Same as the national average
## 2701              Same as the national average
## 2702              Same as the national average
## 2703                             Not Available
## 2704              Same as the national average
## 2705              Same as the national average
## 2706              Same as the national average
## 2707                Below the national average
## 2708                             Not Available
## 2709              Same as the national average
## 2710              Same as the national average
## 2711                             Not Available
## 2712                             Not Available
## 2713              Same as the national average
## 2714              Same as the national average
## 2715              Same as the national average
## 2716              Same as the national average
## 2717                             Not Available
## 2718              Same as the national average
## 2719              Same as the national average
## 2720              Same as the national average
## 2721              Same as the national average
## 2722              Same as the national average
## 2723              Same as the national average
## 2724              Same as the national average
## 2725                             Not Available
## 2726              Same as the national average
## 2727              Same as the national average
## 2728                Above the national average
## 2729              Same as the national average
## 2730                             Not Available
## 2731                             Not Available
## 2732              Same as the national average
## 2733              Same as the national average
## 2734                             Not Available
## 2735              Same as the national average
## 2736              Same as the national average
## 2737                Below the national average
## 2738              Same as the national average
## 2739              Same as the national average
## 2740                             Not Available
## 2741              Same as the national average
## 2742              Same as the national average
## 2743                             Not Available
## 2744                             Not Available
## 2745              Same as the national average
## 2746              Same as the national average
## 2747                             Not Available
## 2748                             Not Available
## 2749              Same as the national average
## 2750              Same as the national average
## 2751              Same as the national average
## 2752              Same as the national average
## 2753                             Not Available
## 2754              Same as the national average
## 2755              Same as the national average
## 2756                             Not Available
## 2757              Same as the national average
## 2758                Below the national average
## 2759              Same as the national average
## 2760              Same as the national average
## 2761              Same as the national average
## 2762              Same as the national average
## 2763                             Not Available
## 2764                             Not Available
## 2765              Same as the national average
## 2766              Same as the national average
## 2767              Same as the national average
## 2768              Same as the national average
## 2769                             Not Available
## 2770                             Not Available
## 2771                             Not Available
## 2772                             Not Available
## 2773              Same as the national average
## 2774              Same as the national average
## 2775                             Not Available
## 2776              Same as the national average
## 2777              Same as the national average
## 2778              Same as the national average
## 2779              Same as the national average
## 2780              Same as the national average
## 2781              Same as the national average
## 2782              Same as the national average
## 2783              Same as the national average
## 2784              Same as the national average
## 2785              Same as the national average
## 2786                             Not Available
## 2787              Same as the national average
## 2788              Same as the national average
## 2789              Same as the national average
## 2790              Same as the national average
## 2791              Same as the national average
## 2792                Above the national average
## 2793              Same as the national average
## 2794              Same as the national average
## 2795              Same as the national average
## 2796              Same as the national average
## 2797                Below the national average
## 2798              Same as the national average
## 2799              Same as the national average
## 2800                Below the national average
## 2801                Above the national average
## 2802                             Not Available
## 2803                Below the national average
## 2804              Same as the national average
## 2805              Same as the national average
## 2806                             Not Available
## 2807              Same as the national average
## 2808                Below the national average
## 2809              Same as the national average
## 2810              Same as the national average
## 2811                Above the national average
## 2812              Same as the national average
## 2813              Same as the national average
## 2814                             Not Available
## 2815                             Not Available
## 2816              Same as the national average
## 2817                             Not Available
## 2818              Same as the national average
## 2819              Same as the national average
## 2820                             Not Available
## 2821                             Not Available
## 2822              Same as the national average
## 2823              Same as the national average
## 2824              Same as the national average
## 2825              Same as the national average
## 2826              Same as the national average
## 2827                             Not Available
## 2828                             Not Available
## 2829                             Not Available
## 2830              Same as the national average
## 2831              Same as the national average
## 2832                             Not Available
## 2833                Above the national average
## 2834              Same as the national average
## 2835              Same as the national average
## 2836              Same as the national average
## 2837                             Not Available
## 2838              Same as the national average
## 2839                Below the national average
## 2840              Same as the national average
## 2841              Same as the national average
## 2842                             Not Available
## 2843                             Not Available
## 2844              Same as the national average
## 2845                             Not Available
## 2846                             Not Available
## 2847                             Not Available
## 2848              Same as the national average
## 2849              Same as the national average
## 2850              Same as the national average
## 2851              Same as the national average
## 2852              Same as the national average
## 2853                             Not Available
## 2854              Same as the national average
## 2855              Same as the national average
## 2856              Same as the national average
## 2857              Same as the national average
## 2858              Same as the national average
## 2859              Same as the national average
## 2860              Same as the national average
## 2861              Same as the national average
## 2862              Same as the national average
## 2863              Same as the national average
## 2864              Same as the national average
## 2865              Same as the national average
## 2866              Same as the national average
## 2867                             Not Available
## 2868              Same as the national average
## 2869              Same as the national average
## 2870                             Not Available
## 2871              Same as the national average
## 2872                Below the national average
## 2873              Same as the national average
## 2874                             Not Available
## 2875              Same as the national average
## 2876              Same as the national average
## 2877              Same as the national average
## 2878              Same as the national average
## 2879                             Not Available
## 2880                             Not Available
## 2881                Below the national average
## 2882                             Not Available
## 2883              Same as the national average
## 2884                             Not Available
## 2885                Below the national average
## 2886              Same as the national average
## 2887              Same as the national average
## 2888                             Not Available
## 2889                             Not Available
## 2890              Same as the national average
## 2891              Same as the national average
## 2892              Same as the national average
## 2893              Same as the national average
## 2894              Same as the national average
## 2895              Same as the national average
## 2896              Same as the national average
## 2897                Below the national average
## 2898              Same as the national average
## 2899              Same as the national average
## 2900                             Not Available
## 2901                Below the national average
## 2902                             Not Available
## 2903                             Not Available
## 2904              Same as the national average
## 2905              Same as the national average
## 2906              Same as the national average
## 2907              Same as the national average
## 2908              Same as the national average
## 2909              Same as the national average
## 2910                             Not Available
## 2911              Same as the national average
## 2912              Same as the national average
## 2913                Below the national average
## 2914                             Not Available
## 2915              Same as the national average
## 2916              Same as the national average
## 2917              Same as the national average
## 2918                Below the national average
## 2919              Same as the national average
## 2920                Below the national average
## 2921              Same as the national average
## 2922              Same as the national average
## 2923              Same as the national average
## 2924              Same as the national average
## 2925              Same as the national average
## 2926                             Not Available
## 2927                             Not Available
## 2928              Same as the national average
## 2929              Same as the national average
## 2930              Same as the national average
## 2931              Same as the national average
## 2932              Same as the national average
## 2933              Same as the national average
## 2934                             Not Available
## 2935              Same as the national average
## 2936              Same as the national average
## 2937                Below the national average
## 2938                             Not Available
## 2939              Same as the national average
## 2940              Same as the national average
## 2941              Same as the national average
## 2942                             Not Available
## 2943              Same as the national average
## 2944              Same as the national average
## 2945              Same as the national average
## 2946              Same as the national average
## 2947              Same as the national average
## 2948                             Not Available
## 2949              Same as the national average
## 2950                             Not Available
## 2951              Same as the national average
## 2952                             Not Available
## 2953              Same as the national average
## 2954              Same as the national average
## 2955              Same as the national average
## 2956                             Not Available
## 2957                             Not Available
## 2958              Same as the national average
## 2959                             Not Available
## 2960              Same as the national average
## 2961                Below the national average
## 2962              Same as the national average
## 2963                             Not Available
## 2964              Same as the national average
## 2965                Below the national average
## 2966                             Not Available
## 2967              Same as the national average
## 2968              Same as the national average
## 2969                Below the national average
## 2970              Same as the national average
## 2971              Same as the national average
## 2972              Same as the national average
## 2973              Same as the national average
## 2974              Same as the national average
## 2975                             Not Available
## 2976                             Not Available
## 2977              Same as the national average
## 2978              Same as the national average
## 2979              Same as the national average
## 2980              Same as the national average
## 2981              Same as the national average
## 2982              Same as the national average
## 2983              Same as the national average
## 2984              Same as the national average
## 2985              Same as the national average
## 2986              Same as the national average
## 2987              Same as the national average
## 2988              Same as the national average
## 2989              Same as the national average
## 2990              Same as the national average
## 2991              Same as the national average
## 2992              Same as the national average
## 2993              Same as the national average
## 2994              Same as the national average
## 2995              Same as the national average
## 2996              Same as the national average
## 2997                             Not Available
## 2998              Same as the national average
## 2999              Same as the national average
## 3000                Above the national average
## 3001                             Not Available
## 3002                Above the national average
## 3003              Same as the national average
## 3004              Same as the national average
## 3005              Same as the national average
## 3006              Same as the national average
## 3007                             Not Available
## 3008                             Not Available
## 3009              Same as the national average
## 3010              Same as the national average
## 3011                             Not Available
## 3012              Same as the national average
## 3013                             Not Available
## 3014              Same as the national average
## 3015                             Not Available
## 3016              Same as the national average
## 3017                             Not Available
## 3018                Below the national average
## 3019              Same as the national average
## 3020                             Not Available
## 3021              Same as the national average
## 3022                             Not Available
## 3023              Same as the national average
## 3024              Same as the national average
## 3025              Same as the national average
## 3026              Same as the national average
## 3027                             Not Available
## 3028              Same as the national average
## 3029              Same as the national average
## 3030              Same as the national average
## 3031              Same as the national average
## 3032              Same as the national average
## 3033                Above the national average
## 3034              Same as the national average
## 3035              Same as the national average
## 3036              Same as the national average
## 3037                             Not Available
## 3038              Same as the national average
## 3039              Same as the national average
## 3040                Below the national average
## 3041              Same as the national average
## 3042              Same as the national average
## 3043                             Not Available
## 3044              Same as the national average
## 3045                             Not Available
## 3046                             Not Available
## 3047              Same as the national average
## 3048                Below the national average
## 3049                             Not Available
## 3050                Below the national average
## 3051              Same as the national average
## 3052              Same as the national average
## 3053              Same as the national average
## 3054              Same as the national average
## 3055              Same as the national average
## 3056              Same as the national average
## 3057                             Not Available
## 3058              Same as the national average
## 3059              Same as the national average
## 3060                             Not Available
## 3061                             Not Available
## 3062                             Not Available
## 3063              Same as the national average
## 3064              Same as the national average
## 3065              Same as the national average
## 3066              Same as the national average
## 3067                Above the national average
## 3068                             Not Available
## 3069              Same as the national average
## 3070              Same as the national average
## 3071              Same as the national average
## 3072              Same as the national average
## 3073                             Not Available
## 3074                Below the national average
## 3075              Same as the national average
## 3076                             Not Available
## 3077                             Not Available
## 3078              Same as the national average
## 3079              Same as the national average
## 3080              Same as the national average
## 3081                Above the national average
## 3082              Same as the national average
## 3083              Same as the national average
## 3084                             Not Available
## 3085              Same as the national average
## 3086              Same as the national average
## 3087              Same as the national average
## 3088                             Not Available
## 3089              Same as the national average
## 3090              Same as the national average
## 3091              Same as the national average
## 3092              Same as the national average
## 3093              Same as the national average
## 3094                             Not Available
## 3095                Above the national average
## 3096              Same as the national average
## 3097              Same as the national average
## 3098                             Not Available
## 3099              Same as the national average
## 3100              Same as the national average
## 3101                Above the national average
## 3102              Same as the national average
## 3103              Same as the national average
## 3104              Same as the national average
## 3105              Same as the national average
## 3106              Same as the national average
## 3107                             Not Available
## 3108              Same as the national average
## 3109              Same as the national average
## 3110                             Not Available
## 3111                             Not Available
## 3112              Same as the national average
## 3113              Same as the national average
## 3114              Same as the national average
## 3115              Same as the national average
## 3116                             Not Available
## 3117                             Not Available
## 3118              Same as the national average
## 3119                             Not Available
## 3120              Same as the national average
## 3121                Above the national average
## 3122              Same as the national average
## 3123                             Not Available
## 3124              Same as the national average
## 3125                Below the national average
## 3126              Same as the national average
## 3127                Below the national average
## 3128                Below the national average
## 3129                             Not Available
## 3130                             Not Available
## 3131                             Not Available
## 3132              Same as the national average
## 3133                Above the national average
## 3134                             Not Available
## 3135                             Not Available
## 3136              Same as the national average
## 3137                             Not Available
## 3138                             Not Available
## 3139                             Not Available
## 3140              Same as the national average
## 3141              Same as the national average
## 3142              Same as the national average
## 3143              Same as the national average
## 3144                             Not Available
## 3145              Same as the national average
## 3146              Same as the national average
## 3147              Same as the national average
## 3148              Same as the national average
## 3149                             Not Available
## 3150                Below the national average
## 3151              Same as the national average
## 3152              Same as the national average
## 3153              Same as the national average
## 3154                Below the national average
## 3155                             Not Available
## 3156              Same as the national average
## 3157              Same as the national average
## 3158              Same as the national average
## 3159                Above the national average
## 3160              Same as the national average
## 3161              Same as the national average
## 3162              Same as the national average
## 3163              Same as the national average
## 3164                             Not Available
## 3165              Same as the national average
## 3166              Same as the national average
## 3167              Same as the national average
## 3168              Same as the national average
## 3169              Same as the national average
## 3170              Same as the national average
## 3171                Above the national average
## 3172                             Not Available
## 3173              Same as the national average
## 3174                Below the national average
## 3175              Same as the national average
## 3176              Same as the national average
## 3177                Below the national average
## 3178              Same as the national average
## 3179              Same as the national average
## 3180                Below the national average
## 3181                Above the national average
## 3182              Same as the national average
## 3183                             Not Available
## 3184              Same as the national average
## 3185              Same as the national average
## 3186              Same as the national average
## 3187              Same as the national average
## 3188              Same as the national average
## 3189              Same as the national average
## 3190              Same as the national average
## 3191              Same as the national average
## 3192                Below the national average
## 3193              Same as the national average
## 3194                             Not Available
## 3195              Same as the national average
## 3196              Same as the national average
## 3197              Same as the national average
## 3198              Same as the national average
## 3199              Same as the national average
## 3200              Same as the national average
## 3201                             Not Available
## 3202              Same as the national average
## 3203              Same as the national average
## 3204                Above the national average
## 3205                Above the national average
## 3206              Same as the national average
## 3207                             Not Available
## 3208              Same as the national average
## 3209                Below the national average
## 3210              Same as the national average
## 3211              Same as the national average
## 3212              Same as the national average
## 3213                             Not Available
## 3214                             Not Available
## 3215                Above the national average
## 3216                             Not Available
## 3217              Same as the national average
## 3218              Same as the national average
## 3219              Same as the national average
## 3220              Same as the national average
## 3221              Same as the national average
## 3222                Above the national average
## 3223              Same as the national average
## 3224              Same as the national average
## 3225                             Not Available
## 3226              Same as the national average
## 3227              Same as the national average
## 3228              Same as the national average
## 3229              Same as the national average
## 3230              Same as the national average
## 3231              Same as the national average
## 3232                             Not Available
## 3233              Same as the national average
## 3234              Same as the national average
## 3235              Same as the national average
## 3236              Same as the national average
## 3237              Same as the national average
## 3238              Same as the national average
## 3239              Same as the national average
## 3240              Same as the national average
## 3241              Same as the national average
## 3242              Same as the national average
## 3243              Same as the national average
## 3244              Same as the national average
## 3245                             Not Available
## 3246              Same as the national average
## 3247              Same as the national average
## 3248                             Not Available
## 3249              Same as the national average
## 3250                             Not Available
## 3251              Same as the national average
## 3252              Same as the national average
## 3253              Same as the national average
## 3254              Same as the national average
## 3255              Same as the national average
## 3256              Same as the national average
## 3257                             Not Available
## 3258                Below the national average
## 3259                             Not Available
## 3260              Same as the national average
## 3261              Same as the national average
## 3262              Same as the national average
## 3263              Same as the national average
## 3264                             Not Available
## 3265                             Not Available
## 3266              Same as the national average
## 3267              Same as the national average
## 3268                             Not Available
## 3269              Same as the national average
## 3270                             Not Available
## 3271              Same as the national average
## 3272                             Not Available
## 3273              Same as the national average
## 3274                Below the national average
## 3275              Same as the national average
## 3276                             Not Available
## 3277              Same as the national average
## 3278                             Not Available
## 3279                             Not Available
## 3280              Same as the national average
## 3281              Same as the national average
## 3282              Same as the national average
## 3283              Same as the national average
## 3284              Same as the national average
## 3285              Same as the national average
## 3286                             Not Available
## 3287                             Not Available
## 3288              Same as the national average
## 3289              Same as the national average
## 3290              Same as the national average
## 3291              Same as the national average
## 3292              Same as the national average
## 3293              Same as the national average
## 3294              Same as the national average
## 3295              Same as the national average
## 3296                             Not Available
## 3297                             Not Available
## 3298              Same as the national average
## 3299              Same as the national average
## 3300              Same as the national average
## 3301              Same as the national average
## 3302              Same as the national average
## 3303                             Not Available
## 3304              Same as the national average
## 3305              Same as the national average
## 3306              Same as the national average
## 3307                Above the national average
## 3308                Below the national average
## 3309                             Not Available
## 3310              Same as the national average
## 3311              Same as the national average
## 3312              Same as the national average
## 3313              Same as the national average
## 3314              Same as the national average
## 3315              Same as the national average
## 3316                             Not Available
## 3317                Below the national average
## 3318              Same as the national average
## 3319                             Not Available
## 3320                Above the national average
## 3321              Same as the national average
## 3322              Same as the national average
## 3323                             Not Available
## 3324              Same as the national average
## 3325                             Not Available
## 3326              Same as the national average
## 3327              Same as the national average
## 3328              Same as the national average
## 3329              Same as the national average
## 3330              Same as the national average
## 3331              Same as the national average
## 3332              Same as the national average
## 3333                Above the national average
## 3334              Same as the national average
## 3335              Same as the national average
## 3336              Same as the national average
## 3337              Same as the national average
## 3338                             Not Available
## 3339              Same as the national average
## 3340              Same as the national average
## 3341                Below the national average
## 3342                Above the national average
## 3343              Same as the national average
## 3344              Same as the national average
## 3345              Same as the national average
## 3346              Same as the national average
## 3347              Same as the national average
## 3348                             Not Available
## 3349              Same as the national average
## 3350                Below the national average
## 3351                             Not Available
## 3352              Same as the national average
## 3353                             Not Available
## 3354                             Not Available
## 3355                             Not Available
## 3356              Same as the national average
## 3357                Below the national average
## 3358              Same as the national average
## 3359              Same as the national average
## 3360                             Not Available
## 3361                Below the national average
## 3362              Same as the national average
## 3363              Same as the national average
## 3364              Same as the national average
## 3365              Same as the national average
## 3366                             Not Available
## 3367              Same as the national average
## 3368              Same as the national average
## 3369              Same as the national average
## 3370                             Not Available
## 3371              Same as the national average
## 3372              Same as the national average
## 3373                Below the national average
## 3374                             Not Available
## 3375              Same as the national average
## 3376                             Not Available
## 3377                             Not Available
## 3378                             Not Available
## 3379              Same as the national average
## 3380                Below the national average
## 3381              Same as the national average
## 3382                             Not Available
## 3383                             Not Available
## 3384              Same as the national average
## 3385              Same as the national average
## 3386                Below the national average
## 3387                             Not Available
## 3388                Above the national average
## 3389              Same as the national average
## 3390              Same as the national average
## 3391              Same as the national average
## 3392              Same as the national average
## 3393                             Not Available
## 3394              Same as the national average
## 3395              Same as the national average
## 3396                             Not Available
## 3397              Same as the national average
## 3398                             Not Available
## 3399                Above the national average
## 3400              Same as the national average
## 3401                             Not Available
## 3402                             Not Available
## 3403                             Not Available
## 3404              Same as the national average
## 3405                             Not Available
## 3406              Same as the national average
## 3407              Same as the national average
## 3408              Same as the national average
## 3409                             Not Available
## 3410              Same as the national average
## 3411                             Not Available
## 3412                Below the national average
## 3413              Same as the national average
## 3414                             Not Available
## 3415              Same as the national average
## 3416                             Not Available
## 3417              Same as the national average
## 3418                             Not Available
## 3419                Below the national average
## 3420              Same as the national average
## 3421              Same as the national average
## 3422              Same as the national average
## 3423              Same as the national average
## 3424              Same as the national average
## 3425              Same as the national average
## 3426                             Not Available
## 3427              Same as the national average
## 3428                             Not Available
## 3429                Below the national average
## 3430              Same as the national average
## 3431              Same as the national average
## 3432              Same as the national average
## 3433              Same as the national average
## 3434              Same as the national average
## 3435              Same as the national average
## 3436              Same as the national average
## 3437              Same as the national average
## 3438              Same as the national average
## 3439              Same as the national average
## 3440              Same as the national average
## 3441              Same as the national average
## 3442              Same as the national average
## 3443                             Not Available
## 3444              Same as the national average
## 3445              Same as the national average
## 3446                             Not Available
## 3447                             Not Available
## 3448                             Not Available
##      Effectiveness_of_care_national_comparison_footnote
## 1                                                      
## 2                                                    19
## 3                                                    19
## 4                                                      
## 5                                                    19
## 6                                                      
## 7                                                    19
## 8                                                     5
## 9                                                    19
## 10                                                   19
## 11                                                   19
## 12                                                     
## 13                                                   19
## 14                                                   19
## 15                                                    5
## 16                                                   19
## 17                                                     
## 18                                                   16
## 19                                                   19
## 20                                                   19
## 21                                                    5
## 22                                                    5
## 23                                                    5
## 24                                                   19
## 25                                                    5
## 26                                                   16
## 27                                                   19
## 28                                                    5
## 29                                                   19
## 30                                                     
## 31                                                    5
## 32                                                   19
## 33                                                   19
## 34                                                   19
## 35                                                   16
## 36                                                   19
## 37                                                   19
## 38                                                    5
## 39                                                     
## 40                                                   19
## 41                                                   19
## 42                                                    5
## 43                                                     
## 44                                                     
## 45                                                   19
## 46                                                   19
## 47                                                    5
## 48                                                   19
## 49                                                    5
## 50                                                   19
## 51                                                   19
## 52                                                   19
## 53                                                   19
## 54                                                   19
## 55                                                   19
## 56                                                     
## 57                                                     
## 58                                                    5
## 59                                                    5
## 60                                                     
## 61                                                   19
## 62                                                     
## 63                                                   19
## 64                                                     
## 65                                                     
## 66                                                   16
## 67                                                     
## 68                                                    5
## 69                                                     
## 70                                                     
## 71                                                     
## 72                                                     
## 73                                                     
## 74                                                     
## 75                                                    5
## 76                                                     
## 77                                                   16
## 78                                                     
## 79                                                     
## 80                                                     
## 81                                                   19
## 82                                                    5
## 83                                                   19
## 84                                                     
## 85                                                   19
## 86                                                    5
## 87                                                     
## 88                                                   19
## 89                                                     
## 90                                                     
## 91                                                     
## 92                                                     
## 93                                                     
## 94                                                     
## 95                                                     
## 96                                                    5
## 97                                                     
## 98                                                     
## 99                                                     
## 100                                                    
## 101                                                    
## 102                                                    
## 103                                                    
## 104                                                    
## 105                                                    
## 106                                                    
## 107                                                    
## 108                                                    
## 109                                                    
## 110                                                   5
## 111                                                    
## 112                                                    
## 113                                                    
## 114                                                    
## 115                                                    
## 116                                                  19
## 117                                                  19
## 118                                                    
## 119                                                   5
## 120                                                   5
## 121                                                    
## 122                                                  19
## 123                                                    
## 124                                                    
## 125                                                   5
## 126                                                   5
## 127                                                    
## 128                                                    
## 129                                                  19
## 130                                                    
## 131                                                    
## 132                                                    
## 133                                                    
## 134                                                    
## 135                                                    
## 136                                                    
## 137                                                    
## 138                                                  19
## 139                                                    
## 140                                                    
## 141                                                    
## 142                                                  19
## 143                                                  19
## 144                                                    
## 145                                                    
## 146                                                   5
## 147                                                    
## 148                                                    
## 149                                                   5
## 150                                                    
## 151                                                    
## 152                                                   5
## 153                                                    
## 154                                                    
## 155                                                    
## 156                                                    
## 157                                                   5
## 158                                                    
## 159                                                    
## 160                                                    
## 161                                                  19
## 162                                                    
## 163                                                    
## 164                                                    
## 165                                                    
## 166                                                  19
## 167                                                    
## 168                                                    
## 169                                                   5
## 170                                                    
## 171                                                  19
## 172                                                    
## 173                                                    
## 174                                                    
## 175                                                    
## 176                                                    
## 177                                                    
## 178                                                    
## 179                                                    
## 180                                                    
## 181                                                    
## 182                                                    
## 183                                                    
## 184                                                  19
## 185                                                    
## 186                                                    
## 187                                                    
## 188                                                    
## 189                                                    
## 190                                                    
## 191                                                    
## 192                                                    
## 193                                                  19
## 194                                                    
## 195                                                  19
## 196                                                    
## 197                                                   5
## 198                                                    
## 199                                                    
## 200                                                  16
## 201                                                  19
## 202                                                    
## 203                                                  19
## 204                                                    
## 205                                                    
## 206                                                   5
## 207                                                   5
## 208                                                    
## 209                                                    
## 210                                                    
## 211                                                  19
## 212                                                    
## 213                                                   5
## 214                                                    
## 215                                                  16
## 216                                                   5
## 217                                                    
## 218                                                    
## 219                                                   5
## 220                                                   5
## 221                                                    
## 222                                                    
## 223                                                    
## 224                                                  16
## 225                                                    
## 226                                                    
## 227                                                   5
## 228                                                    
## 229                                                    
## 230                                                   5
## 231                                                    
## 232                                                    
## 233                                                    
## 234                                                    
## 235                                                    
## 236                                                    
## 237                                                    
## 238                                                    
## 239                                                    
## 240                                                    
## 241                                                    
## 242                                                    
## 243                                                    
## 244                                                    
## 245                                                    
## 246                                                    
## 247                                                    
## 248                                                    
## 249                                                  19
## 250                                                   5
## 251                                                    
## 252                                                  19
## 253                                                    
## 254                                                    
## 255                                                    
## 256                                                    
## 257                                                    
## 258                                                    
## 259                                                    
## 260                                                    
## 261                                                  19
## 262                                                   5
## 263                                                    
## 264                                                    
## 265                                                    
## 266                                                  16
## 267                                                    
## 268                                                  19
## 269                                                    
## 270                                                    
## 271                                                    
## 272                                                    
## 273                                                    
## 274                                                   5
## 275                                                  16
## 276                                                    
## 277                                                    
## 278                                                   5
## 279                                                    
## 280                                                    
## 281                                                    
## 282                                                    
## 283                                                    
## 284                                                    
## 285                                                   5
## 286                                                    
## 287                                                  19
## 288                                                    
## 289                                                    
## 290                                                    
## 291                                                   5
## 292                                                    
## 293                                                    
## 294                                                  19
## 295                                                    
## 296                                                  19
## 297                                                    
## 298                                                    
## 299                                                  19
## 300                                                    
## 301                                                  19
## 302                                                    
## 303                                                    
## 304                                                  19
## 305                                                  19
## 306                                                  19
## 307                                                    
## 308                                                    
## 309                                                  19
## 310                                                   5
## 311                                                    
## 312                                                    
## 313                                                    
## 314                                                    
## 315                                                   5
## 316                                                    
## 317                                                    
## 318                                                    
## 319                                                    
## 320                                                    
## 321                                                    
## 322                                                    
## 323                                                    
## 324                                                  19
## 325                                                    
## 326                                                    
## 327                                                    
## 328                                                    
## 329                                                    
## 330                                                  19
## 331                                                    
## 332                                                    
## 333                                                    
## 334                                                    
## 335                                                    
## 336                                                  19
## 337                                                    
## 338                                                  19
## 339                                                    
## 340                                                    
## 341                                                    
## 342                                                   5
## 343                                                    
## 344                                                  19
## 345                                                    
## 346                                                    
## 347                                                  19
## 348                                                    
## 349                                                    
## 350                                                    
## 351                                                    
## 352                                                    
## 353                                                   5
## 354                                                    
## 355                                                    
## 356                                                    
## 357                                                    
## 358                                                    
## 359                                                    
## 360                                                  19
## 361                                                    
## 362                                                    
## 363                                                    
## 364                                                    
## 365                                                    
## 366                                                    
## 367                                                    
## 368                                                    
## 369                                                    
## 370                                                    
## 371                                                    
## 372                                                    
## 373                                                    
## 374                                                    
## 375                                                  19
## 376                                                   5
## 377                                                   5
## 378                                                    
## 379                                                   5
## 380                                                    
## 381                                                    
## 382                                                  19
## 383                                                    
## 384                                                  19
## 385                                                  19
## 386                                                    
## 387                                                    
## 388                                                    
## 389                                                    
## 390                                                    
## 391                                                    
## 392                                                    
## 393                                                   5
## 394                                                    
## 395                                                    
## 396                                                    
## 397                                                    
## 398                                                    
## 399                                                    
## 400                                                    
## 401                                                  19
## 402                                                    
## 403                                                  16
## 404                                                    
## 405                                                  19
## 406                                                    
## 407                                                  19
## 408                                                    
## 409                                                    
## 410                                                   5
## 411                                                    
## 412                                                    
## 413                                                    
## 414                                                    
## 415                                                   5
## 416                                                    
## 417                                                  19
## 418                                                  19
## 419                                                    
## 420                                                   5
## 421                                                  19
## 422                                                    
## 423                                                    
## 424                                                  19
## 425                                                    
## 426                                                    
## 427                                                    
## 428                                                    
## 429                                                   5
## 430                                                    
## 431                                                    
## 432                                                    
## 433                                                    
## 434                                                    
## 435                                                   5
## 436                                                    
## 437                                                    
## 438                                                    
## 439                                                    
## 440                                                  19
## 441                                                    
## 442                                                    
## 443                                                    
## 444                                                    
## 445                                                    
## 446                                                    
## 447                                                    
## 448                                                  19
## 449                                                    
## 450                                                    
## 451                                                  19
## 452                                                    
## 453                                                    
## 454                                                    
## 455                                                    
## 456                                                    
## 457                                                  16
## 458                                                    
## 459                                                    
## 460                                                    
## 461                                                    
## 462                                                    
## 463                                                    
## 464                                                    
## 465                                                    
## 466                                                    
## 467                                                    
## 468                                                    
## 469                                                   5
## 470                                                    
## 471                                                    
## 472                                                    
## 473                                                    
## 474                                                    
## 475                                                  19
## 476                                                   5
## 477                                                    
## 478                                                    
## 479                                                    
## 480                                                    
## 481                                                    
## 482                                                    
## 483                                                    
## 484                                                    
## 485                                                    
## 486                                                  19
## 487                                                   5
## 488                                                    
## 489                                                    
## 490                                                    
## 491                                                    
## 492                                                    
## 493                                                    
## 494                                                    
## 495                                                    
## 496                                                    
## 497                                                    
## 498                                                    
## 499                                                   5
## 500                                                   5
## 501                                                   5
## 502                                                  19
## 503                                                    
## 504                                                    
## 505                                                    
## 506                                                  19
## 507                                                  19
## 508                                                   5
## 509                                                  19
## 510                                                    
## 511                                                   5
## 512                                                    
## 513                                                    
## 514                                                    
## 515                                                    
## 516                                                   5
## 517                                                  19
## 518                                                    
## 519                                                    
## 520                                                    
## 521                                                    
## 522                                                    
## 523                                                    
## 524                                                    
## 525                                                    
## 526                                                    
## 527                                                    
## 528                                                  19
## 529                                                    
## 530                                                    
## 531                                                   5
## 532                                                    
## 533                                                    
## 534                                                    
## 535                                                   5
## 536                                                    
## 537                                                    
## 538                                                   5
## 539                                                    
## 540                                                    
## 541                                                    
## 542                                                   5
## 543                                                  19
## 544                                                    
## 545                                                    
## 546                                                    
## 547                                                    
## 548                                                  16
## 549                                                    
## 550                                                    
## 551                                                    
## 552                                                    
## 553                                                  19
## 554                                                   5
## 555                                                    
## 556                                                    
## 557                                                    
## 558                                                    
## 559                                                    
## 560                                                    
## 561                                                    
## 562                                                    
## 563                                                    
## 564                                                    
## 565                                                    
## 566                                                    
## 567                                                    
## 568                                                    
## 569                                                   5
## 570                                                   5
## 571                                                    
## 572                                                    
## 573                                                    
## 574                                                    
## 575                                                  19
## 576                                                    
## 577                                                    
## 578                                                    
## 579                                                  19
## 580                                                    
## 581                                                  19
## 582                                                    
## 583                                                    
## 584                                                    
## 585                                                    
## 586                                                    
## 587                                                    
## 588                                                    
## 589                                                  19
## 590                                                   5
## 591                                                    
## 592                                                   5
## 593                                                    
## 594                                                  19
## 595                                                    
## 596                                                    
## 597                                                    
## 598                                                  19
## 599                                                   5
## 600                                                    
## 601                                                    
## 602                                                    
## 603                                                    
## 604                                                    
## 605                                                  19
## 606                                                    
## 607                                                   5
## 608                                                    
## 609                                                  19
## 610                                                   5
## 611                                                  19
## 612                                                    
## 613                                                    
## 614                                                    
## 615                                                    
## 616                                                    
## 617                                                  19
## 618                                                    
## 619                                                    
## 620                                                    
## 621                                                    
## 622                                                    
## 623                                                  19
## 624                                                    
## 625                                                    
## 626                                                    
## 627                                                    
## 628                                                   5
## 629                                                    
## 630                                                    
## 631                                                    
## 632                                                    
## 633                                                    
## 634                                                    
## 635                                                    
## 636                                                    
## 637                                                    
## 638                                                  19
## 639                                                    
## 640                                                    
## 641                                                    
## 642                                                    
## 643                                                    
## 644                                                    
## 645                                                   5
## 646                                                  19
## 647                                                   5
## 648                                                    
## 649                                                   5
## 650                                                    
## 651                                                  19
## 652                                                    
## 653                                                    
## 654                                                    
## 655                                                    
## 656                                                    
## 657                                                    
## 658                                                    
## 659                                                    
## 660                                                    
## 661                                                   5
## 662                                                    
## 663                                                    
## 664                                                  16
## 665                                                   5
## 666                                                    
## 667                                                    
## 668                                                  19
## 669                                                   5
## 670                                                    
## 671                                                    
## 672                                                    
## 673                                                   5
## 674                                                   5
## 675                                                    
## 676                                                    
## 677                                                    
## 678                                                    
## 679                                                   5
## 680                                                    
## 681                                                    
## 682                                                    
## 683                                                   5
## 684                                                  16
## 685                                                    
## 686                                                    
## 687                                                    
## 688                                                  19
## 689                                                    
## 690                                                    
## 691                                                    
## 692                                                    
## 693                                                    
## 694                                                    
## 695                                                    
## 696                                                    
## 697                                                    
## 698                                                    
## 699                                                    
## 700                                                    
## 701                                                    
## 702                                                  19
## 703                                                   5
## 704                                                    
## 705                                                   5
## 706                                                  19
## 707                                                    
## 708                                                    
## 709                                                    
## 710                                                   5
## 711                                                   5
## 712                                                    
## 713                                                    
## 714                                                   5
## 715                                                    
## 716                                                    
## 717                                                    
## 718                                                    
## 719                                                    
## 720                                                    
## 721                                                    
## 722                                                    
## 723                                                    
## 724                                                    
## 725                                                    
## 726                                                   5
## 727                                                    
## 728                                                    
## 729                                                    
## 730                                                    
## 731                                                    
## 732                                                    
## 733                                                    
## 734                                                  19
## 735                                                    
## 736                                                    
## 737                                                    
## 738                                                    
## 739                                                    
## 740                                                  19
## 741                                                  19
## 742                                                    
## 743                                                    
## 744                                                    
## 745                                                  19
## 746                                                    
## 747                                                    
## 748                                                    
## 749                                                  19
## 750                                                    
## 751                                                  19
## 752                                                    
## 753                                                    
## 754                                                    
## 755                                                    
## 756                                                    
## 757                                                    
## 758                                                    
## 759                                                  19
## 760                                                    
## 761                                                    
## 762                                                    
## 763                                                  19
## 764                                                    
## 765                                                    
## 766                                                    
## 767                                                    
## 768                                                  19
## 769                                                  16
## 770                                                    
## 771                                                  19
## 772                                                    
## 773                                                    
## 774                                                    
## 775                                                    
## 776                                                    
## 777                                                   5
## 778                                                    
## 779                                                    
## 780                                                    
## 781                                                    
## 782                                                    
## 783                                                  19
## 784                                                    
## 785                                                    
## 786                                                    
## 787                                                    
## 788                                                    
## 789                                                    
## 790                                                    
## 791                                                   5
## 792                                                  16
## 793                                                  19
## 794                                                    
## 795                                                    
## 796                                                    
## 797                                                    
## 798                                                  19
## 799                                                    
## 800                                                    
## 801                                                    
## 802                                                    
## 803                                                  19
## 804                                                    
## 805                                                    
## 806                                                    
## 807                                                  19
## 808                                                    
## 809                                                    
## 810                                                  16
## 811                                                    
## 812                                                    
## 813                                                    
## 814                                                    
## 815                                                    
## 816                                                   5
## 817                                                  19
## 818                                                    
## 819                                                    
## 820                                                    
## 821                                                    
## 822                                                    
## 823                                                    
## 824                                                    
## 825                                                  16
## 826                                                    
## 827                                                    
## 828                                                    
## 829                                                    
## 830                                                    
## 831                                                    
## 832                                                    
## 833                                                    
## 834                                                    
## 835                                                   5
## 836                                                    
## 837                                                  19
## 838                                                    
## 839                                                    
## 840                                                   5
## 841                                                    
## 842                                                  19
## 843                                                   5
## 844                                                    
## 845                                                    
## 846                                                    
## 847                                                    
## 848                                                    
## 849                                                  19
## 850                                                    
## 851                                                    
## 852                                                    
## 853                                                   5
## 854                                                    
## 855                                                    
## 856                                                    
## 857                                                   5
## 858                                                    
## 859                                                   5
## 860                                                    
## 861                                                    
## 862                                                    
## 863                                                    
## 864                                                  19
## 865                                                  19
## 866                                                    
## 867                                                    
## 868                                                    
## 869                                                    
## 870                                                    
## 871                                                    
## 872                                                    
## 873                                                    
## 874                                                    
## 875                                                    
## 876                                                    
## 877                                                  19
## 878                                                    
## 879                                                    
## 880                                                    
## 881                                                    
## 882                                                  19
## 883                                                    
## 884                                                    
## 885                                                    
## 886                                                    
## 887                                                    
## 888                                                    
## 889                                                    
## 890                                                  16
## 891                                                    
## 892                                                    
## 893                                                    
## 894                                                    
## 895                                                    
## 896                                                    
## 897                                                    
## 898                                                  19
## 899                                                    
## 900                                                  19
## 901                                                    
## 902                                                    
## 903                                                   5
## 904                                                    
## 905                                                    
## 906                                                    
## 907                                                    
## 908                                                    
## 909                                                  19
## 910                                                    
## 911                                                    
## 912                                                   5
## 913                                                    
## 914                                                  19
## 915                                                   5
## 916                                                   5
## 917                                                  19
## 918                                                    
## 919                                                    
## 920                                                  19
## 921                                                    
## 922                                                    
## 923                                                    
## 924                                                    
## 925                                                    
## 926                                                    
## 927                                                    
## 928                                                    
## 929                                                   5
## 930                                                    
## 931                                                    
## 932                                                  19
## 933                                                  19
## 934                                                    
## 935                                                    
## 936                                                  19
## 937                                                    
## 938                                                  19
## 939                                                    
## 940                                                    
## 941                                                    
## 942                                                    
## 943                                                  19
## 944                                                    
## 945                                                    
## 946                                                    
## 947                                                    
## 948                                                   5
## 949                                                  19
## 950                                                    
## 951                                                    
## 952                                                    
## 953                                                    
## 954                                                    
## 955                                                    
## 956                                                    
## 957                                                    
## 958                                                   5
## 959                                                    
## 960                                                    
## 961                                                    
## 962                                                    
## 963                                                    
## 964                                                   5
## 965                                                    
## 966                                                    
## 967                                                    
## 968                                                    
## 969                                                    
## 970                                                    
## 971                                                    
## 972                                                    
## 973                                                  19
## 974                                                    
## 975                                                    
## 976                                                  16
## 977                                                    
## 978                                                    
## 979                                                   5
## 980                                                  19
## 981                                                    
## 982                                                   5
## 983                                                    
## 984                                                    
## 985                                                    
## 986                                                  19
## 987                                                    
## 988                                                   5
## 989                                                    
## 990                                                    
## 991                                                    
## 992                                                    
## 993                                                   5
## 994                                                    
## 995                                                    
## 996                                                    
## 997                                                  19
## 998                                                    
## 999                                                    
## 1000                                                 19
## 1001                                                 19
## 1002                                                   
## 1003                                                   
## 1004                                                   
## 1005                                                   
## 1006                                                   
## 1007                                                   
## 1008                                                   
## 1009                                                 19
## 1010                                                   
## 1011                                                 19
## 1012                                                 19
## 1013                                                   
## 1014                                                   
## 1015                                                  5
## 1016                                                   
## 1017                                                   
## 1018                                                  5
## 1019                                                   
## 1020                                                   
## 1021                                                  5
## 1022                                                   
## 1023                                                   
## 1024                                                   
## 1025                                                 19
## 1026                                                  5
## 1027                                                 19
## 1028                                                   
## 1029                                                   
## 1030                                                   
## 1031                                                  5
## 1032                                                   
## 1033                                                   
## 1034                                                   
## 1035                                                 16
## 1036                                                  5
## 1037                                                   
## 1038                                                   
## 1039                                                  5
## 1040                                                   
## 1041                                                   
## 1042                                                   
## 1043                                                   
## 1044                                                  5
## 1045                                                   
## 1046                                                   
## 1047                                                   
## 1048                                                 19
## 1049                                                   
## 1050                                                 19
## 1051                                                 19
## 1052                                                   
## 1053                                                   
## 1054                                                   
## 1055                                                   
## 1056                                                   
## 1057                                                   
## 1058                                                   
## 1059                                                   
## 1060                                                   
## 1061                                                  5
## 1062                                                   
## 1063                                                   
## 1064                                                   
## 1065                                                   
## 1066                                                   
## 1067                                                   
## 1068                                                  5
## 1069                                                   
## 1070                                                   
## 1071                                                   
## 1072                                                 19
## 1073                                                   
## 1074                                                 19
## 1075                                                   
## 1076                                                 16
## 1077                                                   
## 1078                                                   
## 1079                                                   
## 1080                                                  5
## 1081                                                   
## 1082                                                   
## 1083                                                   
## 1084                                                   
## 1085                                                   
## 1086                                                   
## 1087                                                   
## 1088                                                   
## 1089                                                   
## 1090                                                 19
## 1091                                                   
## 1092                                                   
## 1093                                                   
## 1094                                                   
## 1095                                                 19
## 1096                                                   
## 1097                                                   
## 1098                                                   
## 1099                                                   
## 1100                                                   
## 1101                                                   
## 1102                                                   
## 1103                                                 19
## 1104                                                   
## 1105                                                   
## 1106                                                  5
## 1107                                                 19
## 1108                                                   
## 1109                                                   
## 1110                                                   
## 1111                                                   
## 1112                                                 19
## 1113                                                   
## 1114                                                   
## 1115                                                   
## 1116                                                   
## 1117                                                 19
## 1118                                                  5
## 1119                                                   
## 1120                                                 16
## 1121                                                   
## 1122                                                   
## 1123                                                   
## 1124                                                 19
## 1125                                                   
## 1126                                                   
## 1127                                                   
## 1128                                                   
## 1129                                                   
## 1130                                                   
## 1131                                                   
## 1132                                                   
## 1133                                                   
## 1134                                                   
## 1135                                                   
## 1136                                                   
## 1137                                                 19
## 1138                                                   
## 1139                                                 19
## 1140                                                   
## 1141                                                   
## 1142                                                   
## 1143                                                   
## 1144                                                   
## 1145                                                  5
## 1146                                                   
## 1147                                                   
## 1148                                                  5
## 1149                                                  5
## 1150                                                 19
## 1151                                                   
## 1152                                                   
## 1153                                                  5
## 1154                                                   
## 1155                                                   
## 1156                                                  5
## 1157                                                   
## 1158                                                   
## 1159                                                   
## 1160                                                   
## 1161                                                 19
## 1162                                                 19
## 1163                                                   
## 1164                                                   
## 1165                                                  5
## 1166                                                   
## 1167                                                 16
## 1168                                                 19
## 1169                                                   
## 1170                                                   
## 1171                                                   
## 1172                                                   
## 1173                                                   
## 1174                                                   
## 1175                                                  5
## 1176                                                   
## 1177                                                   
## 1178                                                 19
## 1179                                                   
## 1180                                                 16
## 1181                                                 16
## 1182                                                   
## 1183                                                   
## 1184                                                 19
## 1185                                                 19
## 1186                                                   
## 1187                                                   
## 1188                                                  5
## 1189                                                   
## 1190                                                   
## 1191                                                   
## 1192                                                   
## 1193                                                   
## 1194                                                  5
## 1195                                                   
## 1196                                                   
## 1197                                                   
## 1198                                                   
## 1199                                                  5
## 1200                                                 19
## 1201                                                 19
## 1202                                                 19
## 1203                                                   
## 1204                                                  5
## 1205                                                   
## 1206                                                   
## 1207                                                  5
## 1208                                                 19
## 1209                                                   
## 1210                                                   
## 1211                                                   
## 1212                                                  5
## 1213                                                  5
## 1214                                                   
## 1215                                                   
## 1216                                                   
## 1217                                                   
## 1218                                                   
## 1219                                                   
## 1220                                                   
## 1221                                                  5
## 1222                                                   
## 1223                                                   
## 1224                                                   
## 1225                                                   
## 1226                                                   
## 1227                                                   
## 1228                                                   
## 1229                                                   
## 1230                                                   
## 1231                                                   
## 1232                                                  5
## 1233                                                  5
## 1234                                                   
## 1235                                                  5
## 1236                                                   
## 1237                                                   
## 1238                                                   
## 1239                                                   
## 1240                                                   
## 1241                                                  5
## 1242                                                 19
## 1243                                                   
## 1244                                                   
## 1245                                                   
## 1246                                                   
## 1247                                                   
## 1248                                                 19
## 1249                                                   
## 1250                                                   
## 1251                                                   
## 1252                                                  5
## 1253                                                   
## 1254                                                  5
## 1255                                                  5
## 1256                                                   
## 1257                                                   
## 1258                                                   
## 1259                                                   
## 1260                                                   
## 1261                                                 19
## 1262                                                 19
## 1263                                                   
## 1264                                                 19
## 1265                                                   
## 1266                                                   
## 1267                                                 19
## 1268                                                   
## 1269                                                  5
## 1270                                                   
## 1271                                                   
## 1272                                                   
## 1273                                                   
## 1274                                                   
## 1275                                                   
## 1276                                                  5
## 1277                                                   
## 1278                                                   
## 1279                                                   
## 1280                                                   
## 1281                                                   
## 1282                                                   
## 1283                                                   
## 1284                                                   
## 1285                                                   
## 1286                                                   
## 1287                                                   
## 1288                                                  5
## 1289                                                   
## 1290                                                   
## 1291                                                   
## 1292                                                   
## 1293                                                   
## 1294                                                 19
## 1295                                                   
## 1296                                                   
## 1297                                                   
## 1298                                                   
## 1299                                                  5
## 1300                                                   
## 1301                                                 19
## 1302                                                   
## 1303                                                  5
## 1304                                                   
## 1305                                                   
## 1306                                                 19
## 1307                                                   
## 1308                                                   
## 1309                                                   
## 1310                                                   
## 1311                                                   
## 1312                                                   
## 1313                                                  5
## 1314                                                   
## 1315                                                   
## 1316                                                   
## 1317                                                   
## 1318                                                   
## 1319                                                   
## 1320                                                   
## 1321                                                   
## 1322                                                   
## 1323                                                   
## 1324                                                   
## 1325                                                   
## 1326                                                   
## 1327                                                 19
## 1328                                                   
## 1329                                                   
## 1330                                                 19
## 1331                                                   
## 1332                                                   
## 1333                                                   
## 1334                                                   
## 1335                                                   
## 1336                                                   
## 1337                                                   
## 1338                                                  5
## 1339                                                   
## 1340                                                  5
## 1341                                                   
## 1342                                                   
## 1343                                                  5
## 1344                                                 19
## 1345                                                   
## 1346                                                   
## 1347                                                  5
## 1348                                                   
## 1349                                                  5
## 1350                                                   
## 1351                                                   
## 1352                                                   
## 1353                                                   
## 1354                                                 19
## 1355                                                   
## 1356                                                 19
## 1357                                                 19
## 1358                                                   
## 1359                                                   
## 1360                                                  5
## 1361                                                   
## 1362                                                   
## 1363                                                   
## 1364                                                   
## 1365                                                  5
## 1366                                                   
## 1367                                                   
## 1368                                                   
## 1369                                                   
## 1370                                                   
## 1371                                                   
## 1372                                                   
## 1373                                                 16
## 1374                                                   
## 1375                                                   
## 1376                                                   
## 1377                                                  5
## 1378                                                  5
## 1379                                                 16
## 1380                                                   
## 1381                                                 19
## 1382                                                   
## 1383                                                  5
## 1384                                                   
## 1385                                                   
## 1386                                                   
## 1387                                                   
## 1388                                                   
## 1389                                                   
## 1390                                                   
## 1391                                                  5
## 1392                                                   
## 1393                                                   
## 1394                                                   
## 1395                                                   
## 1396                                                   
## 1397                                                   
## 1398                                                   
## 1399                                                  5
## 1400                                                  5
## 1401                                                   
## 1402                                                   
## 1403                                                   
## 1404                                                   
## 1405                                                   
## 1406                                                  5
## 1407                                                   
## 1408                                                   
## 1409                                                   
## 1410                                                   
## 1411                                                   
## 1412                                                   
## 1413                                                   
## 1414                                                   
## 1415                                                   
## 1416                                                   
## 1417                                                   
## 1418                                                   
## 1419                                                   
## 1420                                                 16
## 1421                                                  5
## 1422                                                   
## 1423                                                   
## 1424                                                   
## 1425                                                   
## 1426                                                   
## 1427                                                  5
## 1428                                                   
## 1429                                                   
## 1430                                                   
## 1431                                                   
## 1432                                                   
## 1433                                                   
## 1434                                                   
## 1435                                                   
## 1436                                                 19
## 1437                                                   
## 1438                                                   
## 1439                                                   
## 1440                                                 19
## 1441                                                 19
## 1442                                                 19
## 1443                                                   
## 1444                                                   
## 1445                                                   
## 1446                                                   
## 1447                                                   
## 1448                                                   
## 1449                                                   
## 1450                                                   
## 1451                                                   
## 1452                                                   
## 1453                                                   
## 1454                                                   
## 1455                                                   
## 1456                                                   
## 1457                                                   
## 1458                                                 19
## 1459                                                 19
## 1460                                                  5
## 1461                                                 19
## 1462                                                   
## 1463                                                 16
## 1464                                                   
## 1465                                                   
## 1466                                                   
## 1467                                                 16
## 1468                                                   
## 1469                                                 19
## 1470                                                   
## 1471                                                   
## 1472                                                   
## 1473                                                 16
## 1474                                                   
## 1475                                                  5
## 1476                                                   
## 1477                                                   
## 1478                                                  5
## 1479                                                   
## 1480                                                  5
## 1481                                                   
## 1482                                                  5
## 1483                                                   
## 1484                                                   
## 1485                                                 19
## 1486                                                   
## 1487                                                   
## 1488                                                   
## 1489                                                 19
## 1490                                                   
## 1491                                                   
## 1492                                                   
## 1493                                                 16
## 1494                                                   
## 1495                                                   
## 1496                                                   
## 1497                                                   
## 1498                                                 19
## 1499                                                   
## 1500                                                   
## 1501                                                   
## 1502                                                   
## 1503                                                   
## 1504                                                   
## 1505                                                   
## 1506                                                   
## 1507                                                   
## 1508                                                   
## 1509                                                   
## 1510                                                   
## 1511                                                   
## 1512                                                   
## 1513                                                  5
## 1514                                                 19
## 1515                                                   
## 1516                                                   
## 1517                                                   
## 1518                                                   
## 1519                                                  5
## 1520                                                   
## 1521                                                  5
## 1522                                                   
## 1523                                                   
## 1524                                                   
## 1525                                                   
## 1526                                                   
## 1527                                                 19
## 1528                                                   
## 1529                                                   
## 1530                                                   
## 1531                                                  5
## 1532                                                   
## 1533                                                   
## 1534                                                   
## 1535                                                   
## 1536                                                   
## 1537                                                   
## 1538                                                   
## 1539                                                  5
## 1540                                                   
## 1541                                                   
## 1542                                                   
## 1543                                                   
## 1544                                                   
## 1545                                                   
## 1546                                                   
## 1547                                                   
## 1548                                                  5
## 1549                                                   
## 1550                                                 16
## 1551                                                 19
## 1552                                                   
## 1553                                                   
## 1554                                                 16
## 1555                                                 19
## 1556                                                   
## 1557                                                   
## 1558                                                   
## 1559                                                   
## 1560                                                   
## 1561                                                 19
## 1562                                                   
## 1563                                                   
## 1564                                                   
## 1565                                                   
## 1566                                                   
## 1567                                                   
## 1568                                                   
## 1569                                                   
## 1570                                                   
## 1571                                                  5
## 1572                                                  5
## 1573                                                   
## 1574                                                   
## 1575                                                   
## 1576                                                   
## 1577                                                   
## 1578                                                   
## 1579                                                   
## 1580                                                   
## 1581                                                 19
## 1582                                                   
## 1583                                                   
## 1584                                                   
## 1585                                                   
## 1586                                                   
## 1587                                                   
## 1588                                                 16
## 1589                                                   
## 1590                                                   
## 1591                                                   
## 1592                                                   
## 1593                                                   
## 1594                                                   
## 1595                                                  5
## 1596                                                   
## 1597                                                   
## 1598                                                   
## 1599                                                   
## 1600                                                   
## 1601                                                   
## 1602                                                 19
## 1603                                                   
## 1604                                                   
## 1605                                                 19
## 1606                                                   
## 1607                                                 19
## 1608                                                   
## 1609                                                   
## 1610                                                   
## 1611                                                   
## 1612                                                   
## 1613                                                 19
## 1614                                                   
## 1615                                                   
## 1616                                                   
## 1617                                                  5
## 1618                                                 19
## 1619                                                   
## 1620                                                   
## 1621                                                   
## 1622                                                   
## 1623                                                   
## 1624                                                 16
## 1625                                                   
## 1626                                                   
## 1627                                                   
## 1628                                                   
## 1629                                                   
## 1630                                                  5
## 1631                                                   
## 1632                                                   
## 1633                                                   
## 1634                                                   
## 1635                                                   
## 1636                                                 19
## 1637                                                   
## 1638                                                   
## 1639                                                 19
## 1640                                                   
## 1641                                                  5
## 1642                                                  5
## 1643                                                 19
## 1644                                                   
## 1645                                                   
## 1646                                                   
## 1647                                                  5
## 1648                                                 16
## 1649                                                   
## 1650                                                   
## 1651                                                   
## 1652                                                   
## 1653                                                   
## 1654                                                  5
## 1655                                                 16
## 1656                                                   
## 1657                                                 16
## 1658                                                   
## 1659                                                   
## 1660                                                   
## 1661                                                  5
## 1662                                                   
## 1663                                                   
## 1664                                                   
## 1665                                                   
## 1666                                                   
## 1667                                                   
## 1668                                                   
## 1669                                                  5
## 1670                                                 19
## 1671                                                   
## 1672                                                 19
## 1673                                                   
## 1674                                                   
## 1675                                                   
## 1676                                                   
## 1677                                                   
## 1678                                                   
## 1679                                                 19
## 1680                                                   
## 1681                                                   
## 1682                                                   
## 1683                                                 19
## 1684                                                   
## 1685                                                   
## 1686                                                   
## 1687                                                   
## 1688                                                   
## 1689                                                   
## 1690                                                   
## 1691                                                   
## 1692                                                   
## 1693                                                  5
## 1694                                                   
## 1695                                                 19
## 1696                                                   
## 1697                                                   
## 1698                                                  5
## 1699                                                   
## 1700                                                   
## 1701                                                   
## 1702                                                  5
## 1703                                                   
## 1704                                                 19
## 1705                                                 19
## 1706                                                   
## 1707                                                   
## 1708                                                   
## 1709                                                   
## 1710                                                   
## 1711                                                   
## 1712                                                   
## 1713                                                  5
## 1714                                                 19
## 1715                                                   
## 1716                                                   
## 1717                                                   
## 1718                                                 19
## 1719                                                   
## 1720                                                   
## 1721                                                   
## 1722                                                   
## 1723                                                   
## 1724                                                   
## 1725                                                  5
## 1726                                                   
## 1727                                                  5
## 1728                                                 19
## 1729                                                   
## 1730                                                   
## 1731                                                   
## 1732                                                   
## 1733                                                   
## 1734                                                   
## 1735                                                   
## 1736                                                 19
## 1737                                                  5
## 1738                                                   
## 1739                                                  5
## 1740                                                   
## 1741                                                 19
## 1742                                                   
## 1743                                                   
## 1744                                                   
## 1745                                                   
## 1746                                                  5
## 1747                                                   
## 1748                                                   
## 1749                                                 19
## 1750                                                  5
## 1751                                                   
## 1752                                                   
## 1753                                                  5
## 1754                                                 19
## 1755                                                   
## 1756                                                   
## 1757                                                   
## 1758                                                   
## 1759                                                   
## 1760                                                   
## 1761                                                   
## 1762                                                   
## 1763                                                  5
## 1764                                                  5
## 1765                                                   
## 1766                                                  5
## 1767                                                   
## 1768                                                  5
## 1769                                                   
## 1770                                                   
## 1771                                                 16
## 1772                                                  5
## 1773                                                   
## 1774                                                   
## 1775                                                   
## 1776                                                   
## 1777                                                   
## 1778                                                 19
## 1779                                                 19
## 1780                                                  5
## 1781                                                   
## 1782                                                   
## 1783                                                   
## 1784                                                   
## 1785                                                  5
## 1786                                                  5
## 1787                                                 16
## 1788                                                   
## 1789                                                  5
## 1790                                                   
## 1791                                                   
## 1792                                                   
## 1793                                                   
## 1794                                                   
## 1795                                                   
## 1796                                                   
## 1797                                                   
## 1798                                                   
## 1799                                                   
## 1800                                                   
## 1801                                                  5
## 1802                                                   
## 1803                                                   
## 1804                                                   
## 1805                                                  5
## 1806                                                  5
## 1807                                                  5
## 1808                                                 16
## 1809                                                  5
## 1810                                                   
## 1811                                                   
## 1812                                                   
## 1813                                                   
## 1814                                                 19
## 1815                                                   
## 1816                                                 19
## 1817                                                   
## 1818                                                 19
## 1819                                                  5
## 1820                                                   
## 1821                                                   
## 1822                                                  5
## 1823                                                 19
## 1824                                                   
## 1825                                                   
## 1826                                                   
## 1827                                                  5
## 1828                                                   
## 1829                                                  5
## 1830                                                   
## 1831                                                   
## 1832                                                   
## 1833                                                   
## 1834                                                   
## 1835                                                 16
## 1836                                                   
## 1837                                                   
## 1838                                                   
## 1839                                                  5
## 1840                                                 19
## 1841                                                   
## 1842                                                   
## 1843                                                   
## 1844                                                   
## 1845                                                   
## 1846                                                   
## 1847                                                  5
## 1848                                                   
## 1849                                                 19
## 1850                                                   
## 1851                                                  5
## 1852                                                   
## 1853                                                   
## 1854                                                   
## 1855                                                   
## 1856                                                  5
## 1857                                                   
## 1858                                                   
## 1859                                                 19
## 1860                                                   
## 1861                                                   
## 1862                                                   
## 1863                                                   
## 1864                                                   
## 1865                                                   
## 1866                                                   
## 1867                                                   
## 1868                                                   
## 1869                                                   
## 1870                                                   
## 1871                                                   
## 1872                                                   
## 1873                                                   
## 1874                                                   
## 1875                                                   
## 1876                                                   
## 1877                                                   
## 1878                                                   
## 1879                                                 19
## 1880                                                   
## 1881                                                   
## 1882                                                  5
## 1883                                                   
## 1884                                                   
## 1885                                                   
## 1886                                                   
## 1887                                                  5
## 1888                                                 16
## 1889                                                   
## 1890                                                   
## 1891                                                   
## 1892                                                  5
## 1893                                                   
## 1894                                                   
## 1895                                                   
## 1896                                                 19
## 1897                                                  5
## 1898                                                   
## 1899                                                  5
## 1900                                                   
## 1901                                                   
## 1902                                                  5
## 1903                                                  5
## 1904                                                   
## 1905                                                 19
## 1906                                                   
## 1907                                                   
## 1908                                                   
## 1909                                                   
## 1910                                                   
## 1911                                                   
## 1912                                                   
## 1913                                                   
## 1914                                                   
## 1915                                                   
## 1916                                                   
## 1917                                                   
## 1918                                                   
## 1919                                                   
## 1920                                                 19
## 1921                                                   
## 1922                                                 16
## 1923                                                  5
## 1924                                                 19
## 1925                                                   
## 1926                                                   
## 1927                                                   
## 1928                                                   
## 1929                                                   
## 1930                                                   
## 1931                                                   
## 1932                                                   
## 1933                                                   
## 1934                                                   
## 1935                                                   
## 1936                                                   
## 1937                                                   
## 1938                                                   
## 1939                                                   
## 1940                                                 19
## 1941                                                 19
## 1942                                                   
## 1943                                                   
## 1944                                                   
## 1945                                                   
## 1946                                                   
## 1947                                                   
## 1948                                                  5
## 1949                                                  5
## 1950                                                   
## 1951                                                  5
## 1952                                                   
## 1953                                                   
## 1954                                                   
## 1955                                                   
## 1956                                                  5
## 1957                                                 19
## 1958                                                   
## 1959                                                 19
## 1960                                                   
## 1961                                                   
## 1962                                                   
## 1963                                                 19
## 1964                                                   
## 1965                                                   
## 1966                                                   
## 1967                                                 19
## 1968                                                   
## 1969                                                 19
## 1970                                                  5
## 1971                                                 19
## 1972                                                   
## 1973                                                   
## 1974                                                   
## 1975                                                   
## 1976                                                 19
## 1977                                                  5
## 1978                                                   
## 1979                                                   
## 1980                                                   
## 1981                                                   
## 1982                                                  5
## 1983                                                   
## 1984                                                   
## 1985                                                   
## 1986                                                   
## 1987                                                  5
## 1988                                                 16
## 1989                                                  5
## 1990                                                   
## 1991                                                   
## 1992                                                   
## 1993                                                   
## 1994                                                   
## 1995                                                   
## 1996                                                   
## 1997                                                   
## 1998                                                   
## 1999                                                   
## 2000                                                   
## 2001                                                   
## 2002                                                   
## 2003                                                   
## 2004                                                   
## 2005                                                  5
## 2006                                                 19
## 2007                                                   
## 2008                                                   
## 2009                                                   
## 2010                                                   
## 2011                                                 19
## 2012                                                   
## 2013                                                   
## 2014                                                   
## 2015                                                   
## 2016                                                   
## 2017                                                   
## 2018                                                   
## 2019                                                 19
## 2020                                                   
## 2021                                                   
## 2022                                                   
## 2023                                                   
## 2024                                                   
## 2025                                                   
## 2026                                                   
## 2027                                                  5
## 2028                                                   
## 2029                                                   
## 2030                                                  5
## 2031                                                   
## 2032                                                   
## 2033                                                   
## 2034                                                   
## 2035                                                   
## 2036                                                 19
## 2037                                                   
## 2038                                                   
## 2039                                                   
## 2040                                                   
## 2041                                                   
## 2042                                                   
## 2043                                                   
## 2044                                                   
## 2045                                                   
## 2046                                                   
## 2047                                                   
## 2048                                                   
## 2049                                                  5
## 2050                                                  5
## 2051                                                   
## 2052                                                   
## 2053                                                  5
## 2054                                                   
## 2055                                                   
## 2056                                                   
## 2057                                                  5
## 2058                                                   
## 2059                                                   
## 2060                                                   
## 2061                                                   
## 2062                                                 19
## 2063                                                   
## 2064                                                   
## 2065                                                   
## 2066                                                   
## 2067                                                  5
## 2068                                                   
## 2069                                                   
## 2070                                                   
## 2071                                                  5
## 2072                                                   
## 2073                                                   
## 2074                                                  5
## 2075                                                   
## 2076                                                 19
## 2077                                                   
## 2078                                                   
## 2079                                                   
## 2080                                                   
## 2081                                                  5
## 2082                                                   
## 2083                                                 16
## 2084                                                   
## 2085                                                   
## 2086                                                   
## 2087                                                   
## 2088                                                   
## 2089                                                  5
## 2090                                                 19
## 2091                                                   
## 2092                                                   
## 2093                                                  5
## 2094                                                 19
## 2095                                                   
## 2096                                                   
## 2097                                                   
## 2098                                                  5
## 2099                                                   
## 2100                                                   
## 2101                                                   
## 2102                                                   
## 2103                                                   
## 2104                                                   
## 2105                                                   
## 2106                                                  5
## 2107                                                  5
## 2108                                                   
## 2109                                                 19
## 2110                                                 16
## 2111                                                 19
## 2112                                                   
## 2113                                                  5
## 2114                                                   
## 2115                                                   
## 2116                                                  5
## 2117                                                   
## 2118                                                   
## 2119                                                  5
## 2120                                                   
## 2121                                                   
## 2122                                                   
## 2123                                                   
## 2124                                                   
## 2125                                                   
## 2126                                                 19
## 2127                                                  5
## 2128                                                   
## 2129                                                   
## 2130                                                   
## 2131                                                   
## 2132                                                 19
## 2133                                                   
## 2134                                                   
## 2135                                                   
## 2136                                                   
## 2137                                                   
## 2138                                                 19
## 2139                                                 19
## 2140                                                 19
## 2141                                                 19
## 2142                                                   
## 2143                                                   
## 2144                                                   
## 2145                                                 19
## 2146                                                   
## 2147                                                   
## 2148                                                   
## 2149                                                   
## 2150                                                   
## 2151                                                   
## 2152                                                 19
## 2153                                                   
## 2154                                                   
## 2155                                                  5
## 2156                                                   
## 2157                                                 19
## 2158                                                   
## 2159                                                   
## 2160                                                   
## 2161                                                   
## 2162                                                 19
## 2163                                                 16
## 2164                                                   
## 2165                                                  5
## 2166                                                   
## 2167                                                  5
## 2168                                                   
## 2169                                                 19
## 2170                                                   
## 2171                                                   
## 2172                                                   
## 2173                                                   
## 2174                                                   
## 2175                                                   
## 2176                                                 19
## 2177                                                   
## 2178                                                   
## 2179                                                   
## 2180                                                   
## 2181                                                   
## 2182                                                  5
## 2183                                                   
## 2184                                                 19
## 2185                                                 19
## 2186                                                   
## 2187                                                   
## 2188                                                  5
## 2189                                                   
## 2190                                                   
## 2191                                                   
## 2192                                                  5
## 2193                                                   
## 2194                                                   
## 2195                                                   
## 2196                                                 19
## 2197                                                   
## 2198                                                  5
## 2199                                                   
## 2200                                                 19
## 2201                                                   
## 2202                                                  5
## 2203                                                   
## 2204                                                   
## 2205                                                   
## 2206                                                 19
## 2207                                                   
## 2208                                                   
## 2209                                                   
## 2210                                                 19
## 2211                                                   
## 2212                                                   
## 2213                                                 16
## 2214                                                   
## 2215                                                   
## 2216                                                   
## 2217                                                   
## 2218                                                   
## 2219                                                   
## 2220                                                   
## 2221                                                   
## 2222                                                   
## 2223                                                   
## 2224                                                   
## 2225                                                 19
## 2226                                                   
## 2227                                                   
## 2228                                                  5
## 2229                                                   
## 2230                                                   
## 2231                                                  5
## 2232                                                   
## 2233                                                   
## 2234                                                   
## 2235                                                  5
## 2236                                                   
## 2237                                                   
## 2238                                                   
## 2239                                                   
## 2240                                                   
## 2241                                                 19
## 2242                                                   
## 2243                                                   
## 2244                                                   
## 2245                                                   
## 2246                                                  5
## 2247                                                   
## 2248                                                   
## 2249                                                   
## 2250                                                 19
## 2251                                                  5
## 2252                                                   
## 2253                                                   
## 2254                                                   
## 2255                                                 19
## 2256                                                   
## 2257                                                  5
## 2258                                                   
## 2259                                                 19
## 2260                                                   
## 2261                                                   
## 2262                                                   
## 2263                                                   
## 2264                                                   
## 2265                                                   
## 2266                                                 19
## 2267                                                 19
## 2268                                                   
## 2269                                                  5
## 2270                                                  5
## 2271                                                   
## 2272                                                   
## 2273                                                   
## 2274                                                   
## 2275                                                 19
## 2276                                                   
## 2277                                                   
## 2278                                                   
## 2279                                                  5
## 2280                                                   
## 2281                                                  5
## 2282                                                   
## 2283                                                   
## 2284                                                   
## 2285                                                   
## 2286                                                   
## 2287                                                 19
## 2288                                                 16
## 2289                                                   
## 2290                                                   
## 2291                                                   
## 2292                                                   
## 2293                                                   
## 2294                                                   
## 2295                                                  5
## 2296                                                  5
## 2297                                                   
## 2298                                                  5
## 2299                                                   
## 2300                                                 16
## 2301                                                   
## 2302                                                  5
## 2303                                                   
## 2304                                                   
## 2305                                                 19
## 2306                                                 19
## 2307                                                 19
## 2308                                                   
## 2309                                                   
## 2310                                                   
## 2311                                                 16
## 2312                                                   
## 2313                                                   
## 2314                                                   
## 2315                                                   
## 2316                                                 16
## 2317                                                   
## 2318                                                 19
## 2319                                                   
## 2320                                                  5
## 2321                                                  5
## 2322                                                   
## 2323                                                   
## 2324                                                  5
## 2325                                                   
## 2326                                                   
## 2327                                                   
## 2328                                                   
## 2329                                                  5
## 2330                                                  5
## 2331                                                  5
## 2332                                                 19
## 2333                                                 19
## 2334                                                   
## 2335                                                  5
## 2336                                                   
## 2337                                                 19
## 2338                                                   
## 2339                                                  5
## 2340                                                  5
## 2341                                                   
## 2342                                                 16
## 2343                                                  5
## 2344                                                   
## 2345                                                 19
## 2346                                                   
## 2347                                                   
## 2348                                                   
## 2349                                                   
## 2350                                                   
## 2351                                                   
## 2352                                                 16
## 2353                                                   
## 2354                                                   
## 2355                                                 19
## 2356                                                   
## 2357                                                   
## 2358                                                   
## 2359                                                   
## 2360                                                 19
## 2361                                                   
## 2362                                                   
## 2363                                                   
## 2364                                                   
## 2365                                                  5
## 2366                                                 19
## 2367                                                  5
## 2368                                                   
## 2369                                                 19
## 2370                                                   
## 2371                                                   
## 2372                                                   
## 2373                                                   
## 2374                                                 19
## 2375                                                   
## 2376                                                   
## 2377                                                   
## 2378                                                  5
## 2379                                                 16
## 2380                                                   
## 2381                                                   
## 2382                                                  5
## 2383                                                 19
## 2384                                                 19
## 2385                                                   
## 2386                                                   
## 2387                                                   
## 2388                                                   
## 2389                                                   
## 2390                                                 19
## 2391                                                   
## 2392                                                   
## 2393                                                   
## 2394                                                   
## 2395                                                 19
## 2396                                                 19
## 2397                                                  5
## 2398                                                   
## 2399                                                   
## 2400                                                  5
## 2401                                                   
## 2402                                                 19
## 2403                                                 16
## 2404                                                   
## 2405                                                  5
## 2406                                                   
## 2407                                                   
## 2408                                                   
## 2409                                                   
## 2410                                                 19
## 2411                                                   
## 2412                                                   
## 2413                                                   
## 2414                                                  5
## 2415                                                  5
## 2416                                                   
## 2417                                                   
## 2418                                                 16
## 2419                                                 19
## 2420                                                   
## 2421                                                   
## 2422                                                   
## 2423                                                   
## 2424                                                  5
## 2425                                                   
## 2426                                                 19
## 2427                                                   
## 2428                                                 19
## 2429                                                   
## 2430                                                  5
## 2431                                                   
## 2432                                                 19
## 2433                                                  5
## 2434                                                   
## 2435                                                   
## 2436                                                   
## 2437                                                  5
## 2438                                                 19
## 2439                                                   
## 2440                                                 19
## 2441                                                   
## 2442                                                  5
## 2443                                                   
## 2444                                                 19
## 2445                                                   
## 2446                                                   
## 2447                                                  5
## 2448                                                   
## 2449                                                 19
## 2450                                                   
## 2451                                                   
## 2452                                                   
## 2453                                                 16
## 2454                                                   
## 2455                                                   
## 2456                                                 19
## 2457                                                   
## 2458                                                  5
## 2459                                                   
## 2460                                                   
## 2461                                                   
## 2462                                                   
## 2463                                                   
## 2464                                                   
## 2465                                                  5
## 2466                                                   
## 2467                                                   
## 2468                                                 19
## 2469                                                   
## 2470                                                   
## 2471                                                   
## 2472                                                 19
## 2473                                                   
## 2474                                                   
## 2475                                                   
## 2476                                                   
## 2477                                                   
## 2478                                                   
## 2479                                                   
## 2480                                                   
## 2481                                                   
## 2482                                                   
## 2483                                                   
## 2484                                                   
## 2485                                                 16
## 2486                                                   
## 2487                                                 19
## 2488                                                   
## 2489                                                 19
## 2490                                                   
## 2491                                                   
## 2492                                                   
## 2493                                                 19
## 2494                                                 19
## 2495                                                   
## 2496                                                  5
## 2497                                                 19
## 2498                                                   
## 2499                                                 19
## 2500                                                   
## 2501                                                  5
## 2502                                                  5
## 2503                                                   
## 2504                                                   
## 2505                                                   
## 2506                                                 19
## 2507                                                   
## 2508                                                   
## 2509                                                   
## 2510                                                   
## 2511                                                   
## 2512                                                   
## 2513                                                  5
## 2514                                                   
## 2515                                                   
## 2516                                                   
## 2517                                                   
## 2518                                                   
## 2519                                                   
## 2520                                                 19
## 2521                                                   
## 2522                                                   
## 2523                                                   
## 2524                                                 19
## 2525                                                   
## 2526                                                   
## 2527                                                   
## 2528                                                   
## 2529                                                  5
## 2530                                                   
## 2531                                                  5
## 2532                                                   
## 2533                                                  5
## 2534                                                   
## 2535                                                   
## 2536                                                   
## 2537                                                   
## 2538                                                 19
## 2539                                                 19
## 2540                                                 19
## 2541                                                   
## 2542                                                   
## 2543                                                  5
## 2544                                                   
## 2545                                                   
## 2546                                                   
## 2547                                                 19
## 2548                                                   
## 2549                                                   
## 2550                                                 19
## 2551                                                   
## 2552                                                 19
## 2553                                                   
## 2554                                                  5
## 2555                                                   
## 2556                                                  5
## 2557                                                 19
## 2558                                                 19
## 2559                                                  5
## 2560                                                   
## 2561                                                  5
## 2562                                                   
## 2563                                                   
## 2564                                                   
## 2565                                                   
## 2566                                                  5
## 2567                                                   
## 2568                                                   
## 2569                                                   
## 2570                                                   
## 2571                                                  5
## 2572                                                   
## 2573                                                 19
## 2574                                                   
## 2575                                                   
## 2576                                                   
## 2577                                                   
## 2578                                                   
## 2579                                                   
## 2580                                                   
## 2581                                                   
## 2582                                                 16
## 2583                                                 19
## 2584                                                   
## 2585                                                 19
## 2586                                                   
## 2587                                                 16
## 2588                                                  5
## 2589                                                   
## 2590                                                   
## 2591                                                   
## 2592                                                   
## 2593                                                   
## 2594                                                   
## 2595                                                   
## 2596                                                 19
## 2597                                                   
## 2598                                                   
## 2599                                                   
## 2600                                                   
## 2601                                                   
## 2602                                                   
## 2603                                                  5
## 2604                                                   
## 2605                                                   
## 2606                                                 19
## 2607                                                 19
## 2608                                                   
## 2609                                                 19
## 2610                                                   
## 2611                                                   
## 2612                                                   
## 2613                                                   
## 2614                                                   
## 2615                                                   
## 2616                                                 16
## 2617                                                   
## 2618                                                   
## 2619                                                   
## 2620                                                   
## 2621                                                  5
## 2622                                                   
## 2623                                                   
## 2624                                                   
## 2625                                                 19
## 2626                                                   
## 2627                                                   
## 2628                                                   
## 2629                                                   
## 2630                                                   
## 2631                                                 19
## 2632                                                 19
## 2633                                                   
## 2634                                                   
## 2635                                                   
## 2636                                                  5
## 2637                                                   
## 2638                                                   
## 2639                                                   
## 2640                                                   
## 2641                                                   
## 2642                                                   
## 2643                                                   
## 2644                                                   
## 2645                                                   
## 2646                                                   
## 2647                                                   
## 2648                                                 19
## 2649                                                   
## 2650                                                   
## 2651                                                   
## 2652                                                   
## 2653                                                  5
## 2654                                                   
## 2655                                                 19
## 2656                                                   
## 2657                                                   
## 2658                                                   
## 2659                                                   
## 2660                                                   
## 2661                                                 19
## 2662                                                   
## 2663                                                   
## 2664                                                   
## 2665                                                   
## 2666                                                   
## 2667                                                   
## 2668                                                  5
## 2669                                                   
## 2670                                                   
## 2671                                                   
## 2672                                                   
## 2673                                                  5
## 2674                                                   
## 2675                                                  5
## 2676                                                   
## 2677                                                   
## 2678                                                 19
## 2679                                                   
## 2680                                                   
## 2681                                                 19
## 2682                                                   
## 2683                                                 19
## 2684                                                   
## 2685                                                   
## 2686                                                   
## 2687                                                   
## 2688                                                   
## 2689                                                 19
## 2690                                                 19
## 2691                                                   
## 2692                                                   
## 2693                                                   
## 2694                                                   
## 2695                                                  5
## 2696                                                   
## 2697                                                   
## 2698                                                 19
## 2699                                                  5
## 2700                                                   
## 2701                                                   
## 2702                                                   
## 2703                                                 19
## 2704                                                   
## 2705                                                   
## 2706                                                   
## 2707                                                   
## 2708                                                 19
## 2709                                                   
## 2710                                                   
## 2711                                                  5
## 2712                                                  5
## 2713                                                   
## 2714                                                   
## 2715                                                   
## 2716                                                   
## 2717                                                  5
## 2718                                                   
## 2719                                                   
## 2720                                                   
## 2721                                                   
## 2722                                                   
## 2723                                                   
## 2724                                                   
## 2725                                                 19
## 2726                                                   
## 2727                                                   
## 2728                                                   
## 2729                                                   
## 2730                                                  5
## 2731                                                  5
## 2732                                                   
## 2733                                                   
## 2734                                                 16
## 2735                                                   
## 2736                                                   
## 2737                                                   
## 2738                                                   
## 2739                                                   
## 2740                                                 16
## 2741                                                   
## 2742                                                   
## 2743                                                  5
## 2744                                                 16
## 2745                                                   
## 2746                                                   
## 2747                                                  5
## 2748                                                 19
## 2749                                                   
## 2750                                                   
## 2751                                                   
## 2752                                                   
## 2753                                                 19
## 2754                                                   
## 2755                                                   
## 2756                                                  5
## 2757                                                   
## 2758                                                   
## 2759                                                   
## 2760                                                   
## 2761                                                   
## 2762                                                   
## 2763                                                 19
## 2764                                                  5
## 2765                                                   
## 2766                                                   
## 2767                                                   
## 2768                                                   
## 2769                                                  5
## 2770                                                  5
## 2771                                                  5
## 2772                                                  5
## 2773                                                   
## 2774                                                   
## 2775                                                 19
## 2776                                                   
## 2777                                                   
## 2778                                                   
## 2779                                                   
## 2780                                                   
## 2781                                                   
## 2782                                                   
## 2783                                                   
## 2784                                                   
## 2785                                                   
## 2786                                                 19
## 2787                                                   
## 2788                                                   
## 2789                                                   
## 2790                                                   
## 2791                                                   
## 2792                                                   
## 2793                                                   
## 2794                                                   
## 2795                                                   
## 2796                                                   
## 2797                                                   
## 2798                                                   
## 2799                                                   
## 2800                                                   
## 2801                                                   
## 2802                                                 19
## 2803                                                   
## 2804                                                   
## 2805                                                   
## 2806                                                  5
## 2807                                                   
## 2808                                                   
## 2809                                                   
## 2810                                                   
## 2811                                                   
## 2812                                                   
## 2813                                                   
## 2814                                                  5
## 2815                                                 16
## 2816                                                   
## 2817                                                 19
## 2818                                                   
## 2819                                                   
## 2820                                                 19
## 2821                                                 19
## 2822                                                   
## 2823                                                   
## 2824                                                   
## 2825                                                   
## 2826                                                   
## 2827                                                 19
## 2828                                                 19
## 2829                                                  5
## 2830                                                   
## 2831                                                   
## 2832                                                 19
## 2833                                                   
## 2834                                                   
## 2835                                                   
## 2836                                                   
## 2837                                                  5
## 2838                                                   
## 2839                                                   
## 2840                                                   
## 2841                                                   
## 2842                                                  5
## 2843                                                 19
## 2844                                                   
## 2845                                                 19
## 2846                                                 19
## 2847                                                 19
## 2848                                                   
## 2849                                                   
## 2850                                                   
## 2851                                                   
## 2852                                                   
## 2853                                                  5
## 2854                                                   
## 2855                                                   
## 2856                                                   
## 2857                                                   
## 2858                                                   
## 2859                                                   
## 2860                                                   
## 2861                                                   
## 2862                                                   
## 2863                                                   
## 2864                                                   
## 2865                                                   
## 2866                                                   
## 2867                                                  5
## 2868                                                   
## 2869                                                   
## 2870                                                  5
## 2871                                                   
## 2872                                                   
## 2873                                                   
## 2874                                                  5
## 2875                                                   
## 2876                                                   
## 2877                                                   
## 2878                                                   
## 2879                                                 16
## 2880                                                 19
## 2881                                                   
## 2882                                                 16
## 2883                                                   
## 2884                                                 19
## 2885                                                   
## 2886                                                   
## 2887                                                   
## 2888                                                 16
## 2889                                                  5
## 2890                                                   
## 2891                                                   
## 2892                                                   
## 2893                                                   
## 2894                                                   
## 2895                                                   
## 2896                                                   
## 2897                                                   
## 2898                                                   
## 2899                                                   
## 2900                                                  5
## 2901                                                   
## 2902                                                  5
## 2903                                                  5
## 2904                                                   
## 2905                                                   
## 2906                                                   
## 2907                                                   
## 2908                                                   
## 2909                                                   
## 2910                                                  5
## 2911                                                   
## 2912                                                   
## 2913                                                   
## 2914                                                  5
## 2915                                                   
## 2916                                                   
## 2917                                                   
## 2918                                                   
## 2919                                                   
## 2920                                                   
## 2921                                                   
## 2922                                                   
## 2923                                                   
## 2924                                                   
## 2925                                                   
## 2926                                                 19
## 2927                                                  5
## 2928                                                   
## 2929                                                   
## 2930                                                   
## 2931                                                   
## 2932                                                   
## 2933                                                   
## 2934                                                 19
## 2935                                                   
## 2936                                                   
## 2937                                                   
## 2938                                                  5
## 2939                                                   
## 2940                                                   
## 2941                                                   
## 2942                                                  5
## 2943                                                   
## 2944                                                   
## 2945                                                   
## 2946                                                   
## 2947                                                   
## 2948                                                  5
## 2949                                                   
## 2950                                                 19
## 2951                                                   
## 2952                                                  5
## 2953                                                   
## 2954                                                   
## 2955                                                   
## 2956                                                  5
## 2957                                                 19
## 2958                                                   
## 2959                                                 16
## 2960                                                   
## 2961                                                   
## 2962                                                   
## 2963                                                  5
## 2964                                                   
## 2965                                                   
## 2966                                                 19
## 2967                                                   
## 2968                                                   
## 2969                                                   
## 2970                                                   
## 2971                                                   
## 2972                                                   
## 2973                                                   
## 2974                                                   
## 2975                                                  5
## 2976                                                 16
## 2977                                                   
## 2978                                                   
## 2979                                                   
## 2980                                                   
## 2981                                                   
## 2982                                                   
## 2983                                                   
## 2984                                                   
## 2985                                                   
## 2986                                                   
## 2987                                                   
## 2988                                                   
## 2989                                                   
## 2990                                                   
## 2991                                                   
## 2992                                                   
## 2993                                                   
## 2994                                                   
## 2995                                                   
## 2996                                                   
## 2997                                                 19
## 2998                                                   
## 2999                                                   
## 3000                                                   
## 3001                                                  5
## 3002                                                   
## 3003                                                   
## 3004                                                   
## 3005                                                   
## 3006                                                   
## 3007                                                 19
## 3008                                                 16
## 3009                                                   
## 3010                                                   
## 3011                                                  5
## 3012                                                   
## 3013                                                  5
## 3014                                                   
## 3015                                                 19
## 3016                                                   
## 3017                                                  5
## 3018                                                   
## 3019                                                   
## 3020                                                  5
## 3021                                                   
## 3022                                                 19
## 3023                                                   
## 3024                                                   
## 3025                                                   
## 3026                                                   
## 3027                                                 19
## 3028                                                   
## 3029                                                   
## 3030                                                   
## 3031                                                   
## 3032                                                   
## 3033                                                   
## 3034                                                   
## 3035                                                   
## 3036                                                   
## 3037                                                 19
## 3038                                                   
## 3039                                                   
## 3040                                                   
## 3041                                                   
## 3042                                                   
## 3043                                                  5
## 3044                                                   
## 3045                                                 19
## 3046                                                  5
## 3047                                                   
## 3048                                                   
## 3049                                                 19
## 3050                                                   
## 3051                                                   
## 3052                                                   
## 3053                                                   
## 3054                                                   
## 3055                                                   
## 3056                                                   
## 3057                                                 19
## 3058                                                   
## 3059                                                   
## 3060                                                 19
## 3061                                                 19
## 3062                                                  5
## 3063                                                   
## 3064                                                   
## 3065                                                   
## 3066                                                   
## 3067                                                   
## 3068                                                 19
## 3069                                                   
## 3070                                                   
## 3071                                                   
## 3072                                                   
## 3073                                                  5
## 3074                                                   
## 3075                                                   
## 3076                                                  5
## 3077                                                  5
## 3078                                                   
## 3079                                                   
## 3080                                                   
## 3081                                                   
## 3082                                                   
## 3083                                                   
## 3084                                                 19
## 3085                                                   
## 3086                                                   
## 3087                                                   
## 3088                                                 19
## 3089                                                   
## 3090                                                   
## 3091                                                   
## 3092                                                   
## 3093                                                   
## 3094                                                  5
## 3095                                                   
## 3096                                                   
## 3097                                                   
## 3098                                                  5
## 3099                                                   
## 3100                                                   
## 3101                                                   
## 3102                                                   
## 3103                                                   
## 3104                                                   
## 3105                                                   
## 3106                                                   
## 3107                                                  5
## 3108                                                   
## 3109                                                   
## 3110                                                 19
## 3111                                                  5
## 3112                                                   
## 3113                                                   
## 3114                                                   
## 3115                                                   
## 3116                                                 19
## 3117                                                 19
## 3118                                                   
## 3119                                                  5
## 3120                                                   
## 3121                                                   
## 3122                                                   
## 3123                                                 19
## 3124                                                   
## 3125                                                   
## 3126                                                   
## 3127                                                   
## 3128                                                   
## 3129                                                  5
## 3130                                                 19
## 3131                                                 19
## 3132                                                   
## 3133                                                   
## 3134                                                 16
## 3135                                                 19
## 3136                                                   
## 3137                                                 19
## 3138                                                 19
## 3139                                                 19
## 3140                                                   
## 3141                                                   
## 3142                                                   
## 3143                                                   
## 3144                                                  5
## 3145                                                   
## 3146                                                   
## 3147                                                   
## 3148                                                   
## 3149                                                  5
## 3150                                                   
## 3151                                                   
## 3152                                                   
## 3153                                                   
## 3154                                                   
## 3155                                                  5
## 3156                                                   
## 3157                                                   
## 3158                                                   
## 3159                                                   
## 3160                                                   
## 3161                                                   
## 3162                                                   
## 3163                                                   
## 3164                                                  5
## 3165                                                   
## 3166                                                   
## 3167                                                   
## 3168                                                   
## 3169                                                   
## 3170                                                   
## 3171                                                   
## 3172                                                  5
## 3173                                                   
## 3174                                                   
## 3175                                                   
## 3176                                                   
## 3177                                                   
## 3178                                                   
## 3179                                                   
## 3180                                                   
## 3181                                                   
## 3182                                                   
## 3183                                                 19
## 3184                                                   
## 3185                                                   
## 3186                                                   
## 3187                                                   
## 3188                                                   
## 3189                                                   
## 3190                                                   
## 3191                                                   
## 3192                                                   
## 3193                                                   
## 3194                                                  5
## 3195                                                   
## 3196                                                   
## 3197                                                   
## 3198                                                   
## 3199                                                   
## 3200                                                   
## 3201                                                 19
## 3202                                                   
## 3203                                                   
## 3204                                                   
## 3205                                                   
## 3206                                                   
## 3207                                                 19
## 3208                                                   
## 3209                                                   
## 3210                                                   
## 3211                                                   
## 3212                                                   
## 3213                                                 19
## 3214                                                 19
## 3215                                                   
## 3216                                                 19
## 3217                                                   
## 3218                                                   
## 3219                                                   
## 3220                                                   
## 3221                                                   
## 3222                                                   
## 3223                                                   
## 3224                                                   
## 3225                                                  5
## 3226                                                   
## 3227                                                   
## 3228                                                   
## 3229                                                   
## 3230                                                   
## 3231                                                   
## 3232                                                  5
## 3233                                                   
## 3234                                                   
## 3235                                                   
## 3236                                                   
## 3237                                                   
## 3238                                                   
## 3239                                                   
## 3240                                                   
## 3241                                                   
## 3242                                                   
## 3243                                                   
## 3244                                                   
## 3245                                                 19
## 3246                                                   
## 3247                                                   
## 3248                                                 19
## 3249                                                   
## 3250                                                 16
## 3251                                                   
## 3252                                                   
## 3253                                                   
## 3254                                                   
## 3255                                                   
## 3256                                                   
## 3257                                                 19
## 3258                                                   
## 3259                                                 16
## 3260                                                   
## 3261                                                   
## 3262                                                   
## 3263                                                   
## 3264                                                 16
## 3265                                                 19
## 3266                                                   
## 3267                                                   
## 3268                                                 19
## 3269                                                   
## 3270                                                 19
## 3271                                                   
## 3272                                                  5
## 3273                                                   
## 3274                                                   
## 3275                                                   
## 3276                                                  5
## 3277                                                   
## 3278                                                 16
## 3279                                                 19
## 3280                                                   
## 3281                                                   
## 3282                                                   
## 3283                                                   
## 3284                                                   
## 3285                                                   
## 3286                                                 16
## 3287                                                 19
## 3288                                                   
## 3289                                                   
## 3290                                                   
## 3291                                                   
## 3292                                                   
## 3293                                                   
## 3294                                                   
## 3295                                                   
## 3296                                                 19
## 3297                                                  5
## 3298                                                   
## 3299                                                   
## 3300                                                   
## 3301                                                   
## 3302                                                   
## 3303                                                 19
## 3304                                                   
## 3305                                                   
## 3306                                                   
## 3307                                                   
## 3308                                                   
## 3309                                                 19
## 3310                                                   
## 3311                                                   
## 3312                                                   
## 3313                                                   
## 3314                                                   
## 3315                                                   
## 3316                                                 19
## 3317                                                   
## 3318                                                   
## 3319                                                  5
## 3320                                                   
## 3321                                                   
## 3322                                                   
## 3323                                                  5
## 3324                                                   
## 3325                                                 19
## 3326                                                   
## 3327                                                   
## 3328                                                   
## 3329                                                   
## 3330                                                   
## 3331                                                   
## 3332                                                   
## 3333                                                   
## 3334                                                   
## 3335                                                   
## 3336                                                   
## 3337                                                   
## 3338                                                  5
## 3339                                                   
## 3340                                                   
## 3341                                                   
## 3342                                                   
## 3343                                                   
## 3344                                                   
## 3345                                                   
## 3346                                                   
## 3347                                                   
## 3348                                                 19
## 3349                                                   
## 3350                                                   
## 3351                                                 19
## 3352                                                   
## 3353                                                  5
## 3354                                                  5
## 3355                                                 19
## 3356                                                   
## 3357                                                   
## 3358                                                   
## 3359                                                   
## 3360                                                 19
## 3361                                                   
## 3362                                                   
## 3363                                                   
## 3364                                                   
## 3365                                                   
## 3366                                                  5
## 3367                                                   
## 3368                                                   
## 3369                                                   
## 3370                                                  5
## 3371                                                   
## 3372                                                   
## 3373                                                   
## 3374                                                  5
## 3375                                                   
## 3376                                                 19
## 3377                                                  5
## 3378                                                  5
## 3379                                                   
## 3380                                                   
## 3381                                                   
## 3382                                                  5
## 3383                                                 19
## 3384                                                   
## 3385                                                   
## 3386                                                   
## 3387                                                 16
## 3388                                                   
## 3389                                                   
## 3390                                                   
## 3391                                                   
## 3392                                                   
## 3393                                                  5
## 3394                                                   
## 3395                                                   
## 3396                                                  5
## 3397                                                   
## 3398                                                 19
## 3399                                                   
## 3400                                                   
## 3401                                                  5
## 3402                                                  5
## 3403                                                 19
## 3404                                                   
## 3405                                                 19
## 3406                                                   
## 3407                                                   
## 3408                                                   
## 3409                                                  5
## 3410                                                   
## 3411                                                  5
## 3412                                                   
## 3413                                                   
## 3414                                                  5
## 3415                                                   
## 3416                                                  5
## 3417                                                   
## 3418                                                  5
## 3419                                                   
## 3420                                                   
## 3421                                                   
## 3422                                                   
## 3423                                                   
## 3424                                                   
## 3425                                                   
## 3426                                                  5
## 3427                                                   
## 3428                                                  5
## 3429                                                   
## 3430                                                   
## 3431                                                   
## 3432                                                   
## 3433                                                   
## 3434                                                   
## 3435                                                   
## 3436                                                   
## 3437                                                   
## 3438                                                   
## 3439                                                   
## 3440                                                   
## 3441                                                   
## 3442                                                   
## 3443                                                 19
## 3444                                                   
## 3445                                                   
## 3446                                                 19
## 3447                                                  5
## 3448                                                 19
##      Timeliness_of_care_national_comparison
## 1                             Not Available
## 2                             Not Available
## 3                             Not Available
## 4              Same as the national average
## 5                             Not Available
## 6                Above the national average
## 7                             Not Available
## 8                             Not Available
## 9                             Not Available
## 10                            Not Available
## 11                            Not Available
## 12               Below the national average
## 13                            Not Available
## 14                            Not Available
## 15                            Not Available
## 16                            Not Available
## 17             Same as the national average
## 18                            Not Available
## 19                            Not Available
## 20                            Not Available
## 21                            Not Available
## 22                            Not Available
## 23                            Not Available
## 24                            Not Available
## 25                            Not Available
## 26                            Not Available
## 27                            Not Available
## 28                            Not Available
## 29                            Not Available
## 30             Same as the national average
## 31                            Not Available
## 32                            Not Available
## 33                            Not Available
## 34                            Not Available
## 35                            Not Available
## 36                            Not Available
## 37                            Not Available
## 38                            Not Available
## 39                            Not Available
## 40                            Not Available
## 41                            Not Available
## 42                            Not Available
## 43             Same as the national average
## 44                            Not Available
## 45                            Not Available
## 46                            Not Available
## 47                            Not Available
## 48                            Not Available
## 49                            Not Available
## 50                            Not Available
## 51                            Not Available
## 52                            Not Available
## 53                            Not Available
## 54                            Not Available
## 55                            Not Available
## 56               Above the national average
## 57             Same as the national average
## 58                            Not Available
## 59                            Not Available
## 60             Same as the national average
## 61                            Not Available
## 62               Above the national average
## 63                            Not Available
## 64               Above the national average
## 65             Same as the national average
## 66                            Not Available
## 67               Below the national average
## 68                            Not Available
## 69             Same as the national average
## 70               Below the national average
## 71               Below the national average
## 72             Same as the national average
## 73             Same as the national average
## 74                            Not Available
## 75                            Not Available
## 76             Same as the national average
## 77                            Not Available
## 78               Above the national average
## 79                            Not Available
## 80             Same as the national average
## 81                            Not Available
## 82               Above the national average
## 83                            Not Available
## 84               Below the national average
## 85                            Not Available
## 86                            Not Available
## 87               Below the national average
## 88                            Not Available
## 89               Above the national average
## 90             Same as the national average
## 91               Below the national average
## 92             Same as the national average
## 93               Below the national average
## 94               Above the national average
## 95             Same as the national average
## 96                            Not Available
## 97               Below the national average
## 98             Same as the national average
## 99             Same as the national average
## 100              Above the national average
## 101              Above the national average
## 102            Same as the national average
## 103              Below the national average
## 104              Below the national average
## 105              Below the national average
## 106              Below the national average
## 107            Same as the national average
## 108              Below the national average
## 109            Same as the national average
## 110                           Not Available
## 111              Above the national average
## 112              Above the national average
## 113              Below the national average
## 114              Above the national average
## 115            Same as the national average
## 116                           Not Available
## 117                           Not Available
## 118                           Not Available
## 119                           Not Available
## 120                           Not Available
## 121              Above the national average
## 122                           Not Available
## 123              Below the national average
## 124              Above the national average
## 125              Above the national average
## 126                           Not Available
## 127                           Not Available
## 128              Below the national average
## 129                           Not Available
## 130              Above the national average
## 131              Below the national average
## 132              Above the national average
## 133            Same as the national average
## 134              Above the national average
## 135            Same as the national average
## 136              Above the national average
## 137            Same as the national average
## 138                           Not Available
## 139              Above the national average
## 140              Below the national average
## 141              Above the national average
## 142                           Not Available
## 143                           Not Available
## 144                           Not Available
## 145              Below the national average
## 146                           Not Available
## 147              Above the national average
## 148              Above the national average
## 149              Below the national average
## 150                           Not Available
## 151            Same as the national average
## 152                           Not Available
## 153            Same as the national average
## 154              Above the national average
## 155              Below the national average
## 156            Same as the national average
## 157            Same as the national average
## 158                           Not Available
## 159              Above the national average
## 160              Above the national average
## 161                           Not Available
## 162              Above the national average
## 163              Above the national average
## 164              Below the national average
## 165            Same as the national average
## 166                           Not Available
## 167              Below the national average
## 168            Same as the national average
## 169                           Not Available
## 170              Below the national average
## 171                           Not Available
## 172              Above the national average
## 173            Same as the national average
## 174              Below the national average
## 175              Above the national average
## 176              Above the national average
## 177                           Not Available
## 178                           Not Available
## 179              Above the national average
## 180              Below the national average
## 181                           Not Available
## 182            Same as the national average
## 183              Below the national average
## 184                           Not Available
## 185            Same as the national average
## 186            Same as the national average
## 187            Same as the national average
## 188            Same as the national average
## 189            Same as the national average
## 190              Below the national average
## 191            Same as the national average
## 192              Above the national average
## 193                           Not Available
## 194            Same as the national average
## 195                           Not Available
## 196            Same as the national average
## 197                           Not Available
## 198            Same as the national average
## 199            Same as the national average
## 200                           Not Available
## 201                           Not Available
## 202              Above the national average
## 203                           Not Available
## 204              Above the national average
## 205            Same as the national average
## 206                           Not Available
## 207              Above the national average
## 208              Below the national average
## 209              Above the national average
## 210              Above the national average
## 211                           Not Available
## 212            Same as the national average
## 213                           Not Available
## 214              Above the national average
## 215                           Not Available
## 216                           Not Available
## 217              Above the national average
## 218              Below the national average
## 219                           Not Available
## 220                           Not Available
## 221            Same as the national average
## 222              Above the national average
## 223            Same as the national average
## 224                           Not Available
## 225              Below the national average
## 226                           Not Available
## 227                           Not Available
## 228            Same as the national average
## 229              Above the national average
## 230                           Not Available
## 231              Above the national average
## 232            Same as the national average
## 233            Same as the national average
## 234            Same as the national average
## 235              Below the national average
## 236              Above the national average
## 237              Above the national average
## 238              Above the national average
## 239              Above the national average
## 240                           Not Available
## 241              Above the national average
## 242              Below the national average
## 243            Same as the national average
## 244              Below the national average
## 245              Below the national average
## 246              Above the national average
## 247              Below the national average
## 248              Above the national average
## 249                           Not Available
## 250                           Not Available
## 251              Below the national average
## 252                           Not Available
## 253              Below the national average
## 254            Same as the national average
## 255            Same as the national average
## 256            Same as the national average
## 257            Same as the national average
## 258            Same as the national average
## 259            Same as the national average
## 260              Below the national average
## 261                           Not Available
## 262                           Not Available
## 263            Same as the national average
## 264                           Not Available
## 265              Below the national average
## 266                           Not Available
## 267            Same as the national average
## 268                           Not Available
## 269                           Not Available
## 270            Same as the national average
## 271              Above the national average
## 272              Above the national average
## 273                           Not Available
## 274            Same as the national average
## 275                           Not Available
## 276              Below the national average
## 277              Above the national average
## 278            Same as the national average
## 279              Above the national average
## 280              Above the national average
## 281              Above the national average
## 282              Above the national average
## 283              Below the national average
## 284            Same as the national average
## 285                           Not Available
## 286              Above the national average
## 287                           Not Available
## 288              Below the national average
## 289              Above the national average
## 290            Same as the national average
## 291                           Not Available
## 292                           Not Available
## 293              Above the national average
## 294                           Not Available
## 295            Same as the national average
## 296                           Not Available
## 297            Same as the national average
## 298              Above the national average
## 299                           Not Available
## 300              Above the national average
## 301                           Not Available
## 302              Above the national average
## 303            Same as the national average
## 304                           Not Available
## 305                           Not Available
## 306                           Not Available
## 307              Above the national average
## 308              Above the national average
## 309                           Not Available
## 310                           Not Available
## 311            Same as the national average
## 312            Same as the national average
## 313            Same as the national average
## 314            Same as the national average
## 315                           Not Available
## 316              Below the national average
## 317            Same as the national average
## 318              Above the national average
## 319              Above the national average
## 320              Below the national average
## 321              Below the national average
## 322            Same as the national average
## 323              Below the national average
## 324                           Not Available
## 325            Same as the national average
## 326            Same as the national average
## 327              Below the national average
## 328              Below the national average
## 329            Same as the national average
## 330                           Not Available
## 331              Below the national average
## 332            Same as the national average
## 333            Same as the national average
## 334            Same as the national average
## 335            Same as the national average
## 336                           Not Available
## 337              Below the national average
## 338                           Not Available
## 339            Same as the national average
## 340            Same as the national average
## 341            Same as the national average
## 342                           Not Available
## 343              Above the national average
## 344                           Not Available
## 345            Same as the national average
## 346              Below the national average
## 347                           Not Available
## 348              Above the national average
## 349            Same as the national average
## 350            Same as the national average
## 351            Same as the national average
## 352              Below the national average
## 353                           Not Available
## 354              Above the national average
## 355            Same as the national average
## 356            Same as the national average
## 357            Same as the national average
## 358              Below the national average
## 359              Below the national average
## 360                           Not Available
## 361              Above the national average
## 362              Below the national average
## 363              Below the national average
## 364              Above the national average
## 365              Below the national average
## 366              Above the national average
## 367              Above the national average
## 368              Below the national average
## 369              Below the national average
## 370              Below the national average
## 371            Same as the national average
## 372            Same as the national average
## 373              Above the national average
## 374              Below the national average
## 375                           Not Available
## 376                           Not Available
## 377                           Not Available
## 378            Same as the national average
## 379                           Not Available
## 380            Same as the national average
## 381              Above the national average
## 382                           Not Available
## 383              Below the national average
## 384                           Not Available
## 385                           Not Available
## 386                           Not Available
## 387                           Not Available
## 388            Same as the national average
## 389              Above the national average
## 390            Same as the national average
## 391              Above the national average
## 392              Above the national average
## 393                           Not Available
## 394              Above the national average
## 395            Same as the national average
## 396                           Not Available
## 397              Above the national average
## 398              Above the national average
## 399              Above the national average
## 400            Same as the national average
## 401                           Not Available
## 402              Above the national average
## 403                           Not Available
## 404              Below the national average
## 405                           Not Available
## 406              Below the national average
## 407                           Not Available
## 408              Above the national average
## 409              Above the national average
## 410                           Not Available
## 411              Below the national average
## 412            Same as the national average
## 413              Above the national average
## 414              Below the national average
## 415                           Not Available
## 416              Below the national average
## 417                           Not Available
## 418                           Not Available
## 419            Same as the national average
## 420                           Not Available
## 421                           Not Available
## 422              Below the national average
## 423              Above the national average
## 424                           Not Available
## 425            Same as the national average
## 426              Above the national average
## 427            Same as the national average
## 428              Above the national average
## 429                           Not Available
## 430            Same as the national average
## 431            Same as the national average
## 432              Above the national average
## 433              Below the national average
## 434              Below the national average
## 435              Above the national average
## 436            Same as the national average
## 437              Above the national average
## 438            Same as the national average
## 439              Below the national average
## 440                           Not Available
## 441              Above the national average
## 442              Above the national average
## 443              Above the national average
## 444              Below the national average
## 445              Above the national average
## 446              Below the national average
## 447              Below the national average
## 448                           Not Available
## 449            Same as the national average
## 450              Below the national average
## 451                           Not Available
## 452              Above the national average
## 453            Same as the national average
## 454            Same as the national average
## 455              Above the national average
## 456              Below the national average
## 457                           Not Available
## 458              Below the national average
## 459            Same as the national average
## 460              Below the national average
## 461            Same as the national average
## 462              Above the national average
## 463            Same as the national average
## 464              Above the national average
## 465            Same as the national average
## 466              Above the national average
## 467              Below the national average
## 468            Same as the national average
## 469                           Not Available
## 470            Same as the national average
## 471              Above the national average
## 472              Above the national average
## 473              Below the national average
## 474              Above the national average
## 475                           Not Available
## 476                           Not Available
## 477            Same as the national average
## 478              Above the national average
## 479              Below the national average
## 480              Below the national average
## 481            Same as the national average
## 482              Above the national average
## 483            Same as the national average
## 484            Same as the national average
## 485              Below the national average
## 486                           Not Available
## 487                           Not Available
## 488            Same as the national average
## 489              Below the national average
## 490                           Not Available
## 491            Same as the national average
## 492              Above the national average
## 493              Above the national average
## 494              Above the national average
## 495            Same as the national average
## 496              Below the national average
## 497              Below the national average
## 498              Below the national average
## 499                           Not Available
## 500                           Not Available
## 501                           Not Available
## 502                           Not Available
## 503              Above the national average
## 504              Below the national average
## 505              Above the national average
## 506                           Not Available
## 507                           Not Available
## 508            Same as the national average
## 509                           Not Available
## 510              Above the national average
## 511                           Not Available
## 512              Below the national average
## 513            Same as the national average
## 514            Same as the national average
## 515                           Not Available
## 516            Same as the national average
## 517                           Not Available
## 518              Below the national average
## 519              Below the national average
## 520            Same as the national average
## 521              Above the national average
## 522              Above the national average
## 523              Below the national average
## 524              Below the national average
## 525            Same as the national average
## 526              Below the national average
## 527            Same as the national average
## 528                           Not Available
## 529            Same as the national average
## 530            Same as the national average
## 531                           Not Available
## 532              Above the national average
## 533              Above the national average
## 534            Same as the national average
## 535                           Not Available
## 536            Same as the national average
## 537              Above the national average
## 538                           Not Available
## 539            Same as the national average
## 540              Above the national average
## 541              Below the national average
## 542                           Not Available
## 543                           Not Available
## 544              Above the national average
## 545              Below the national average
## 546              Below the national average
## 547              Below the national average
## 548                           Not Available
## 549            Same as the national average
## 550              Below the national average
## 551              Below the national average
## 552              Below the national average
## 553                           Not Available
## 554            Same as the national average
## 555            Same as the national average
## 556              Below the national average
## 557              Above the national average
## 558              Below the national average
## 559              Below the national average
## 560              Below the national average
## 561              Below the national average
## 562              Above the national average
## 563              Above the national average
## 564                           Not Available
## 565            Same as the national average
## 566              Below the national average
## 567            Same as the national average
## 568            Same as the national average
## 569                           Not Available
## 570                           Not Available
## 571              Below the national average
## 572              Above the national average
## 573              Below the national average
## 574              Below the national average
## 575                           Not Available
## 576              Below the national average
## 577              Below the national average
## 578              Below the national average
## 579                           Not Available
## 580              Below the national average
## 581                           Not Available
## 582              Below the national average
## 583              Below the national average
## 584              Above the national average
## 585            Same as the national average
## 586              Above the national average
## 587              Above the national average
## 588            Same as the national average
## 589                           Not Available
## 590                           Not Available
## 591            Same as the national average
## 592                           Not Available
## 593              Above the national average
## 594                           Not Available
## 595              Below the national average
## 596                           Not Available
## 597            Same as the national average
## 598                           Not Available
## 599              Above the national average
## 600              Below the national average
## 601            Same as the national average
## 602              Above the national average
## 603            Same as the national average
## 604            Same as the national average
## 605                           Not Available
## 606              Above the national average
## 607            Same as the national average
## 608              Below the national average
## 609                           Not Available
## 610                           Not Available
## 611                           Not Available
## 612              Above the national average
## 613              Below the national average
## 614              Above the national average
## 615              Below the national average
## 616              Below the national average
## 617                           Not Available
## 618            Same as the national average
## 619              Below the national average
## 620              Above the national average
## 621              Above the national average
## 622              Below the national average
## 623                           Not Available
## 624            Same as the national average
## 625            Same as the national average
## 626            Same as the national average
## 627              Below the national average
## 628                           Not Available
## 629              Below the national average
## 630            Same as the national average
## 631              Above the national average
## 632              Below the national average
## 633            Same as the national average
## 634            Same as the national average
## 635            Same as the national average
## 636              Above the national average
## 637            Same as the national average
## 638                           Not Available
## 639            Same as the national average
## 640              Below the national average
## 641            Same as the national average
## 642              Above the national average
## 643              Below the national average
## 644              Below the national average
## 645                           Not Available
## 646                           Not Available
## 647                           Not Available
## 648            Same as the national average
## 649                           Not Available
## 650            Same as the national average
## 651                           Not Available
## 652              Above the national average
## 653              Below the national average
## 654            Same as the national average
## 655            Same as the national average
## 656                           Not Available
## 657              Below the national average
## 658              Below the national average
## 659            Same as the national average
## 660              Below the national average
## 661                           Not Available
## 662              Below the national average
## 663            Same as the national average
## 664                           Not Available
## 665                           Not Available
## 666            Same as the national average
## 667              Below the national average
## 668                           Not Available
## 669                           Not Available
## 670              Below the national average
## 671              Above the national average
## 672            Same as the national average
## 673                           Not Available
## 674                           Not Available
## 675              Above the national average
## 676              Below the national average
## 677                           Not Available
## 678              Above the national average
## 679                           Not Available
## 680              Above the national average
## 681              Below the national average
## 682            Same as the national average
## 683              Above the national average
## 684                           Not Available
## 685              Above the national average
## 686              Above the national average
## 687              Above the national average
## 688                           Not Available
## 689                           Not Available
## 690            Same as the national average
## 691              Above the national average
## 692            Same as the national average
## 693              Above the national average
## 694            Same as the national average
## 695            Same as the national average
## 696            Same as the national average
## 697                           Not Available
## 698              Above the national average
## 699            Same as the national average
## 700              Above the national average
## 701            Same as the national average
## 702                           Not Available
## 703            Same as the national average
## 704              Below the national average
## 705              Above the national average
## 706                           Not Available
## 707              Above the national average
## 708              Above the national average
## 709                           Not Available
## 710                           Not Available
## 711                           Not Available
## 712              Below the national average
## 713            Same as the national average
## 714                           Not Available
## 715              Below the national average
## 716            Same as the national average
## 717            Same as the national average
## 718            Same as the national average
## 719              Above the national average
## 720              Above the national average
## 721              Below the national average
## 722              Above the national average
## 723              Below the national average
## 724            Same as the national average
## 725              Above the national average
## 726                           Not Available
## 727              Below the national average
## 728              Above the national average
## 729            Same as the national average
## 730                           Not Available
## 731            Same as the national average
## 732            Same as the national average
## 733              Above the national average
## 734                           Not Available
## 735              Below the national average
## 736            Same as the national average
## 737              Above the national average
## 738              Above the national average
## 739            Same as the national average
## 740                           Not Available
## 741                           Not Available
## 742              Above the national average
## 743                           Not Available
## 744            Same as the national average
## 745                           Not Available
## 746                           Not Available
## 747              Below the national average
## 748              Below the national average
## 749                           Not Available
## 750            Same as the national average
## 751                           Not Available
## 752            Same as the national average
## 753              Below the national average
## 754              Above the national average
## 755              Above the national average
## 756            Same as the national average
## 757              Below the national average
## 758              Above the national average
## 759                           Not Available
## 760            Same as the national average
## 761              Above the national average
## 762            Same as the national average
## 763                           Not Available
## 764              Above the national average
## 765            Same as the national average
## 766              Above the national average
## 767            Same as the national average
## 768                           Not Available
## 769                           Not Available
## 770            Same as the national average
## 771                           Not Available
## 772              Below the national average
## 773            Same as the national average
## 774              Above the national average
## 775              Above the national average
## 776              Below the national average
## 777                           Not Available
## 778            Same as the national average
## 779            Same as the national average
## 780              Below the national average
## 781              Above the national average
## 782            Same as the national average
## 783                           Not Available
## 784            Same as the national average
## 785              Below the national average
## 786              Below the national average
## 787              Above the national average
## 788              Below the national average
## 789            Same as the national average
## 790              Above the national average
## 791                           Not Available
## 792                           Not Available
## 793                           Not Available
## 794              Above the national average
## 795              Below the national average
## 796              Below the national average
## 797                           Not Available
## 798                           Not Available
## 799              Below the national average
## 800              Below the national average
## 801              Below the national average
## 802              Above the national average
## 803                           Not Available
## 804              Above the national average
## 805              Below the national average
## 806              Above the national average
## 807                           Not Available
## 808              Above the national average
## 809                           Not Available
## 810                           Not Available
## 811              Above the national average
## 812              Below the national average
## 813            Same as the national average
## 814            Same as the national average
## 815              Above the national average
## 816                           Not Available
## 817                           Not Available
## 818              Below the national average
## 819            Same as the national average
## 820              Above the national average
## 821            Same as the national average
## 822              Below the national average
## 823            Same as the national average
## 824            Same as the national average
## 825                           Not Available
## 826              Below the national average
## 827            Same as the national average
## 828            Same as the national average
## 829            Same as the national average
## 830            Same as the national average
## 831              Above the national average
## 832            Same as the national average
## 833            Same as the national average
## 834            Same as the national average
## 835                           Not Available
## 836            Same as the national average
## 837                           Not Available
## 838              Below the national average
## 839              Above the national average
## 840                           Not Available
## 841            Same as the national average
## 842                           Not Available
## 843                           Not Available
## 844              Below the national average
## 845              Above the national average
## 846              Above the national average
## 847            Same as the national average
## 848            Same as the national average
## 849                           Not Available
## 850            Same as the national average
## 851            Same as the national average
## 852              Above the national average
## 853                           Not Available
## 854              Below the national average
## 855            Same as the national average
## 856              Below the national average
## 857                           Not Available
## 858              Below the national average
## 859                           Not Available
## 860              Above the national average
## 861              Above the national average
## 862              Above the national average
## 863              Below the national average
## 864                           Not Available
## 865                           Not Available
## 866              Above the national average
## 867              Below the national average
## 868              Below the national average
## 869            Same as the national average
## 870            Same as the national average
## 871              Above the national average
## 872              Above the national average
## 873              Below the national average
## 874              Below the national average
## 875              Below the national average
## 876              Below the national average
## 877                           Not Available
## 878            Same as the national average
## 879            Same as the national average
## 880            Same as the national average
## 881              Below the national average
## 882                           Not Available
## 883            Same as the national average
## 884              Above the national average
## 885              Above the national average
## 886              Above the national average
## 887              Below the national average
## 888            Same as the national average
## 889              Above the national average
## 890                           Not Available
## 891                           Not Available
## 892              Below the national average
## 893              Below the national average
## 894            Same as the national average
## 895              Below the national average
## 896            Same as the national average
## 897            Same as the national average
## 898                           Not Available
## 899              Above the national average
## 900                           Not Available
## 901              Below the national average
## 902            Same as the national average
## 903                           Not Available
## 904              Above the national average
## 905              Below the national average
## 906                           Not Available
## 907            Same as the national average
## 908            Same as the national average
## 909                           Not Available
## 910              Above the national average
## 911            Same as the national average
## 912                           Not Available
## 913              Below the national average
## 914                           Not Available
## 915                           Not Available
## 916                           Not Available
## 917                           Not Available
## 918            Same as the national average
## 919              Above the national average
## 920                           Not Available
## 921              Above the national average
## 922              Above the national average
## 923            Same as the national average
## 924              Above the national average
## 925            Same as the national average
## 926            Same as the national average
## 927            Same as the national average
## 928              Above the national average
## 929                           Not Available
## 930              Below the national average
## 931              Above the national average
## 932                           Not Available
## 933                           Not Available
## 934              Above the national average
## 935              Below the national average
## 936                           Not Available
## 937              Above the national average
## 938                           Not Available
## 939            Same as the national average
## 940              Below the national average
## 941              Above the national average
## 942            Same as the national average
## 943                           Not Available
## 944              Above the national average
## 945              Below the national average
## 946            Same as the national average
## 947            Same as the national average
## 948                           Not Available
## 949                           Not Available
## 950            Same as the national average
## 951              Below the national average
## 952            Same as the national average
## 953              Above the national average
## 954              Above the national average
## 955              Below the national average
## 956              Above the national average
## 957              Above the national average
## 958                           Not Available
## 959              Above the national average
## 960              Below the national average
## 961            Same as the national average
## 962            Same as the national average
## 963              Above the national average
## 964                           Not Available
## 965              Below the national average
## 966              Below the national average
## 967            Same as the national average
## 968            Same as the national average
## 969            Same as the national average
## 970            Same as the national average
## 971            Same as the national average
## 972              Above the national average
## 973                           Not Available
## 974              Above the national average
## 975              Above the national average
## 976                           Not Available
## 977              Above the national average
## 978              Below the national average
## 979                           Not Available
## 980                           Not Available
## 981            Same as the national average
## 982                           Not Available
## 983            Same as the national average
## 984              Below the national average
## 985            Same as the national average
## 986                           Not Available
## 987            Same as the national average
## 988                           Not Available
## 989              Above the national average
## 990              Above the national average
## 991            Same as the national average
## 992              Above the national average
## 993                           Not Available
## 994              Above the national average
## 995            Same as the national average
## 996              Below the national average
## 997                           Not Available
## 998            Same as the national average
## 999              Below the national average
## 1000                          Not Available
## 1001                          Not Available
## 1002             Above the national average
## 1003             Below the national average
## 1004             Above the national average
## 1005           Same as the national average
## 1006             Below the national average
## 1007           Same as the national average
## 1008             Below the national average
## 1009                          Not Available
## 1010             Below the national average
## 1011                          Not Available
## 1012                          Not Available
## 1013           Same as the national average
## 1014             Below the national average
## 1015                          Not Available
## 1016             Above the national average
## 1017             Below the national average
## 1018                          Not Available
## 1019                          Not Available
## 1020           Same as the national average
## 1021                          Not Available
## 1022             Above the national average
## 1023             Below the national average
## 1024             Below the national average
## 1025                          Not Available
## 1026                          Not Available
## 1027                          Not Available
## 1028                          Not Available
## 1029             Below the national average
## 1030             Above the national average
## 1031                          Not Available
## 1032           Same as the national average
## 1033             Below the national average
## 1034           Same as the national average
## 1035                          Not Available
## 1036                          Not Available
## 1037           Same as the national average
## 1038           Same as the national average
## 1039                          Not Available
## 1040           Same as the national average
## 1041             Above the national average
## 1042             Above the national average
## 1043             Above the national average
## 1044                          Not Available
## 1045           Same as the national average
## 1046           Same as the national average
## 1047             Below the national average
## 1048                          Not Available
## 1049             Above the national average
## 1050                          Not Available
## 1051                          Not Available
## 1052             Above the national average
## 1053             Below the national average
## 1054             Above the national average
## 1055             Below the national average
## 1056           Same as the national average
## 1057             Below the national average
## 1058             Below the national average
## 1059           Same as the national average
## 1060             Above the national average
## 1061                          Not Available
## 1062           Same as the national average
## 1063           Same as the national average
## 1064             Below the national average
## 1065             Below the national average
## 1066             Below the national average
## 1067                          Not Available
## 1068                          Not Available
## 1069           Same as the national average
## 1070             Above the national average
## 1071             Below the national average
## 1072                          Not Available
## 1073             Above the national average
## 1074                          Not Available
## 1075           Same as the national average
## 1076                          Not Available
## 1077             Below the national average
## 1078             Above the national average
## 1079             Below the national average
## 1080             Above the national average
## 1081             Below the national average
## 1082           Same as the national average
## 1083           Same as the national average
## 1084           Same as the national average
## 1085           Same as the national average
## 1086             Above the national average
## 1087           Same as the national average
## 1088           Same as the national average
## 1089             Above the national average
## 1090                          Not Available
## 1091             Below the national average
## 1092           Same as the national average
## 1093             Below the national average
## 1094           Same as the national average
## 1095                          Not Available
## 1096             Above the national average
## 1097             Below the national average
## 1098             Above the national average
## 1099           Same as the national average
## 1100           Same as the national average
## 1101             Below the national average
## 1102             Below the national average
## 1103                          Not Available
## 1104             Below the national average
## 1105             Below the national average
## 1106           Same as the national average
## 1107                          Not Available
## 1108             Above the national average
## 1109           Same as the national average
## 1110             Below the national average
## 1111                          Not Available
## 1112                          Not Available
## 1113             Above the national average
## 1114                          Not Available
## 1115             Above the national average
## 1116           Same as the national average
## 1117                          Not Available
## 1118                          Not Available
## 1119           Same as the national average
## 1120                          Not Available
## 1121             Above the national average
## 1122             Above the national average
## 1123             Above the national average
## 1124                          Not Available
## 1125             Below the national average
## 1126             Below the national average
## 1127             Above the national average
## 1128           Same as the national average
## 1129           Same as the national average
## 1130             Above the national average
## 1131             Above the national average
## 1132             Below the national average
## 1133           Same as the national average
## 1134           Same as the national average
## 1135             Above the national average
## 1136             Below the national average
## 1137                          Not Available
## 1138             Below the national average
## 1139                          Not Available
## 1140             Above the national average
## 1141             Above the national average
## 1142             Below the national average
## 1143                          Not Available
## 1144                          Not Available
## 1145             Above the national average
## 1146                          Not Available
## 1147             Above the national average
## 1148                          Not Available
## 1149                          Not Available
## 1150                          Not Available
## 1151             Below the national average
## 1152             Above the national average
## 1153                          Not Available
## 1154                          Not Available
## 1155           Same as the national average
## 1156           Same as the national average
## 1157             Below the national average
## 1158           Same as the national average
## 1159             Above the national average
## 1160             Below the national average
## 1161                          Not Available
## 1162                          Not Available
## 1163             Below the national average
## 1164             Below the national average
## 1165             Above the national average
## 1166           Same as the national average
## 1167                          Not Available
## 1168                          Not Available
## 1169             Above the national average
## 1170             Above the national average
## 1171             Above the national average
## 1172             Above the national average
## 1173           Same as the national average
## 1174           Same as the national average
## 1175                          Not Available
## 1176           Same as the national average
## 1177           Same as the national average
## 1178                          Not Available
## 1179             Below the national average
## 1180                          Not Available
## 1181                          Not Available
## 1182             Below the national average
## 1183           Same as the national average
## 1184                          Not Available
## 1185                          Not Available
## 1186           Same as the national average
## 1187             Below the national average
## 1188                          Not Available
## 1189             Below the national average
## 1190             Below the national average
## 1191             Below the national average
## 1192           Same as the national average
## 1193             Above the national average
## 1194                          Not Available
## 1195                          Not Available
## 1196             Below the national average
## 1197             Above the national average
## 1198             Below the national average
## 1199           Same as the national average
## 1200                          Not Available
## 1201                          Not Available
## 1202                          Not Available
## 1203           Same as the national average
## 1204           Same as the national average
## 1205             Below the national average
## 1206           Same as the national average
## 1207                          Not Available
## 1208                          Not Available
## 1209             Below the national average
## 1210             Below the national average
## 1211             Above the national average
## 1212                          Not Available
## 1213                          Not Available
## 1214           Same as the national average
## 1215           Same as the national average
## 1216           Same as the national average
## 1217           Same as the national average
## 1218           Same as the national average
## 1219             Above the national average
## 1220             Below the national average
## 1221                          Not Available
## 1222           Same as the national average
## 1223             Above the national average
## 1224             Below the national average
## 1225             Above the national average
## 1226           Same as the national average
## 1227           Same as the national average
## 1228           Same as the national average
## 1229             Above the national average
## 1230             Above the national average
## 1231                          Not Available
## 1232                          Not Available
## 1233                          Not Available
## 1234           Same as the national average
## 1235                          Not Available
## 1236           Same as the national average
## 1237           Same as the national average
## 1238           Same as the national average
## 1239           Same as the national average
## 1240             Below the national average
## 1241                          Not Available
## 1242                          Not Available
## 1243           Same as the national average
## 1244           Same as the national average
## 1245             Above the national average
## 1246           Same as the national average
## 1247           Same as the national average
## 1248                          Not Available
## 1249           Same as the national average
## 1250             Above the national average
## 1251           Same as the national average
## 1252                          Not Available
## 1253                          Not Available
## 1254                          Not Available
## 1255                          Not Available
## 1256             Below the national average
## 1257             Below the national average
## 1258             Below the national average
## 1259             Above the national average
## 1260             Above the national average
## 1261                          Not Available
## 1262                          Not Available
## 1263             Above the national average
## 1264                          Not Available
## 1265           Same as the national average
## 1266             Below the national average
## 1267                          Not Available
## 1268             Below the national average
## 1269                          Not Available
## 1270             Above the national average
## 1271             Below the national average
## 1272             Above the national average
## 1273             Below the national average
## 1274             Above the national average
## 1275             Below the national average
## 1276           Same as the national average
## 1277           Same as the national average
## 1278             Below the national average
## 1279             Above the national average
## 1280             Below the national average
## 1281             Above the national average
## 1282           Same as the national average
## 1283                          Not Available
## 1284             Above the national average
## 1285             Above the national average
## 1286           Same as the national average
## 1287             Above the national average
## 1288                          Not Available
## 1289             Above the national average
## 1290           Same as the national average
## 1291           Same as the national average
## 1292             Below the national average
## 1293           Same as the national average
## 1294                          Not Available
## 1295             Above the national average
## 1296             Below the national average
## 1297           Same as the national average
## 1298           Same as the national average
## 1299                          Not Available
## 1300                          Not Available
## 1301                          Not Available
## 1302             Below the national average
## 1303           Same as the national average
## 1304                          Not Available
## 1305             Above the national average
## 1306                          Not Available
## 1307             Below the national average
## 1308             Below the national average
## 1309             Above the national average
## 1310             Below the national average
## 1311                          Not Available
## 1312             Below the national average
## 1313                          Not Available
## 1314             Above the national average
## 1315             Above the national average
## 1316           Same as the national average
## 1317             Below the national average
## 1318           Same as the national average
## 1319             Below the national average
## 1320           Same as the national average
## 1321           Same as the national average
## 1322           Same as the national average
## 1323           Same as the national average
## 1324           Same as the national average
## 1325             Below the national average
## 1326             Below the national average
## 1327                          Not Available
## 1328             Above the national average
## 1329             Above the national average
## 1330                          Not Available
## 1331           Same as the national average
## 1332           Same as the national average
## 1333           Same as the national average
## 1334             Above the national average
## 1335             Below the national average
## 1336           Same as the national average
## 1337             Below the national average
## 1338                          Not Available
## 1339           Same as the national average
## 1340                          Not Available
## 1341           Same as the national average
## 1342                          Not Available
## 1343                          Not Available
## 1344                          Not Available
## 1345             Below the national average
## 1346           Same as the national average
## 1347                          Not Available
## 1348             Above the national average
## 1349             Above the national average
## 1350             Below the national average
## 1351           Same as the national average
## 1352           Same as the national average
## 1353             Above the national average
## 1354                          Not Available
## 1355           Same as the national average
## 1356                          Not Available
## 1357                          Not Available
## 1358             Above the national average
## 1359           Same as the national average
## 1360                          Not Available
## 1361             Above the national average
## 1362             Below the national average
## 1363                          Not Available
## 1364           Same as the national average
## 1365                          Not Available
## 1366             Above the national average
## 1367           Same as the national average
## 1368           Same as the national average
## 1369             Above the national average
## 1370             Above the national average
## 1371           Same as the national average
## 1372           Same as the national average
## 1373                          Not Available
## 1374           Same as the national average
## 1375             Below the national average
## 1376           Same as the national average
## 1377                          Not Available
## 1378           Same as the national average
## 1379                          Not Available
## 1380           Same as the national average
## 1381                          Not Available
## 1382             Below the national average
## 1383                          Not Available
## 1384             Above the national average
## 1385           Same as the national average
## 1386             Above the national average
## 1387           Same as the national average
## 1388             Below the national average
## 1389           Same as the national average
## 1390             Above the national average
## 1391                          Not Available
## 1392             Below the national average
## 1393             Below the national average
## 1394           Same as the national average
## 1395             Above the national average
## 1396           Same as the national average
## 1397             Below the national average
## 1398             Above the national average
## 1399                          Not Available
## 1400                          Not Available
## 1401             Above the national average
## 1402           Same as the national average
## 1403           Same as the national average
## 1404           Same as the national average
## 1405             Above the national average
## 1406             Above the national average
## 1407           Same as the national average
## 1408             Below the national average
## 1409           Same as the national average
## 1410             Above the national average
## 1411             Below the national average
## 1412           Same as the national average
## 1413             Above the national average
## 1414             Above the national average
## 1415             Below the national average
## 1416           Same as the national average
## 1417             Below the national average
## 1418           Same as the national average
## 1419           Same as the national average
## 1420                          Not Available
## 1421             Above the national average
## 1422           Same as the national average
## 1423             Below the national average
## 1424             Above the national average
## 1425             Above the national average
## 1426             Above the national average
## 1427             Above the national average
## 1428             Below the national average
## 1429           Same as the national average
## 1430             Above the national average
## 1431             Above the national average
## 1432             Above the national average
## 1433             Above the national average
## 1434             Above the national average
## 1435           Same as the national average
## 1436                          Not Available
## 1437           Same as the national average
## 1438           Same as the national average
## 1439             Below the national average
## 1440                          Not Available
## 1441                          Not Available
## 1442                          Not Available
## 1443             Below the national average
## 1444           Same as the national average
## 1445             Above the national average
## 1446             Below the national average
## 1447             Below the national average
## 1448             Above the national average
## 1449             Above the national average
## 1450             Below the national average
## 1451             Above the national average
## 1452             Below the national average
## 1453             Above the national average
## 1454           Same as the national average
## 1455             Below the national average
## 1456             Above the national average
## 1457             Above the national average
## 1458                          Not Available
## 1459                          Not Available
## 1460                          Not Available
## 1461                          Not Available
## 1462           Same as the national average
## 1463                          Not Available
## 1464           Same as the national average
## 1465           Same as the national average
## 1466             Above the national average
## 1467                          Not Available
## 1468           Same as the national average
## 1469                          Not Available
## 1470           Same as the national average
## 1471             Below the national average
## 1472             Above the national average
## 1473                          Not Available
## 1474             Below the national average
## 1475                          Not Available
## 1476             Above the national average
## 1477             Above the national average
## 1478                          Not Available
## 1479           Same as the national average
## 1480           Same as the national average
## 1481           Same as the national average
## 1482                          Not Available
## 1483             Below the national average
## 1484             Above the national average
## 1485                          Not Available
## 1486             Below the national average
## 1487             Above the national average
## 1488           Same as the national average
## 1489                          Not Available
## 1490             Below the national average
## 1491           Same as the national average
## 1492           Same as the national average
## 1493                          Not Available
## 1494           Same as the national average
## 1495           Same as the national average
## 1496                          Not Available
## 1497             Above the national average
## 1498                          Not Available
## 1499             Below the national average
## 1500           Same as the national average
## 1501           Same as the national average
## 1502             Below the national average
## 1503           Same as the national average
## 1504             Below the national average
## 1505           Same as the national average
## 1506             Below the national average
## 1507             Below the national average
## 1508                          Not Available
## 1509           Same as the national average
## 1510           Same as the national average
## 1511           Same as the national average
## 1512             Above the national average
## 1513                          Not Available
## 1514                          Not Available
## 1515             Below the national average
## 1516             Above the national average
## 1517             Above the national average
## 1518             Below the national average
## 1519                          Not Available
## 1520           Same as the national average
## 1521                          Not Available
## 1522             Above the national average
## 1523           Same as the national average
## 1524                          Not Available
## 1525             Above the national average
## 1526           Same as the national average
## 1527                          Not Available
## 1528           Same as the national average
## 1529           Same as the national average
## 1530             Below the national average
## 1531                          Not Available
## 1532             Above the national average
## 1533             Above the national average
## 1534                          Not Available
## 1535             Above the national average
## 1536             Above the national average
## 1537           Same as the national average
## 1538             Below the national average
## 1539                          Not Available
## 1540             Below the national average
## 1541             Above the national average
## 1542             Below the national average
## 1543             Below the national average
## 1544             Above the national average
## 1545             Above the national average
## 1546             Above the national average
## 1547                          Not Available
## 1548                          Not Available
## 1549             Below the national average
## 1550                          Not Available
## 1551                          Not Available
## 1552           Same as the national average
## 1553           Same as the national average
## 1554                          Not Available
## 1555                          Not Available
## 1556                          Not Available
## 1557             Below the national average
## 1558           Same as the national average
## 1559             Below the national average
## 1560             Above the national average
## 1561                          Not Available
## 1562             Above the national average
## 1563             Above the national average
## 1564             Below the national average
## 1565             Above the national average
## 1566             Above the national average
## 1567           Same as the national average
## 1568                          Not Available
## 1569           Same as the national average
## 1570             Below the national average
## 1571                          Not Available
## 1572                          Not Available
## 1573                          Not Available
## 1574             Above the national average
## 1575             Below the national average
## 1576           Same as the national average
## 1577           Same as the national average
## 1578           Same as the national average
## 1579             Above the national average
## 1580           Same as the national average
## 1581                          Not Available
## 1582           Same as the national average
## 1583             Above the national average
## 1584                          Not Available
## 1585             Above the national average
## 1586             Above the national average
## 1587             Above the national average
## 1588                          Not Available
## 1589             Above the national average
## 1590           Same as the national average
## 1591             Above the national average
## 1592           Same as the national average
## 1593             Below the national average
## 1594             Below the national average
## 1595                          Not Available
## 1596           Same as the national average
## 1597             Above the national average
## 1598             Above the national average
## 1599           Same as the national average
## 1600             Below the national average
## 1601             Below the national average
## 1602                          Not Available
## 1603           Same as the national average
## 1604           Same as the national average
## 1605                          Not Available
## 1606             Above the national average
## 1607                          Not Available
## 1608           Same as the national average
## 1609             Above the national average
## 1610                          Not Available
## 1611           Same as the national average
## 1612             Above the national average
## 1613                          Not Available
## 1614           Same as the national average
## 1615             Below the national average
## 1616             Below the national average
## 1617                          Not Available
## 1618                          Not Available
## 1619             Below the national average
## 1620                          Not Available
## 1621             Below the national average
## 1622           Same as the national average
## 1623             Above the national average
## 1624                          Not Available
## 1625             Above the national average
## 1626           Same as the national average
## 1627             Above the national average
## 1628             Above the national average
## 1629             Above the national average
## 1630                          Not Available
## 1631           Same as the national average
## 1632           Same as the national average
## 1633           Same as the national average
## 1634           Same as the national average
## 1635           Same as the national average
## 1636                          Not Available
## 1637           Same as the national average
## 1638             Below the national average
## 1639                          Not Available
## 1640             Below the national average
## 1641                          Not Available
## 1642           Same as the national average
## 1643                          Not Available
## 1644             Above the national average
## 1645             Above the national average
## 1646                          Not Available
## 1647                          Not Available
## 1648                          Not Available
## 1649             Above the national average
## 1650             Above the national average
## 1651             Above the national average
## 1652           Same as the national average
## 1653             Above the national average
## 1654           Same as the national average
## 1655                          Not Available
## 1656             Above the national average
## 1657                          Not Available
## 1658           Same as the national average
## 1659           Same as the national average
## 1660             Below the national average
## 1661                          Not Available
## 1662           Same as the national average
## 1663             Above the national average
## 1664             Below the national average
## 1665           Same as the national average
## 1666             Below the national average
## 1667             Below the national average
## 1668           Same as the national average
## 1669                          Not Available
## 1670                          Not Available
## 1671             Above the national average
## 1672                          Not Available
## 1673             Above the national average
## 1674             Above the national average
## 1675             Below the national average
## 1676             Above the national average
## 1677             Below the national average
## 1678             Below the national average
## 1679                          Not Available
## 1680             Above the national average
## 1681             Above the national average
## 1682             Above the national average
## 1683                          Not Available
## 1684             Below the national average
## 1685             Below the national average
## 1686             Above the national average
## 1687                          Not Available
## 1688           Same as the national average
## 1689             Below the national average
## 1690           Same as the national average
## 1691             Above the national average
## 1692             Above the national average
## 1693                          Not Available
## 1694             Above the national average
## 1695                          Not Available
## 1696             Below the national average
## 1697             Above the national average
## 1698                          Not Available
## 1699             Below the national average
## 1700           Same as the national average
## 1701             Below the national average
## 1702                          Not Available
## 1703             Above the national average
## 1704                          Not Available
## 1705                          Not Available
## 1706           Same as the national average
## 1707             Above the national average
## 1708           Same as the national average
## 1709                          Not Available
## 1710             Above the national average
## 1711           Same as the national average
## 1712           Same as the national average
## 1713                          Not Available
## 1714                          Not Available
## 1715             Below the national average
## 1716             Below the national average
## 1717             Above the national average
## 1718                          Not Available
## 1719           Same as the national average
## 1720             Above the national average
## 1721                          Not Available
## 1722                          Not Available
## 1723             Above the national average
## 1724             Above the national average
## 1725                          Not Available
## 1726           Same as the national average
## 1727             Above the national average
## 1728                          Not Available
## 1729             Above the national average
## 1730             Above the national average
## 1731           Same as the national average
## 1732           Same as the national average
## 1733           Same as the national average
## 1734             Above the national average
## 1735             Above the national average
## 1736                          Not Available
## 1737                          Not Available
## 1738             Below the national average
## 1739                          Not Available
## 1740             Below the national average
## 1741                          Not Available
## 1742             Above the national average
## 1743           Same as the national average
## 1744           Same as the national average
## 1745             Above the national average
## 1746                          Not Available
## 1747             Above the national average
## 1748             Above the national average
## 1749                          Not Available
## 1750                          Not Available
## 1751             Below the national average
## 1752           Same as the national average
## 1753                          Not Available
## 1754                          Not Available
## 1755           Same as the national average
## 1756             Below the national average
## 1757           Same as the national average
## 1758           Same as the national average
## 1759           Same as the national average
## 1760                          Not Available
## 1761             Below the national average
## 1762             Above the national average
## 1763                          Not Available
## 1764                          Not Available
## 1765             Below the national average
## 1766                          Not Available
## 1767             Below the national average
## 1768                          Not Available
## 1769             Above the national average
## 1770             Above the national average
## 1771                          Not Available
## 1772           Same as the national average
## 1773           Same as the national average
## 1774           Same as the national average
## 1775             Above the national average
## 1776             Below the national average
## 1777           Same as the national average
## 1778                          Not Available
## 1779                          Not Available
## 1780                          Not Available
## 1781             Above the national average
## 1782             Below the national average
## 1783             Below the national average
## 1784             Below the national average
## 1785                          Not Available
## 1786           Same as the national average
## 1787                          Not Available
## 1788             Above the national average
## 1789                          Not Available
## 1790           Same as the national average
## 1791             Above the national average
## 1792             Above the national average
## 1793           Same as the national average
## 1794             Above the national average
## 1795             Above the national average
## 1796           Same as the national average
## 1797             Above the national average
## 1798             Below the national average
## 1799             Below the national average
## 1800           Same as the national average
## 1801                          Not Available
## 1802           Same as the national average
## 1803           Same as the national average
## 1804           Same as the national average
## 1805                          Not Available
## 1806                          Not Available
## 1807                          Not Available
## 1808                          Not Available
## 1809                          Not Available
## 1810             Below the national average
## 1811             Above the national average
## 1812           Same as the national average
## 1813             Above the national average
## 1814                          Not Available
## 1815           Same as the national average
## 1816                          Not Available
## 1817             Below the national average
## 1818                          Not Available
## 1819                          Not Available
## 1820             Above the national average
## 1821             Below the national average
## 1822                          Not Available
## 1823                          Not Available
## 1824             Below the national average
## 1825             Below the national average
## 1826             Above the national average
## 1827                          Not Available
## 1828             Below the national average
## 1829                          Not Available
## 1830             Below the national average
## 1831             Below the national average
## 1832             Above the national average
## 1833           Same as the national average
## 1834             Above the national average
## 1835                          Not Available
## 1836           Same as the national average
## 1837           Same as the national average
## 1838             Above the national average
## 1839             Above the national average
## 1840                          Not Available
## 1841             Below the national average
## 1842             Above the national average
## 1843             Below the national average
## 1844             Above the national average
## 1845           Same as the national average
## 1846             Above the national average
## 1847           Same as the national average
## 1848             Above the national average
## 1849                          Not Available
## 1850                          Not Available
## 1851                          Not Available
## 1852             Above the national average
## 1853             Below the national average
## 1854           Same as the national average
## 1855             Above the national average
## 1856                          Not Available
## 1857             Above the national average
## 1858           Same as the national average
## 1859                          Not Available
## 1860             Below the national average
## 1861                          Not Available
## 1862             Above the national average
## 1863           Same as the national average
## 1864             Above the national average
## 1865           Same as the national average
## 1866             Above the national average
## 1867             Below the national average
## 1868             Above the national average
## 1869           Same as the national average
## 1870           Same as the national average
## 1871             Below the national average
## 1872             Below the national average
## 1873             Below the national average
## 1874           Same as the national average
## 1875             Below the national average
## 1876             Above the national average
## 1877           Same as the national average
## 1878             Below the national average
## 1879                          Not Available
## 1880             Above the national average
## 1881             Below the national average
## 1882                          Not Available
## 1883           Same as the national average
## 1884             Below the national average
## 1885             Above the national average
## 1886           Same as the national average
## 1887             Above the national average
## 1888                          Not Available
## 1889           Same as the national average
## 1890             Above the national average
## 1891             Below the national average
## 1892                          Not Available
## 1893           Same as the national average
## 1894           Same as the national average
## 1895           Same as the national average
## 1896                          Not Available
## 1897                          Not Available
## 1898             Below the national average
## 1899             Above the national average
## 1900             Below the national average
## 1901           Same as the national average
## 1902                          Not Available
## 1903                          Not Available
## 1904           Same as the national average
## 1905                          Not Available
## 1906             Above the national average
## 1907             Below the national average
## 1908           Same as the national average
## 1909           Same as the national average
## 1910             Below the national average
## 1911           Same as the national average
## 1912           Same as the national average
## 1913             Above the national average
## 1914             Above the national average
## 1915             Below the national average
## 1916           Same as the national average
## 1917             Above the national average
## 1918             Below the national average
## 1919             Above the national average
## 1920                          Not Available
## 1921             Below the national average
## 1922                          Not Available
## 1923                          Not Available
## 1924                          Not Available
## 1925             Below the national average
## 1926             Below the national average
## 1927           Same as the national average
## 1928           Same as the national average
## 1929             Below the national average
## 1930           Same as the national average
## 1931           Same as the national average
## 1932           Same as the national average
## 1933           Same as the national average
## 1934             Below the national average
## 1935           Same as the national average
## 1936             Below the national average
## 1937           Same as the national average
## 1938           Same as the national average
## 1939             Above the national average
## 1940                          Not Available
## 1941                          Not Available
## 1942             Above the national average
## 1943           Same as the national average
## 1944           Same as the national average
## 1945           Same as the national average
## 1946             Below the national average
## 1947           Same as the national average
## 1948                          Not Available
## 1949                          Not Available
## 1950             Below the national average
## 1951                          Not Available
## 1952             Above the national average
## 1953           Same as the national average
## 1954           Same as the national average
## 1955           Same as the national average
## 1956                          Not Available
## 1957                          Not Available
## 1958           Same as the national average
## 1959                          Not Available
## 1960             Above the national average
## 1961             Below the national average
## 1962             Below the national average
## 1963                          Not Available
## 1964             Below the national average
## 1965           Same as the national average
## 1966             Above the national average
## 1967                          Not Available
## 1968           Same as the national average
## 1969                          Not Available
## 1970                          Not Available
## 1971                          Not Available
## 1972             Below the national average
## 1973             Above the national average
## 1974             Below the national average
## 1975             Below the national average
## 1976                          Not Available
## 1977                          Not Available
## 1978             Below the national average
## 1979             Above the national average
## 1980           Same as the national average
## 1981           Same as the national average
## 1982                          Not Available
## 1983             Above the national average
## 1984             Above the national average
## 1985             Below the national average
## 1986           Same as the national average
## 1987                          Not Available
## 1988                          Not Available
## 1989                          Not Available
## 1990                          Not Available
## 1991             Above the national average
## 1992           Same as the national average
## 1993             Below the national average
## 1994             Above the national average
## 1995             Below the national average
## 1996             Below the national average
## 1997             Above the national average
## 1998             Below the national average
## 1999             Above the national average
## 2000             Below the national average
## 2001             Above the national average
## 2002             Below the national average
## 2003           Same as the national average
## 2004             Below the national average
## 2005           Same as the national average
## 2006                          Not Available
## 2007           Same as the national average
## 2008             Above the national average
## 2009             Above the national average
## 2010           Same as the national average
## 2011                          Not Available
## 2012           Same as the national average
## 2013                          Not Available
## 2014             Above the national average
## 2015             Below the national average
## 2016             Below the national average
## 2017           Same as the national average
## 2018             Below the national average
## 2019                          Not Available
## 2020           Same as the national average
## 2021             Above the national average
## 2022           Same as the national average
## 2023             Above the national average
## 2024           Same as the national average
## 2025             Above the national average
## 2026           Same as the national average
## 2027                          Not Available
## 2028           Same as the national average
## 2029           Same as the national average
## 2030           Same as the national average
## 2031                          Not Available
## 2032             Below the national average
## 2033             Above the national average
## 2034             Above the national average
## 2035             Below the national average
## 2036                          Not Available
## 2037             Above the national average
## 2038           Same as the national average
## 2039             Above the national average
## 2040           Same as the national average
## 2041             Above the national average
## 2042           Same as the national average
## 2043             Above the national average
## 2044             Below the national average
## 2045             Above the national average
## 2046           Same as the national average
## 2047             Above the national average
## 2048             Below the national average
## 2049           Same as the national average
## 2050                          Not Available
## 2051             Above the national average
## 2052             Above the national average
## 2053                          Not Available
## 2054           Same as the national average
## 2055           Same as the national average
## 2056             Above the national average
## 2057                          Not Available
## 2058             Above the national average
## 2059           Same as the national average
## 2060             Above the national average
## 2061           Same as the national average
## 2062                          Not Available
## 2063             Above the national average
## 2064             Below the national average
## 2065             Above the national average
## 2066             Below the national average
## 2067                          Not Available
## 2068           Same as the national average
## 2069             Above the national average
## 2070             Below the national average
## 2071                          Not Available
## 2072           Same as the national average
## 2073             Below the national average
## 2074                          Not Available
## 2075                          Not Available
## 2076                          Not Available
## 2077           Same as the national average
## 2078             Above the national average
## 2079             Above the national average
## 2080             Above the national average
## 2081                          Not Available
## 2082             Above the national average
## 2083                          Not Available
## 2084             Below the national average
## 2085           Same as the national average
## 2086             Above the national average
## 2087             Below the national average
## 2088             Above the national average
## 2089                          Not Available
## 2090                          Not Available
## 2091           Same as the national average
## 2092             Above the national average
## 2093                          Not Available
## 2094                          Not Available
## 2095             Below the national average
## 2096             Below the national average
## 2097           Same as the national average
## 2098                          Not Available
## 2099           Same as the national average
## 2100             Below the national average
## 2101             Below the national average
## 2102           Same as the national average
## 2103           Same as the national average
## 2104           Same as the national average
## 2105             Below the national average
## 2106                          Not Available
## 2107                          Not Available
## 2108             Above the national average
## 2109                          Not Available
## 2110                          Not Available
## 2111                          Not Available
## 2112             Above the national average
## 2113           Same as the national average
## 2114             Above the national average
## 2115             Above the national average
## 2116                          Not Available
## 2117           Same as the national average
## 2118             Below the national average
## 2119             Above the national average
## 2120             Above the national average
## 2121             Above the national average
## 2122                          Not Available
## 2123             Above the national average
## 2124             Below the national average
## 2125             Above the national average
## 2126                          Not Available
## 2127                          Not Available
## 2128           Same as the national average
## 2129           Same as the national average
## 2130           Same as the national average
## 2131             Above the national average
## 2132                          Not Available
## 2133             Below the national average
## 2134           Same as the national average
## 2135             Above the national average
## 2136             Below the national average
## 2137             Below the national average
## 2138                          Not Available
## 2139                          Not Available
## 2140                          Not Available
## 2141                          Not Available
## 2142             Above the national average
## 2143             Above the national average
## 2144           Same as the national average
## 2145                          Not Available
## 2146           Same as the national average
## 2147           Same as the national average
## 2148             Above the national average
## 2149             Above the national average
## 2150             Below the national average
## 2151           Same as the national average
## 2152                          Not Available
## 2153             Above the national average
## 2154             Below the national average
## 2155             Above the national average
## 2156                          Not Available
## 2157                          Not Available
## 2158             Above the national average
## 2159             Above the national average
## 2160             Below the national average
## 2161             Below the national average
## 2162                          Not Available
## 2163                          Not Available
## 2164             Below the national average
## 2165                          Not Available
## 2166             Below the national average
## 2167                          Not Available
## 2168             Above the national average
## 2169                          Not Available
## 2170             Above the national average
## 2171             Below the national average
## 2172             Above the national average
## 2173             Above the national average
## 2174             Below the national average
## 2175             Below the national average
## 2176                          Not Available
## 2177             Above the national average
## 2178             Below the national average
## 2179             Above the national average
## 2180             Below the national average
## 2181             Below the national average
## 2182                          Not Available
## 2183           Same as the national average
## 2184                          Not Available
## 2185                          Not Available
## 2186             Above the national average
## 2187                          Not Available
## 2188                          Not Available
## 2189           Same as the national average
## 2190             Below the national average
## 2191           Same as the national average
## 2192                          Not Available
## 2193             Above the national average
## 2194                          Not Available
## 2195           Same as the national average
## 2196                          Not Available
## 2197             Above the national average
## 2198                          Not Available
## 2199             Below the national average
## 2200                          Not Available
## 2201             Below the national average
## 2202                          Not Available
## 2203                          Not Available
## 2204             Below the national average
## 2205           Same as the national average
## 2206                          Not Available
## 2207           Same as the national average
## 2208             Above the national average
## 2209             Below the national average
## 2210                          Not Available
## 2211           Same as the national average
## 2212             Below the national average
## 2213                          Not Available
## 2214                          Not Available
## 2215           Same as the national average
## 2216             Above the national average
## 2217           Same as the national average
## 2218             Below the national average
## 2219                          Not Available
## 2220             Below the national average
## 2221             Below the national average
## 2222             Above the national average
## 2223           Same as the national average
## 2224           Same as the national average
## 2225                          Not Available
## 2226             Above the national average
## 2227           Same as the national average
## 2228             Above the national average
## 2229           Same as the national average
## 2230           Same as the national average
## 2231                          Not Available
## 2232           Same as the national average
## 2233           Same as the national average
## 2234           Same as the national average
## 2235                          Not Available
## 2236           Same as the national average
## 2237             Above the national average
## 2238             Above the national average
## 2239           Same as the national average
## 2240             Above the national average
## 2241                          Not Available
## 2242           Same as the national average
## 2243             Above the national average
## 2244             Below the national average
## 2245             Below the national average
## 2246                          Not Available
## 2247             Below the national average
## 2248           Same as the national average
## 2249             Above the national average
## 2250                          Not Available
## 2251           Same as the national average
## 2252             Below the national average
## 2253             Above the national average
## 2254             Below the national average
## 2255                          Not Available
## 2256             Above the national average
## 2257                          Not Available
## 2258             Above the national average
## 2259                          Not Available
## 2260           Same as the national average
## 2261           Same as the national average
## 2262             Above the national average
## 2263           Same as the national average
## 2264             Below the national average
## 2265           Same as the national average
## 2266                          Not Available
## 2267                          Not Available
## 2268             Above the national average
## 2269                          Not Available
## 2270                          Not Available
## 2271           Same as the national average
## 2272           Same as the national average
## 2273             Above the national average
## 2274             Above the national average
## 2275                          Not Available
## 2276           Same as the national average
## 2277             Above the national average
## 2278             Above the national average
## 2279                          Not Available
## 2280             Below the national average
## 2281                          Not Available
## 2282             Below the national average
## 2283             Above the national average
## 2284             Above the national average
## 2285             Above the national average
## 2286             Below the national average
## 2287                          Not Available
## 2288                          Not Available
## 2289           Same as the national average
## 2290           Same as the national average
## 2291             Below the national average
## 2292             Above the national average
## 2293           Same as the national average
## 2294           Same as the national average
## 2295                          Not Available
## 2296                          Not Available
## 2297             Below the national average
## 2298                          Not Available
## 2299           Same as the national average
## 2300                          Not Available
## 2301           Same as the national average
## 2302           Same as the national average
## 2303                          Not Available
## 2304             Above the national average
## 2305                          Not Available
## 2306                          Not Available
## 2307                          Not Available
## 2308             Above the national average
## 2309             Below the national average
## 2310             Below the national average
## 2311                          Not Available
## 2312             Below the national average
## 2313             Above the national average
## 2314             Above the national average
## 2315             Below the national average
## 2316                          Not Available
## 2317           Same as the national average
## 2318                          Not Available
## 2319             Above the national average
## 2320                          Not Available
## 2321                          Not Available
## 2322             Below the national average
## 2323           Same as the national average
## 2324                          Not Available
## 2325             Below the national average
## 2326             Above the national average
## 2327             Below the national average
## 2328           Same as the national average
## 2329                          Not Available
## 2330                          Not Available
## 2331                          Not Available
## 2332                          Not Available
## 2333                          Not Available
## 2334             Above the national average
## 2335                          Not Available
## 2336                          Not Available
## 2337                          Not Available
## 2338           Same as the national average
## 2339                          Not Available
## 2340                          Not Available
## 2341           Same as the national average
## 2342                          Not Available
## 2343                          Not Available
## 2344             Above the national average
## 2345                          Not Available
## 2346             Above the national average
## 2347             Below the national average
## 2348             Below the national average
## 2349             Above the national average
## 2350             Above the national average
## 2351             Below the national average
## 2352                          Not Available
## 2353             Above the national average
## 2354           Same as the national average
## 2355                          Not Available
## 2356             Below the national average
## 2357           Same as the national average
## 2358           Same as the national average
## 2359             Above the national average
## 2360                          Not Available
## 2361           Same as the national average
## 2362             Above the national average
## 2363           Same as the national average
## 2364           Same as the national average
## 2365             Above the national average
## 2366                          Not Available
## 2367                          Not Available
## 2368             Above the national average
## 2369                          Not Available
## 2370           Same as the national average
## 2371           Same as the national average
## 2372           Same as the national average
## 2373             Above the national average
## 2374                          Not Available
## 2375           Same as the national average
## 2376             Above the national average
## 2377           Same as the national average
## 2378             Above the national average
## 2379                          Not Available
## 2380           Same as the national average
## 2381           Same as the national average
## 2382                          Not Available
## 2383                          Not Available
## 2384                          Not Available
## 2385           Same as the national average
## 2386             Above the national average
## 2387             Above the national average
## 2388                          Not Available
## 2389             Below the national average
## 2390                          Not Available
## 2391             Below the national average
## 2392             Above the national average
## 2393           Same as the national average
## 2394             Below the national average
## 2395                          Not Available
## 2396                          Not Available
## 2397                          Not Available
## 2398             Below the national average
## 2399             Below the national average
## 2400                          Not Available
## 2401             Below the national average
## 2402                          Not Available
## 2403                          Not Available
## 2404                          Not Available
## 2405                          Not Available
## 2406             Above the national average
## 2407           Same as the national average
## 2408             Below the national average
## 2409             Above the national average
## 2410                          Not Available
## 2411             Above the national average
## 2412                          Not Available
## 2413             Below the national average
## 2414             Above the national average
## 2415                          Not Available
## 2416             Above the national average
## 2417             Above the national average
## 2418           Same as the national average
## 2419                          Not Available
## 2420             Below the national average
## 2421           Same as the national average
## 2422           Same as the national average
## 2423           Same as the national average
## 2424                          Not Available
## 2425             Below the national average
## 2426                          Not Available
## 2427             Above the national average
## 2428                          Not Available
## 2429             Above the national average
## 2430                          Not Available
## 2431                          Not Available
## 2432                          Not Available
## 2433                          Not Available
## 2434             Above the national average
## 2435           Same as the national average
## 2436             Below the national average
## 2437                          Not Available
## 2438                          Not Available
## 2439           Same as the national average
## 2440                          Not Available
## 2441             Below the national average
## 2442                          Not Available
## 2443             Above the national average
## 2444                          Not Available
## 2445             Above the national average
## 2446             Below the national average
## 2447                          Not Available
## 2448             Below the national average
## 2449                          Not Available
## 2450             Below the national average
## 2451             Above the national average
## 2452             Below the national average
## 2453                          Not Available
## 2454             Above the national average
## 2455           Same as the national average
## 2456                          Not Available
## 2457             Above the national average
## 2458                          Not Available
## 2459             Below the national average
## 2460             Below the national average
## 2461             Below the national average
## 2462           Same as the national average
## 2463             Above the national average
## 2464           Same as the national average
## 2465                          Not Available
## 2466             Above the national average
## 2467           Same as the national average
## 2468                          Not Available
## 2469           Same as the national average
## 2470             Above the national average
## 2471             Above the national average
## 2472                          Not Available
## 2473                          Not Available
## 2474           Same as the national average
## 2475             Below the national average
## 2476           Same as the national average
## 2477           Same as the national average
## 2478             Below the national average
## 2479           Same as the national average
## 2480             Below the national average
## 2481             Above the national average
## 2482             Above the national average
## 2483           Same as the national average
## 2484             Above the national average
## 2485                          Not Available
## 2486           Same as the national average
## 2487                          Not Available
## 2488             Below the national average
## 2489                          Not Available
## 2490             Below the national average
## 2491           Same as the national average
## 2492             Above the national average
## 2493                          Not Available
## 2494                          Not Available
## 2495             Below the national average
## 2496           Same as the national average
## 2497                          Not Available
## 2498             Above the national average
## 2499                          Not Available
## 2500             Above the national average
## 2501                          Not Available
## 2502                          Not Available
## 2503                          Not Available
## 2504             Below the national average
## 2505           Same as the national average
## 2506                          Not Available
## 2507             Below the national average
## 2508           Same as the national average
## 2509             Below the national average
## 2510           Same as the national average
## 2511           Same as the national average
## 2512           Same as the national average
## 2513                          Not Available
## 2514             Above the national average
## 2515             Below the national average
## 2516             Below the national average
## 2517             Below the national average
## 2518           Same as the national average
## 2519             Above the national average
## 2520                          Not Available
## 2521             Below the national average
## 2522             Below the national average
## 2523             Below the national average
## 2524                          Not Available
## 2525           Same as the national average
## 2526             Above the national average
## 2527             Above the national average
## 2528             Below the national average
## 2529                          Not Available
## 2530           Same as the national average
## 2531                          Not Available
## 2532                          Not Available
## 2533                          Not Available
## 2534             Above the national average
## 2535             Below the national average
## 2536           Same as the national average
## 2537             Above the national average
## 2538                          Not Available
## 2539                          Not Available
## 2540                          Not Available
## 2541             Above the national average
## 2542             Above the national average
## 2543                          Not Available
## 2544           Same as the national average
## 2545             Below the national average
## 2546                          Not Available
## 2547                          Not Available
## 2548             Below the national average
## 2549           Same as the national average
## 2550                          Not Available
## 2551           Same as the national average
## 2552                          Not Available
## 2553             Above the national average
## 2554                          Not Available
## 2555             Above the national average
## 2556             Above the national average
## 2557                          Not Available
## 2558                          Not Available
## 2559                          Not Available
## 2560           Same as the national average
## 2561                          Not Available
## 2562           Same as the national average
## 2563             Above the national average
## 2564           Same as the national average
## 2565             Above the national average
## 2566             Above the national average
## 2567             Above the national average
## 2568             Below the national average
## 2569             Above the national average
## 2570             Above the national average
## 2571                          Not Available
## 2572             Above the national average
## 2573                          Not Available
## 2574             Below the national average
## 2575             Below the national average
## 2576           Same as the national average
## 2577             Below the national average
## 2578             Above the national average
## 2579           Same as the national average
## 2580             Above the national average
## 2581             Below the national average
## 2582                          Not Available
## 2583                          Not Available
## 2584             Above the national average
## 2585                          Not Available
## 2586             Above the national average
## 2587                          Not Available
## 2588                          Not Available
## 2589           Same as the national average
## 2590             Above the national average
## 2591             Below the national average
## 2592             Above the national average
## 2593           Same as the national average
## 2594                          Not Available
## 2595           Same as the national average
## 2596                          Not Available
## 2597             Above the national average
## 2598           Same as the national average
## 2599           Same as the national average
## 2600             Above the national average
## 2601             Below the national average
## 2602             Below the national average
## 2603                          Not Available
## 2604             Above the national average
## 2605             Below the national average
## 2606                          Not Available
## 2607                          Not Available
## 2608             Above the national average
## 2609                          Not Available
## 2610           Same as the national average
## 2611           Same as the national average
## 2612             Below the national average
## 2613             Above the national average
## 2614             Below the national average
## 2615             Above the national average
## 2616                          Not Available
## 2617                          Not Available
## 2618             Below the national average
## 2619           Same as the national average
## 2620             Above the national average
## 2621                          Not Available
## 2622             Below the national average
## 2623           Same as the national average
## 2624             Above the national average
## 2625                          Not Available
## 2626           Same as the national average
## 2627           Same as the national average
## 2628           Same as the national average
## 2629             Above the national average
## 2630           Same as the national average
## 2631                          Not Available
## 2632                          Not Available
## 2633             Below the national average
## 2634           Same as the national average
## 2635             Above the national average
## 2636                          Not Available
## 2637             Below the national average
## 2638             Below the national average
## 2639             Below the national average
## 2640           Same as the national average
## 2641             Above the national average
## 2642             Above the national average
## 2643             Below the national average
## 2644             Above the national average
## 2645           Same as the national average
## 2646           Same as the national average
## 2647             Below the national average
## 2648                          Not Available
## 2649           Same as the national average
## 2650           Same as the national average
## 2651             Above the national average
## 2652             Below the national average
## 2653                          Not Available
## 2654           Same as the national average
## 2655                          Not Available
## 2656           Same as the national average
## 2657             Below the national average
## 2658             Below the national average
## 2659           Same as the national average
## 2660             Above the national average
## 2661                          Not Available
## 2662           Same as the national average
## 2663             Below the national average
## 2664             Above the national average
## 2665           Same as the national average
## 2666                          Not Available
## 2667             Above the national average
## 2668                          Not Available
## 2669             Below the national average
## 2670             Above the national average
## 2671             Below the national average
## 2672           Same as the national average
## 2673                          Not Available
## 2674           Same as the national average
## 2675                          Not Available
## 2676             Above the national average
## 2677             Above the national average
## 2678                          Not Available
## 2679           Same as the national average
## 2680             Above the national average
## 2681                          Not Available
## 2682             Below the national average
## 2683                          Not Available
## 2684             Above the national average
## 2685             Below the national average
## 2686           Same as the national average
## 2687             Below the national average
## 2688           Same as the national average
## 2689                          Not Available
## 2690                          Not Available
## 2691             Below the national average
## 2692             Above the national average
## 2693             Above the national average
## 2694             Below the national average
## 2695                          Not Available
## 2696           Same as the national average
## 2697           Same as the national average
## 2698                          Not Available
## 2699                          Not Available
## 2700             Above the national average
## 2701           Same as the national average
## 2702             Above the national average
## 2703                          Not Available
## 2704             Above the national average
## 2705           Same as the national average
## 2706           Same as the national average
## 2707             Below the national average
## 2708                          Not Available
## 2709             Below the national average
## 2710           Same as the national average
## 2711           Same as the national average
## 2712           Same as the national average
## 2713             Above the national average
## 2714             Above the national average
## 2715             Above the national average
## 2716           Same as the national average
## 2717                          Not Available
## 2718                          Not Available
## 2719             Below the national average
## 2720             Above the national average
## 2721           Same as the national average
## 2722             Below the national average
## 2723             Below the national average
## 2724             Below the national average
## 2725                          Not Available
## 2726             Above the national average
## 2727             Above the national average
## 2728             Above the national average
## 2729             Above the national average
## 2730                          Not Available
## 2731             Above the national average
## 2732             Above the national average
## 2733             Above the national average
## 2734                          Not Available
## 2735           Same as the national average
## 2736           Same as the national average
## 2737             Below the national average
## 2738                          Not Available
## 2739             Above the national average
## 2740                          Not Available
## 2741           Same as the national average
## 2742           Same as the national average
## 2743                          Not Available
## 2744                          Not Available
## 2745             Above the national average
## 2746             Below the national average
## 2747                          Not Available
## 2748                          Not Available
## 2749             Below the national average
## 2750             Below the national average
## 2751             Below the national average
## 2752           Same as the national average
## 2753                          Not Available
## 2754           Same as the national average
## 2755           Same as the national average
## 2756                          Not Available
## 2757           Same as the national average
## 2758           Same as the national average
## 2759             Above the national average
## 2760             Below the national average
## 2761             Below the national average
## 2762             Below the national average
## 2763                          Not Available
## 2764                          Not Available
## 2765             Above the national average
## 2766           Same as the national average
## 2767             Above the national average
## 2768             Below the national average
## 2769                          Not Available
## 2770                          Not Available
## 2771                          Not Available
## 2772           Same as the national average
## 2773             Above the national average
## 2774             Below the national average
## 2775                          Not Available
## 2776             Above the national average
## 2777             Above the national average
## 2778           Same as the national average
## 2779             Below the national average
## 2780           Same as the national average
## 2781           Same as the national average
## 2782             Above the national average
## 2783             Below the national average
## 2784             Above the national average
## 2785           Same as the national average
## 2786                          Not Available
## 2787           Same as the national average
## 2788           Same as the national average
## 2789                          Not Available
## 2790             Above the national average
## 2791             Above the national average
## 2792           Same as the national average
## 2793             Below the national average
## 2794                          Not Available
## 2795           Same as the national average
## 2796             Below the national average
## 2797             Below the national average
## 2798             Above the national average
## 2799             Below the national average
## 2800             Below the national average
## 2801             Above the national average
## 2802                          Not Available
## 2803             Below the national average
## 2804             Below the national average
## 2805             Above the national average
## 2806                          Not Available
## 2807           Same as the national average
## 2808             Below the national average
## 2809             Above the national average
## 2810           Same as the national average
## 2811           Same as the national average
## 2812             Above the national average
## 2813             Below the national average
## 2814                          Not Available
## 2815                          Not Available
## 2816           Same as the national average
## 2817                          Not Available
## 2818             Below the national average
## 2819             Below the national average
## 2820                          Not Available
## 2821                          Not Available
## 2822             Above the national average
## 2823             Below the national average
## 2824             Above the national average
## 2825             Below the national average
## 2826             Above the national average
## 2827                          Not Available
## 2828                          Not Available
## 2829                          Not Available
## 2830             Above the national average
## 2831             Above the national average
## 2832                          Not Available
## 2833           Same as the national average
## 2834             Below the national average
## 2835             Above the national average
## 2836           Same as the national average
## 2837                          Not Available
## 2838             Below the national average
## 2839             Below the national average
## 2840           Same as the national average
## 2841             Above the national average
## 2842           Same as the national average
## 2843                          Not Available
## 2844           Same as the national average
## 2845                          Not Available
## 2846                          Not Available
## 2847                          Not Available
## 2848             Below the national average
## 2849                          Not Available
## 2850             Above the national average
## 2851           Same as the national average
## 2852             Above the national average
## 2853                          Not Available
## 2854                          Not Available
## 2855             Above the national average
## 2856             Above the national average
## 2857                          Not Available
## 2858           Same as the national average
## 2859             Below the national average
## 2860             Above the national average
## 2861             Below the national average
## 2862           Same as the national average
## 2863             Below the national average
## 2864           Same as the national average
## 2865             Below the national average
## 2866           Same as the national average
## 2867                          Not Available
## 2868             Below the national average
## 2869           Same as the national average
## 2870           Same as the national average
## 2871           Same as the national average
## 2872             Below the national average
## 2873           Same as the national average
## 2874                          Not Available
## 2875           Same as the national average
## 2876             Above the national average
## 2877           Same as the national average
## 2878           Same as the national average
## 2879                          Not Available
## 2880                          Not Available
## 2881             Below the national average
## 2882                          Not Available
## 2883             Above the national average
## 2884                          Not Available
## 2885           Same as the national average
## 2886             Below the national average
## 2887             Above the national average
## 2888                          Not Available
## 2889                          Not Available
## 2890             Below the national average
## 2891           Same as the national average
## 2892             Below the national average
## 2893           Same as the national average
## 2894                          Not Available
## 2895           Same as the national average
## 2896           Same as the national average
## 2897             Below the national average
## 2898             Above the national average
## 2899             Below the national average
## 2900           Same as the national average
## 2901             Below the national average
## 2902                          Not Available
## 2903                          Not Available
## 2904             Above the national average
## 2905             Below the national average
## 2906                          Not Available
## 2907           Same as the national average
## 2908           Same as the national average
## 2909             Below the national average
## 2910                          Not Available
## 2911           Same as the national average
## 2912           Same as the national average
## 2913             Above the national average
## 2914                          Not Available
## 2915             Below the national average
## 2916           Same as the national average
## 2917             Below the national average
## 2918             Above the national average
## 2919             Below the national average
## 2920           Same as the national average
## 2921             Below the national average
## 2922             Above the national average
## 2923             Below the national average
## 2924             Above the national average
## 2925             Above the national average
## 2926                          Not Available
## 2927                          Not Available
## 2928           Same as the national average
## 2929           Same as the national average
## 2930           Same as the national average
## 2931             Above the national average
## 2932             Above the national average
## 2933             Above the national average
## 2934                          Not Available
## 2935           Same as the national average
## 2936             Below the national average
## 2937             Above the national average
## 2938                          Not Available
## 2939           Same as the national average
## 2940             Above the national average
## 2941           Same as the national average
## 2942                          Not Available
## 2943             Below the national average
## 2944                          Not Available
## 2945             Above the national average
## 2946             Above the national average
## 2947           Same as the national average
## 2948             Above the national average
## 2949             Above the national average
## 2950                          Not Available
## 2951             Above the national average
## 2952                          Not Available
## 2953             Below the national average
## 2954             Below the national average
## 2955             Below the national average
## 2956                          Not Available
## 2957                          Not Available
## 2958             Below the national average
## 2959                          Not Available
## 2960             Above the national average
## 2961             Below the national average
## 2962             Above the national average
## 2963             Above the national average
## 2964           Same as the national average
## 2965             Below the national average
## 2966                          Not Available
## 2967             Below the national average
## 2968             Above the national average
## 2969             Below the national average
## 2970             Above the national average
## 2971             Below the national average
## 2972             Above the national average
## 2973           Same as the national average
## 2974             Above the national average
## 2975                          Not Available
## 2976                          Not Available
## 2977             Below the national average
## 2978           Same as the national average
## 2979           Same as the national average
## 2980             Above the national average
## 2981             Above the national average
## 2982             Below the national average
## 2983             Above the national average
## 2984           Same as the national average
## 2985             Below the national average
## 2986             Below the national average
## 2987           Same as the national average
## 2988                          Not Available
## 2989             Below the national average
## 2990             Above the national average
## 2991           Same as the national average
## 2992           Same as the national average
## 2993           Same as the national average
## 2994             Above the national average
## 2995           Same as the national average
## 2996                          Not Available
## 2997                          Not Available
## 2998                          Not Available
## 2999             Below the national average
## 3000           Same as the national average
## 3001                          Not Available
## 3002           Same as the national average
## 3003           Same as the national average
## 3004           Same as the national average
## 3005             Above the national average
## 3006             Above the national average
## 3007                          Not Available
## 3008                          Not Available
## 3009             Above the national average
## 3010             Above the national average
## 3011                          Not Available
## 3012           Same as the national average
## 3013           Same as the national average
## 3014           Same as the national average
## 3015                          Not Available
## 3016             Above the national average
## 3017                          Not Available
## 3018           Same as the national average
## 3019           Same as the national average
## 3020                          Not Available
## 3021             Below the national average
## 3022                          Not Available
## 3023             Above the national average
## 3024             Above the national average
## 3025             Above the national average
## 3026             Above the national average
## 3027                          Not Available
## 3028           Same as the national average
## 3029             Below the national average
## 3030                          Not Available
## 3031           Same as the national average
## 3032             Below the national average
## 3033             Below the national average
## 3034             Below the national average
## 3035             Above the national average
## 3036           Same as the national average
## 3037                          Not Available
## 3038           Same as the national average
## 3039                          Not Available
## 3040             Below the national average
## 3041             Below the national average
## 3042             Above the national average
## 3043                          Not Available
## 3044             Above the national average
## 3045                          Not Available
## 3046                          Not Available
## 3047             Above the national average
## 3048           Same as the national average
## 3049                          Not Available
## 3050           Same as the national average
## 3051           Same as the national average
## 3052           Same as the national average
## 3053           Same as the national average
## 3054             Below the national average
## 3055           Same as the national average
## 3056             Above the national average
## 3057                          Not Available
## 3058           Same as the national average
## 3059             Below the national average
## 3060                          Not Available
## 3061                          Not Available
## 3062             Above the national average
## 3063           Same as the national average
## 3064           Same as the national average
## 3065             Below the national average
## 3066           Same as the national average
## 3067           Same as the national average
## 3068                          Not Available
## 3069           Same as the national average
## 3070             Below the national average
## 3071                          Not Available
## 3072             Above the national average
## 3073                          Not Available
## 3074             Below the national average
## 3075             Below the national average
## 3076                          Not Available
## 3077                          Not Available
## 3078             Below the national average
## 3079             Below the national average
## 3080           Same as the national average
## 3081             Above the national average
## 3082                          Not Available
## 3083           Same as the national average
## 3084                          Not Available
## 3085             Above the national average
## 3086             Above the national average
## 3087             Above the national average
## 3088                          Not Available
## 3089           Same as the national average
## 3090           Same as the national average
## 3091             Above the national average
## 3092           Same as the national average
## 3093           Same as the national average
## 3094                          Not Available
## 3095           Same as the national average
## 3096             Below the national average
## 3097           Same as the national average
## 3098                          Not Available
## 3099           Same as the national average
## 3100             Below the national average
## 3101             Above the national average
## 3102             Below the national average
## 3103                          Not Available
## 3104             Below the national average
## 3105                          Not Available
## 3106             Below the national average
## 3107                          Not Available
## 3108             Above the national average
## 3109             Above the national average
## 3110                          Not Available
## 3111                          Not Available
## 3112           Same as the national average
## 3113             Below the national average
## 3114           Same as the national average
## 3115           Same as the national average
## 3116                          Not Available
## 3117                          Not Available
## 3118             Below the national average
## 3119           Same as the national average
## 3120           Same as the national average
## 3121           Same as the national average
## 3122           Same as the national average
## 3123                          Not Available
## 3124           Same as the national average
## 3125             Above the national average
## 3126             Below the national average
## 3127             Above the national average
## 3128             Below the national average
## 3129                          Not Available
## 3130                          Not Available
## 3131                          Not Available
## 3132             Below the national average
## 3133             Below the national average
## 3134                          Not Available
## 3135                          Not Available
## 3136             Above the national average
## 3137                          Not Available
## 3138                          Not Available
## 3139                          Not Available
## 3140             Above the national average
## 3141             Above the national average
## 3142           Same as the national average
## 3143             Below the national average
## 3144                          Not Available
## 3145           Same as the national average
## 3146             Above the national average
## 3147           Same as the national average
## 3148           Same as the national average
## 3149             Above the national average
## 3150             Above the national average
## 3151             Above the national average
## 3152             Below the national average
## 3153           Same as the national average
## 3154             Below the national average
## 3155                          Not Available
## 3156             Below the national average
## 3157             Below the national average
## 3158           Same as the national average
## 3159           Same as the national average
## 3160             Below the national average
## 3161             Below the national average
## 3162           Same as the national average
## 3163             Above the national average
## 3164                          Not Available
## 3165             Above the national average
## 3166             Above the national average
## 3167             Above the national average
## 3168             Below the national average
## 3169             Above the national average
## 3170           Same as the national average
## 3171           Same as the national average
## 3172                          Not Available
## 3173             Below the national average
## 3174           Same as the national average
## 3175                          Not Available
## 3176           Same as the national average
## 3177             Below the national average
## 3178             Above the national average
## 3179             Above the national average
## 3180             Above the national average
## 3181             Above the national average
## 3182             Above the national average
## 3183                          Not Available
## 3184             Below the national average
## 3185             Below the national average
## 3186           Same as the national average
## 3187             Below the national average
## 3188           Same as the national average
## 3189           Same as the national average
## 3190                          Not Available
## 3191           Same as the national average
## 3192           Same as the national average
## 3193             Below the national average
## 3194                          Not Available
## 3195             Above the national average
## 3196             Below the national average
## 3197                          Not Available
## 3198             Below the national average
## 3199           Same as the national average
## 3200           Same as the national average
## 3201                          Not Available
## 3202             Above the national average
## 3203             Above the national average
## 3204                          Not Available
## 3205           Same as the national average
## 3206           Same as the national average
## 3207                          Not Available
## 3208             Above the national average
## 3209           Same as the national average
## 3210           Same as the national average
## 3211             Above the national average
## 3212             Below the national average
## 3213                          Not Available
## 3214                          Not Available
## 3215             Above the national average
## 3216                          Not Available
## 3217             Below the national average
## 3218             Above the national average
## 3219             Below the national average
## 3220             Above the national average
## 3221           Same as the national average
## 3222           Same as the national average
## 3223           Same as the national average
## 3224           Same as the national average
## 3225                          Not Available
## 3226             Below the national average
## 3227             Above the national average
## 3228             Above the national average
## 3229           Same as the national average
## 3230           Same as the national average
## 3231           Same as the national average
## 3232                          Not Available
## 3233           Same as the national average
## 3234             Above the national average
## 3235           Same as the national average
## 3236             Above the national average
## 3237             Above the national average
## 3238             Above the national average
## 3239             Above the national average
## 3240             Above the national average
## 3241           Same as the national average
## 3242             Above the national average
## 3243             Above the national average
## 3244           Same as the national average
## 3245                          Not Available
## 3246           Same as the national average
## 3247             Above the national average
## 3248                          Not Available
## 3249           Same as the national average
## 3250                          Not Available
## 3251           Same as the national average
## 3252           Same as the national average
## 3253           Same as the national average
## 3254                          Not Available
## 3255             Above the national average
## 3256           Same as the national average
## 3257                          Not Available
## 3258           Same as the national average
## 3259                          Not Available
## 3260           Same as the national average
## 3261           Same as the national average
## 3262                          Not Available
## 3263           Same as the national average
## 3264           Same as the national average
## 3265                          Not Available
## 3266             Above the national average
## 3267           Same as the national average
## 3268                          Not Available
## 3269             Below the national average
## 3270                          Not Available
## 3271             Below the national average
## 3272                          Not Available
## 3273           Same as the national average
## 3274             Below the national average
## 3275           Same as the national average
## 3276                          Not Available
## 3277           Same as the national average
## 3278                          Not Available
## 3279                          Not Available
## 3280             Above the national average
## 3281             Below the national average
## 3282           Same as the national average
## 3283           Same as the national average
## 3284             Above the national average
## 3285             Above the national average
## 3286                          Not Available
## 3287                          Not Available
## 3288             Below the national average
## 3289             Above the national average
## 3290             Above the national average
## 3291             Above the national average
## 3292           Same as the national average
## 3293             Below the national average
## 3294             Above the national average
## 3295             Below the national average
## 3296                          Not Available
## 3297                          Not Available
## 3298             Below the national average
## 3299           Same as the national average
## 3300           Same as the national average
## 3301             Below the national average
## 3302           Same as the national average
## 3303                          Not Available
## 3304             Below the national average
## 3305             Below the national average
## 3306           Same as the national average
## 3307             Above the national average
## 3308           Same as the national average
## 3309                          Not Available
## 3310             Below the national average
## 3311             Below the national average
## 3312           Same as the national average
## 3313           Same as the national average
## 3314           Same as the national average
## 3315           Same as the national average
## 3316                          Not Available
## 3317           Same as the national average
## 3318           Same as the national average
## 3319                          Not Available
## 3320             Above the national average
## 3321           Same as the national average
## 3322             Below the national average
## 3323                          Not Available
## 3324           Same as the national average
## 3325                          Not Available
## 3326                          Not Available
## 3327           Same as the national average
## 3328           Same as the national average
## 3329           Same as the national average
## 3330           Same as the national average
## 3331             Above the national average
## 3332           Same as the national average
## 3333             Below the national average
## 3334             Below the national average
## 3335             Below the national average
## 3336           Same as the national average
## 3337             Below the national average
## 3338                          Not Available
## 3339           Same as the national average
## 3340             Above the national average
## 3341             Below the national average
## 3342             Below the national average
## 3343             Below the national average
## 3344           Same as the national average
## 3345             Above the national average
## 3346           Same as the national average
## 3347             Above the national average
## 3348                          Not Available
## 3349             Below the national average
## 3350             Below the national average
## 3351                          Not Available
## 3352             Above the national average
## 3353                          Not Available
## 3354                          Not Available
## 3355                          Not Available
## 3356             Above the national average
## 3357           Same as the national average
## 3358             Above the national average
## 3359             Above the national average
## 3360                          Not Available
## 3361             Above the national average
## 3362                          Not Available
## 3363             Above the national average
## 3364             Above the national average
## 3365             Below the national average
## 3366                          Not Available
## 3367             Above the national average
## 3368             Above the national average
## 3369           Same as the national average
## 3370                          Not Available
## 3371           Same as the national average
## 3372             Above the national average
## 3373           Same as the national average
## 3374                          Not Available
## 3375             Above the national average
## 3376                          Not Available
## 3377                          Not Available
## 3378                          Not Available
## 3379           Same as the national average
## 3380             Below the national average
## 3381           Same as the national average
## 3382                          Not Available
## 3383                          Not Available
## 3384             Above the national average
## 3385             Below the national average
## 3386             Above the national average
## 3387                          Not Available
## 3388             Above the national average
## 3389           Same as the national average
## 3390           Same as the national average
## 3391             Below the national average
## 3392             Above the national average
## 3393                          Not Available
## 3394           Same as the national average
## 3395           Same as the national average
## 3396                          Not Available
## 3397           Same as the national average
## 3398                          Not Available
## 3399             Below the national average
## 3400           Same as the national average
## 3401                          Not Available
## 3402                          Not Available
## 3403                          Not Available
## 3404             Above the national average
## 3405                          Not Available
## 3406           Same as the national average
## 3407           Same as the national average
## 3408             Above the national average
## 3409                          Not Available
## 3410             Below the national average
## 3411           Same as the national average
## 3412             Above the national average
## 3413           Same as the national average
## 3414                          Not Available
## 3415           Same as the national average
## 3416                          Not Available
## 3417             Below the national average
## 3418           Same as the national average
## 3419             Above the national average
## 3420           Same as the national average
## 3421             Above the national average
## 3422           Same as the national average
## 3423                          Not Available
## 3424             Below the national average
## 3425             Above the national average
## 3426                          Not Available
## 3427             Above the national average
## 3428                          Not Available
## 3429             Below the national average
## 3430             Above the national average
## 3431             Below the national average
## 3432             Above the national average
## 3433           Same as the national average
## 3434             Below the national average
## 3435             Above the national average
## 3436             Above the national average
## 3437             Below the national average
## 3438             Above the national average
## 3439           Same as the national average
## 3440                          Not Available
## 3441             Above the national average
## 3442             Above the national average
## 3443                          Not Available
## 3444             Below the national average
## 3445           Same as the national average
## 3446                          Not Available
## 3447           Same as the national average
## 3448                          Not Available
##      Timeliness_of_care_national_comparison_footnote
## 1                                                  5
## 2                                                 19
## 3                                                 19
## 4                                                   
## 5                                                 19
## 6                                                   
## 7                                                 19
## 8                                                 16
## 9                                                 19
## 10                                                19
## 11                                                19
## 12                                                  
## 13                                                19
## 14                                                19
## 15                                                16
## 16                                                19
## 17                                                  
## 18                                                16
## 19                                                19
## 20                                                19
## 21                                                 5
## 22                                                 5
## 23                                                 5
## 24                                                19
## 25                                                 5
## 26                                                16
## 27                                                19
## 28                                                 5
## 29                                                19
## 30                                                  
## 31                                                 5
## 32                                                19
## 33                                                19
## 34                                                19
## 35                                                16
## 36                                                19
## 37                                                19
## 38                                                16
## 39                                                16
## 40                                                19
## 41                                                19
## 42                                                 5
## 43                                                  
## 44                                                 5
## 45                                                19
## 46                                                19
## 47                                                 5
## 48                                                19
## 49                                                16
## 50                                                19
## 51                                                19
## 52                                                19
## 53                                                19
## 54                                                19
## 55                                                19
## 56                                                  
## 57                                                  
## 58                                                16
## 59                                                16
## 60                                                  
## 61                                                19
## 62                                                  
## 63                                                19
## 64                                                  
## 65                                                  
## 66                                                16
## 67                                                  
## 68                                                16
## 69                                                  
## 70                                                  
## 71                                                  
## 72                                                  
## 73                                                  
## 74                                                16
## 75                                                 5
## 76                                                  
## 77                                                16
## 78                                                  
## 79                                                 5
## 80                                                  
## 81                                                19
## 82                                                  
## 83                                                19
## 84                                                  
## 85                                                19
## 86                                                16
## 87                                                  
## 88                                                19
## 89                                                  
## 90                                                  
## 91                                                  
## 92                                                  
## 93                                                  
## 94                                                  
## 95                                                  
## 96                                                 5
## 97                                                  
## 98                                                  
## 99                                                  
## 100                                                 
## 101                                                 
## 102                                                 
## 103                                                 
## 104                                                 
## 105                                                 
## 106                                                 
## 107                                                 
## 108                                                 
## 109                                                 
## 110                                               16
## 111                                                 
## 112                                                 
## 113                                                 
## 114                                                 
## 115                                                 
## 116                                               19
## 117                                               19
## 118                                               16
## 119                                                5
## 120                                                5
## 121                                                 
## 122                                               19
## 123                                                 
## 124                                                 
## 125                                                 
## 126                                               16
## 127                                                5
## 128                                                 
## 129                                               19
## 130                                                 
## 131                                                 
## 132                                                 
## 133                                                 
## 134                                                 
## 135                                                 
## 136                                                 
## 137                                                 
## 138                                               19
## 139                                                 
## 140                                                 
## 141                                                 
## 142                                               19
## 143                                               19
## 144                                                5
## 145                                                 
## 146                                               16
## 147                                                 
## 148                                                 
## 149                                                 
## 150                                                5
## 151                                                 
## 152                                                5
## 153                                                 
## 154                                                 
## 155                                                 
## 156                                                 
## 157                                                 
## 158                                               16
## 159                                                 
## 160                                                 
## 161                                               19
## 162                                                 
## 163                                                 
## 164                                                 
## 165                                                 
## 166                                               19
## 167                                                 
## 168                                                 
## 169                                                5
## 170                                                 
## 171                                               19
## 172                                                 
## 173                                                 
## 174                                                 
## 175                                                 
## 176                                                 
## 177                                                5
## 178                                               16
## 179                                                 
## 180                                                 
## 181                                                5
## 182                                                 
## 183                                                 
## 184                                               19
## 185                                                 
## 186                                                 
## 187                                                 
## 188                                                 
## 189                                                 
## 190                                                 
## 191                                                 
## 192                                                 
## 193                                               19
## 194                                                 
## 195                                               19
## 196                                                 
## 197                                                5
## 198                                                 
## 199                                                 
## 200                                                5
## 201                                               19
## 202                                                 
## 203                                               19
## 204                                                 
## 205                                                 
## 206                                               16
## 207                                                 
## 208                                                 
## 209                                                 
## 210                                                 
## 211                                               19
## 212                                                 
## 213                                                5
## 214                                                 
## 215                                               16
## 216                                               16
## 217                                                 
## 218                                                 
## 219                                                5
## 220                                                5
## 221                                                 
## 222                                                 
## 223                                                 
## 224                                               16
## 225                                                 
## 226                                                5
## 227                                               16
## 228                                                 
## 229                                                 
## 230                                               16
## 231                                                 
## 232                                                 
## 233                                                 
## 234                                                 
## 235                                                 
## 236                                                 
## 237                                                 
## 238                                                 
## 239                                                 
## 240                                               16
## 241                                                 
## 242                                                 
## 243                                                 
## 244                                                 
## 245                                                 
## 246                                                 
## 247                                                 
## 248                                                 
## 249                                               19
## 250                                               16
## 251                                                 
## 252                                               19
## 253                                                 
## 254                                                 
## 255                                                 
## 256                                                 
## 257                                                 
## 258                                                 
## 259                                                 
## 260                                                 
## 261                                               19
## 262                                                5
## 263                                                 
## 264                                                5
## 265                                                 
## 266                                               16
## 267                                                 
## 268                                               19
## 269                                                5
## 270                                                 
## 271                                                 
## 272                                                 
## 273                                                5
## 274                                                 
## 275                                               16
## 276                                                 
## 277                                                 
## 278                                                 
## 279                                                 
## 280                                                 
## 281                                                 
## 282                                                 
## 283                                                 
## 284                                                 
## 285                                                5
## 286                                                 
## 287                                               19
## 288                                                 
## 289                                                 
## 290                                                 
## 291                                               16
## 292                                                5
## 293                                                 
## 294                                               19
## 295                                                 
## 296                                               19
## 297                                                 
## 298                                                 
## 299                                               19
## 300                                                 
## 301                                               19
## 302                                                 
## 303                                                 
## 304                                               19
## 305                                               19
## 306                                               19
## 307                                                 
## 308                                                 
## 309                                               19
## 310                                               16
## 311                                                 
## 312                                                 
## 313                                                 
## 314                                                 
## 315                                                5
## 316                                                 
## 317                                                 
## 318                                                 
## 319                                                 
## 320                                                 
## 321                                                 
## 322                                                 
## 323                                                 
## 324                                               19
## 325                                                 
## 326                                                 
## 327                                                 
## 328                                                 
## 329                                                 
## 330                                               19
## 331                                                 
## 332                                                 
## 333                                                 
## 334                                                 
## 335                                                 
## 336                                               19
## 337                                                 
## 338                                               19
## 339                                                 
## 340                                                 
## 341                                                 
## 342                                               16
## 343                                                 
## 344                                               19
## 345                                                 
## 346                                                 
## 347                                               19
## 348                                                 
## 349                                                 
## 350                                                 
## 351                                                 
## 352                                                 
## 353                                                5
## 354                                                 
## 355                                                 
## 356                                                 
## 357                                                 
## 358                                                 
## 359                                                 
## 360                                               19
## 361                                                 
## 362                                                 
## 363                                                 
## 364                                                 
## 365                                                 
## 366                                                 
## 367                                                 
## 368                                                 
## 369                                                 
## 370                                                 
## 371                                                 
## 372                                                 
## 373                                                 
## 374                                                 
## 375                                               19
## 376                                               16
## 377                                                5
## 378                                                 
## 379                                               16
## 380                                                 
## 381                                                 
## 382                                               19
## 383                                                 
## 384                                               19
## 385                                               19
## 386                                                5
## 387                                               16
## 388                                                 
## 389                                                 
## 390                                                 
## 391                                                 
## 392                                                 
## 393                                               16
## 394                                                 
## 395                                                 
## 396                                                5
## 397                                                 
## 398                                                 
## 399                                                 
## 400                                                 
## 401                                               19
## 402                                                 
## 403                                               16
## 404                                                 
## 405                                               19
## 406                                                 
## 407                                               19
## 408                                                 
## 409                                                 
## 410                                               16
## 411                                                 
## 412                                                 
## 413                                                 
## 414                                                 
## 415                                               16
## 416                                                 
## 417                                               19
## 418                                               19
## 419                                                 
## 420                                                5
## 421                                               19
## 422                                                 
## 423                                                 
## 424                                               19
## 425                                                 
## 426                                                 
## 427                                                 
## 428                                                 
## 429                                               16
## 430                                                 
## 431                                                 
## 432                                                 
## 433                                                 
## 434                                                 
## 435                                                 
## 436                                                 
## 437                                                 
## 438                                                 
## 439                                                 
## 440                                               19
## 441                                                 
## 442                                                 
## 443                                                 
## 444                                                 
## 445                                                 
## 446                                                 
## 447                                                 
## 448                                               19
## 449                                                 
## 450                                                 
## 451                                               19
## 452                                                 
## 453                                                 
## 454                                                 
## 455                                                 
## 456                                                 
## 457                                               16
## 458                                                 
## 459                                                 
## 460                                                 
## 461                                                 
## 462                                                 
## 463                                                 
## 464                                                 
## 465                                                 
## 466                                                 
## 467                                                 
## 468                                                 
## 469                                               16
## 470                                                 
## 471                                                 
## 472                                                 
## 473                                                 
## 474                                                 
## 475                                               19
## 476                                                5
## 477                                                 
## 478                                                 
## 479                                                 
## 480                                                 
## 481                                                 
## 482                                                 
## 483                                                 
## 484                                                 
## 485                                                 
## 486                                               19
## 487                                                5
## 488                                                 
## 489                                                 
## 490                                               16
## 491                                                 
## 492                                                 
## 493                                                 
## 494                                                 
## 495                                                 
## 496                                                 
## 497                                                 
## 498                                                 
## 499                                               16
## 500                                                5
## 501                                               16
## 502                                               19
## 503                                                 
## 504                                                 
## 505                                                 
## 506                                               19
## 507                                               19
## 508                                                 
## 509                                               19
## 510                                                 
## 511                                                5
## 512                                                 
## 513                                                 
## 514                                                 
## 515                                                5
## 516                                                 
## 517                                               19
## 518                                                 
## 519                                                 
## 520                                                 
## 521                                                 
## 522                                                 
## 523                                                 
## 524                                                 
## 525                                                 
## 526                                                 
## 527                                                 
## 528                                               19
## 529                                                 
## 530                                                 
## 531                                                5
## 532                                                 
## 533                                                 
## 534                                                 
## 535                                               16
## 536                                                 
## 537                                                 
## 538                                               16
## 539                                                 
## 540                                                 
## 541                                                 
## 542                                                5
## 543                                               19
## 544                                                 
## 545                                                 
## 546                                                 
## 547                                                 
## 548                                               16
## 549                                                 
## 550                                                 
## 551                                                 
## 552                                                 
## 553                                               19
## 554                                                 
## 555                                                 
## 556                                                 
## 557                                                 
## 558                                                 
## 559                                                 
## 560                                                 
## 561                                                 
## 562                                                 
## 563                                                 
## 564                                                5
## 565                                                 
## 566                                                 
## 567                                                 
## 568                                                 
## 569                                               16
## 570                                                5
## 571                                                 
## 572                                                 
## 573                                                 
## 574                                                 
## 575                                               19
## 576                                                 
## 577                                                 
## 578                                                 
## 579                                               19
## 580                                                 
## 581                                               19
## 582                                                 
## 583                                                 
## 584                                                 
## 585                                                 
## 586                                                 
## 587                                                 
## 588                                                 
## 589                                               19
## 590                                               16
## 591                                                 
## 592                                                5
## 593                                                 
## 594                                               19
## 595                                                 
## 596                                                5
## 597                                                 
## 598                                               19
## 599                                                 
## 600                                                 
## 601                                                 
## 602                                                 
## 603                                                 
## 604                                                 
## 605                                               19
## 606                                                 
## 607                                                 
## 608                                                 
## 609                                               19
## 610                                                5
## 611                                               19
## 612                                                 
## 613                                                 
## 614                                                 
## 615                                                 
## 616                                                 
## 617                                               19
## 618                                                 
## 619                                                 
## 620                                                 
## 621                                                 
## 622                                                 
## 623                                               19
## 624                                                 
## 625                                                 
## 626                                                 
## 627                                                 
## 628                                               16
## 629                                                 
## 630                                                 
## 631                                                 
## 632                                                 
## 633                                                 
## 634                                                 
## 635                                                 
## 636                                                 
## 637                                                 
## 638                                               19
## 639                                                 
## 640                                                 
## 641                                                 
## 642                                                 
## 643                                                 
## 644                                                 
## 645                                                5
## 646                                               19
## 647                                               16
## 648                                                 
## 649                                                5
## 650                                                 
## 651                                               19
## 652                                                 
## 653                                                 
## 654                                                 
## 655                                                 
## 656                                                5
## 657                                                 
## 658                                                 
## 659                                                 
## 660                                                 
## 661                                               16
## 662                                                 
## 663                                                 
## 664                                                5
## 665                                               16
## 666                                                 
## 667                                                 
## 668                                               19
## 669                                                5
## 670                                                 
## 671                                                 
## 672                                                 
## 673                                               16
## 674                                               16
## 675                                                 
## 676                                                 
## 677                                                5
## 678                                                 
## 679                                               16
## 680                                                 
## 681                                                 
## 682                                                 
## 683                                                 
## 684                                               16
## 685                                                 
## 686                                                 
## 687                                                 
## 688                                               19
## 689                                                5
## 690                                                 
## 691                                                 
## 692                                                 
## 693                                                 
## 694                                                 
## 695                                                 
## 696                                                 
## 697                                                5
## 698                                                 
## 699                                                 
## 700                                                 
## 701                                                 
## 702                                               19
## 703                                                 
## 704                                                 
## 705                                                 
## 706                                               19
## 707                                                 
## 708                                                 
## 709                                                5
## 710                                               16
## 711                                               16
## 712                                                 
## 713                                                 
## 714                                               16
## 715                                                 
## 716                                                 
## 717                                                 
## 718                                                 
## 719                                                 
## 720                                                 
## 721                                                 
## 722                                                 
## 723                                                 
## 724                                                 
## 725                                                 
## 726                                               16
## 727                                                 
## 728                                                 
## 729                                                 
## 730                                                5
## 731                                                 
## 732                                                 
## 733                                                 
## 734                                               19
## 735                                                 
## 736                                                 
## 737                                                 
## 738                                                 
## 739                                                 
## 740                                               19
## 741                                               19
## 742                                                 
## 743                                               16
## 744                                                 
## 745                                               19
## 746                                                5
## 747                                                 
## 748                                                 
## 749                                               19
## 750                                                 
## 751                                               19
## 752                                                 
## 753                                                 
## 754                                                 
## 755                                                 
## 756                                                 
## 757                                                 
## 758                                                 
## 759                                               19
## 760                                                 
## 761                                                 
## 762                                                 
## 763                                               19
## 764                                                 
## 765                                                 
## 766                                                 
## 767                                                 
## 768                                               19
## 769                                               16
## 770                                                 
## 771                                               19
## 772                                                 
## 773                                                 
## 774                                                 
## 775                                                 
## 776                                                 
## 777                                                5
## 778                                                 
## 779                                                 
## 780                                                 
## 781                                                 
## 782                                                 
## 783                                               19
## 784                                                 
## 785                                                 
## 786                                                 
## 787                                                 
## 788                                                 
## 789                                                 
## 790                                                 
## 791                                               16
## 792                                               16
## 793                                               19
## 794                                                 
## 795                                                 
## 796                                                 
## 797                                                5
## 798                                               19
## 799                                                 
## 800                                                 
## 801                                                 
## 802                                                 
## 803                                               19
## 804                                                 
## 805                                                 
## 806                                                 
## 807                                               19
## 808                                                 
## 809                                                5
## 810                                                5
## 811                                                 
## 812                                                 
## 813                                                 
## 814                                                 
## 815                                                 
## 816                                                5
## 817                                               19
## 818                                                 
## 819                                                 
## 820                                                 
## 821                                                 
## 822                                                 
## 823                                                 
## 824                                                 
## 825                                               16
## 826                                                 
## 827                                                 
## 828                                                 
## 829                                                 
## 830                                                 
## 831                                                 
## 832                                                 
## 833                                                 
## 834                                                 
## 835                                                5
## 836                                                 
## 837                                               19
## 838                                                 
## 839                                                 
## 840                                               16
## 841                                                 
## 842                                               19
## 843                                                5
## 844                                                 
## 845                                                 
## 846                                                 
## 847                                                 
## 848                                                 
## 849                                               19
## 850                                                 
## 851                                                 
## 852                                                 
## 853                                                5
## 854                                                 
## 855                                                 
## 856                                                 
## 857                                                5
## 858                                                 
## 859                                               16
## 860                                                 
## 861                                                 
## 862                                                 
## 863                                                 
## 864                                               19
## 865                                               19
## 866                                                 
## 867                                                 
## 868                                                 
## 869                                                 
## 870                                                 
## 871                                                 
## 872                                                 
## 873                                                 
## 874                                                 
## 875                                                 
## 876                                                 
## 877                                               19
## 878                                                 
## 879                                                 
## 880                                                 
## 881                                                 
## 882                                               19
## 883                                                 
## 884                                                 
## 885                                                 
## 886                                                 
## 887                                                 
## 888                                                 
## 889                                                 
## 890                                               16
## 891                                                5
## 892                                                 
## 893                                                 
## 894                                                 
## 895                                                 
## 896                                                 
## 897                                                 
## 898                                               19
## 899                                                 
## 900                                               19
## 901                                                 
## 902                                                 
## 903                                                5
## 904                                                 
## 905                                                 
## 906                                               16
## 907                                                 
## 908                                                 
## 909                                               19
## 910                                                 
## 911                                                 
## 912                                                5
## 913                                                 
## 914                                               19
## 915                                                5
## 916                                               16
## 917                                               19
## 918                                                 
## 919                                                 
## 920                                               19
## 921                                                 
## 922                                                 
## 923                                                 
## 924                                                 
## 925                                                 
## 926                                                 
## 927                                                 
## 928                                                 
## 929                                                5
## 930                                                 
## 931                                                 
## 932                                               19
## 933                                               19
## 934                                                 
## 935                                                 
## 936                                               19
## 937                                                 
## 938                                               19
## 939                                                 
## 940                                                 
## 941                                                 
## 942                                                 
## 943                                               19
## 944                                                 
## 945                                                 
## 946                                                 
## 947                                                 
## 948                                               16
## 949                                               19
## 950                                                 
## 951                                                 
## 952                                                 
## 953                                                 
## 954                                                 
## 955                                                 
## 956                                                 
## 957                                                 
## 958                                               16
## 959                                                 
## 960                                                 
## 961                                                 
## 962                                                 
## 963                                                 
## 964                                                5
## 965                                                 
## 966                                                 
## 967                                                 
## 968                                                 
## 969                                                 
## 970                                                 
## 971                                                 
## 972                                                 
## 973                                               19
## 974                                                 
## 975                                                 
## 976                                               16
## 977                                                 
## 978                                                 
## 979                                                5
## 980                                               19
## 981                                                 
## 982                                               16
## 983                                                 
## 984                                                 
## 985                                                 
## 986                                               19
## 987                                                 
## 988                                               16
## 989                                                 
## 990                                                 
## 991                                                 
## 992                                                 
## 993                                                5
## 994                                                 
## 995                                                 
## 996                                                 
## 997                                               19
## 998                                                 
## 999                                                 
## 1000                                              19
## 1001                                              19
## 1002                                                
## 1003                                                
## 1004                                                
## 1005                                                
## 1006                                                
## 1007                                                
## 1008                                                
## 1009                                              19
## 1010                                                
## 1011                                              19
## 1012                                              19
## 1013                                                
## 1014                                                
## 1015                                               5
## 1016                                                
## 1017                                                
## 1018                                               5
## 1019                                              16
## 1020                                                
## 1021                                              16
## 1022                                                
## 1023                                                
## 1024                                                
## 1025                                              19
## 1026                                              16
## 1027                                              19
## 1028                                              16
## 1029                                                
## 1030                                                
## 1031                                               5
## 1032                                                
## 1033                                                
## 1034                                                
## 1035                                              16
## 1036                                              16
## 1037                                                
## 1038                                                
## 1039                                               5
## 1040                                                
## 1041                                                
## 1042                                                
## 1043                                                
## 1044                                              16
## 1045                                                
## 1046                                                
## 1047                                                
## 1048                                              19
## 1049                                                
## 1050                                              19
## 1051                                              19
## 1052                                                
## 1053                                                
## 1054                                                
## 1055                                                
## 1056                                                
## 1057                                                
## 1058                                                
## 1059                                                
## 1060                                                
## 1061                                              16
## 1062                                                
## 1063                                                
## 1064                                                
## 1065                                                
## 1066                                                
## 1067                                               5
## 1068                                              16
## 1069                                                
## 1070                                                
## 1071                                                
## 1072                                              19
## 1073                                                
## 1074                                              19
## 1075                                                
## 1076                                              16
## 1077                                                
## 1078                                                
## 1079                                                
## 1080                                                
## 1081                                                
## 1082                                                
## 1083                                                
## 1084                                                
## 1085                                                
## 1086                                                
## 1087                                                
## 1088                                                
## 1089                                                
## 1090                                              19
## 1091                                                
## 1092                                                
## 1093                                                
## 1094                                                
## 1095                                              19
## 1096                                                
## 1097                                                
## 1098                                                
## 1099                                                
## 1100                                                
## 1101                                                
## 1102                                                
## 1103                                              19
## 1104                                                
## 1105                                                
## 1106                                                
## 1107                                              19
## 1108                                                
## 1109                                                
## 1110                                                
## 1111                                               5
## 1112                                              19
## 1113                                                
## 1114                                              16
## 1115                                                
## 1116                                                
## 1117                                              19
## 1118                                              16
## 1119                                                
## 1120                                              16
## 1121                                                
## 1122                                                
## 1123                                                
## 1124                                              19
## 1125                                                
## 1126                                                
## 1127                                                
## 1128                                                
## 1129                                                
## 1130                                                
## 1131                                                
## 1132                                                
## 1133                                                
## 1134                                                
## 1135                                                
## 1136                                                
## 1137                                              19
## 1138                                                
## 1139                                              19
## 1140                                                
## 1141                                                
## 1142                                                
## 1143                                               5
## 1144                                               5
## 1145                                                
## 1146                                               5
## 1147                                                
## 1148                                               5
## 1149                                              16
## 1150                                              19
## 1151                                                
## 1152                                                
## 1153                                               5
## 1154                                               5
## 1155                                                
## 1156                                                
## 1157                                                
## 1158                                                
## 1159                                                
## 1160                                                
## 1161                                              19
## 1162                                              19
## 1163                                                
## 1164                                                
## 1165                                                
## 1166                                                
## 1167                                               5
## 1168                                              19
## 1169                                                
## 1170                                                
## 1171                                                
## 1172                                                
## 1173                                                
## 1174                                                
## 1175                                               5
## 1176                                                
## 1177                                                
## 1178                                              19
## 1179                                                
## 1180                                              16
## 1181                                              16
## 1182                                                
## 1183                                                
## 1184                                              19
## 1185                                              19
## 1186                                                
## 1187                                                
## 1188                                               5
## 1189                                                
## 1190                                                
## 1191                                                
## 1192                                                
## 1193                                                
## 1194                                              16
## 1195                                               5
## 1196                                                
## 1197                                                
## 1198                                                
## 1199                                                
## 1200                                              19
## 1201                                              19
## 1202                                              19
## 1203                                                
## 1204                                                
## 1205                                                
## 1206                                                
## 1207                                              16
## 1208                                              19
## 1209                                                
## 1210                                                
## 1211                                                
## 1212                                               5
## 1213                                              16
## 1214                                                
## 1215                                                
## 1216                                                
## 1217                                                
## 1218                                                
## 1219                                                
## 1220                                                
## 1221                                               5
## 1222                                                
## 1223                                                
## 1224                                                
## 1225                                                
## 1226                                                
## 1227                                                
## 1228                                                
## 1229                                                
## 1230                                                
## 1231                                               5
## 1232                                               5
## 1233                                              16
## 1234                                                
## 1235                                              16
## 1236                                                
## 1237                                                
## 1238                                                
## 1239                                                
## 1240                                                
## 1241                                               5
## 1242                                              19
## 1243                                                
## 1244                                                
## 1245                                                
## 1246                                                
## 1247                                                
## 1248                                              19
## 1249                                                
## 1250                                                
## 1251                                                
## 1252                                               5
## 1253                                              16
## 1254                                               5
## 1255                                               5
## 1256                                                
## 1257                                                
## 1258                                                
## 1259                                                
## 1260                                                
## 1261                                              19
## 1262                                              19
## 1263                                                
## 1264                                              19
## 1265                                                
## 1266                                                
## 1267                                              19
## 1268                                                
## 1269                                              16
## 1270                                                
## 1271                                                
## 1272                                                
## 1273                                                
## 1274                                                
## 1275                                                
## 1276                                                
## 1277                                                
## 1278                                                
## 1279                                                
## 1280                                                
## 1281                                                
## 1282                                                
## 1283                                               5
## 1284                                                
## 1285                                                
## 1286                                                
## 1287                                                
## 1288                                              16
## 1289                                                
## 1290                                                
## 1291                                                
## 1292                                                
## 1293                                                
## 1294                                              19
## 1295                                                
## 1296                                                
## 1297                                                
## 1298                                                
## 1299                                               5
## 1300                                              16
## 1301                                              19
## 1302                                                
## 1303                                                
## 1304                                               5
## 1305                                                
## 1306                                              19
## 1307                                                
## 1308                                                
## 1309                                                
## 1310                                                
## 1311                                              16
## 1312                                                
## 1313                                              16
## 1314                                                
## 1315                                                
## 1316                                                
## 1317                                                
## 1318                                                
## 1319                                                
## 1320                                                
## 1321                                                
## 1322                                                
## 1323                                                
## 1324                                                
## 1325                                                
## 1326                                                
## 1327                                              19
## 1328                                                
## 1329                                                
## 1330                                              19
## 1331                                                
## 1332                                                
## 1333                                                
## 1334                                                
## 1335                                                
## 1336                                                
## 1337                                                
## 1338                                              16
## 1339                                                
## 1340                                              16
## 1341                                                
## 1342                                               5
## 1343                                              16
## 1344                                              19
## 1345                                                
## 1346                                                
## 1347                                              16
## 1348                                                
## 1349                                                
## 1350                                                
## 1351                                                
## 1352                                                
## 1353                                                
## 1354                                              19
## 1355                                                
## 1356                                              19
## 1357                                              19
## 1358                                                
## 1359                                                
## 1360                                               5
## 1361                                                
## 1362                                                
## 1363                                               5
## 1364                                                
## 1365                                               5
## 1366                                                
## 1367                                                
## 1368                                                
## 1369                                                
## 1370                                                
## 1371                                                
## 1372                                                
## 1373                                               5
## 1374                                                
## 1375                                                
## 1376                                                
## 1377                                              16
## 1378                                                
## 1379                                               5
## 1380                                                
## 1381                                              19
## 1382                                                
## 1383                                               5
## 1384                                                
## 1385                                                
## 1386                                                
## 1387                                                
## 1388                                                
## 1389                                                
## 1390                                                
## 1391                                               5
## 1392                                                
## 1393                                                
## 1394                                                
## 1395                                                
## 1396                                                
## 1397                                                
## 1398                                                
## 1399                                               5
## 1400                                               5
## 1401                                                
## 1402                                                
## 1403                                                
## 1404                                                
## 1405                                                
## 1406                                                
## 1407                                                
## 1408                                                
## 1409                                                
## 1410                                                
## 1411                                                
## 1412                                                
## 1413                                                
## 1414                                                
## 1415                                                
## 1416                                                
## 1417                                                
## 1418                                                
## 1419                                                
## 1420                                              16
## 1421                                                
## 1422                                                
## 1423                                                
## 1424                                                
## 1425                                                
## 1426                                                
## 1427                                                
## 1428                                                
## 1429                                                
## 1430                                                
## 1431                                                
## 1432                                                
## 1433                                                
## 1434                                                
## 1435                                                
## 1436                                              19
## 1437                                                
## 1438                                                
## 1439                                                
## 1440                                              19
## 1441                                              19
## 1442                                              19
## 1443                                                
## 1444                                                
## 1445                                                
## 1446                                                
## 1447                                                
## 1448                                                
## 1449                                                
## 1450                                                
## 1451                                                
## 1452                                                
## 1453                                                
## 1454                                                
## 1455                                                
## 1456                                                
## 1457                                                
## 1458                                              19
## 1459                                              19
## 1460                                               5
## 1461                                              19
## 1462                                                
## 1463                                              16
## 1464                                                
## 1465                                                
## 1466                                                
## 1467                                              16
## 1468                                                
## 1469                                              19
## 1470                                                
## 1471                                                
## 1472                                                
## 1473                                              16
## 1474                                                
## 1475                                              16
## 1476                                                
## 1477                                                
## 1478                                               5
## 1479                                                
## 1480                                                
## 1481                                                
## 1482                                               5
## 1483                                                
## 1484                                                
## 1485                                              19
## 1486                                                
## 1487                                                
## 1488                                                
## 1489                                              19
## 1490                                                
## 1491                                                
## 1492                                                
## 1493                                              16
## 1494                                                
## 1495                                                
## 1496                                               5
## 1497                                                
## 1498                                              19
## 1499                                                
## 1500                                                
## 1501                                                
## 1502                                                
## 1503                                                
## 1504                                                
## 1505                                                
## 1506                                                
## 1507                                                
## 1508                                               5
## 1509                                                
## 1510                                                
## 1511                                                
## 1512                                                
## 1513                                              16
## 1514                                              19
## 1515                                                
## 1516                                                
## 1517                                                
## 1518                                                
## 1519                                               5
## 1520                                                
## 1521                                               5
## 1522                                                
## 1523                                                
## 1524                                              16
## 1525                                                
## 1526                                                
## 1527                                              19
## 1528                                                
## 1529                                                
## 1530                                                
## 1531                                               5
## 1532                                                
## 1533                                                
## 1534                                               5
## 1535                                                
## 1536                                                
## 1537                                                
## 1538                                                
## 1539                                              16
## 1540                                                
## 1541                                                
## 1542                                                
## 1543                                                
## 1544                                                
## 1545                                                
## 1546                                                
## 1547                                               5
## 1548                                              16
## 1549                                                
## 1550                                              16
## 1551                                              19
## 1552                                                
## 1553                                                
## 1554                                               5
## 1555                                              19
## 1556                                               5
## 1557                                                
## 1558                                                
## 1559                                                
## 1560                                                
## 1561                                              19
## 1562                                                
## 1563                                                
## 1564                                                
## 1565                                                
## 1566                                                
## 1567                                                
## 1568                                               5
## 1569                                                
## 1570                                                
## 1571                                               5
## 1572                                              16
## 1573                                              16
## 1574                                                
## 1575                                                
## 1576                                                
## 1577                                                
## 1578                                                
## 1579                                                
## 1580                                                
## 1581                                              19
## 1582                                                
## 1583                                                
## 1584                                               5
## 1585                                                
## 1586                                                
## 1587                                                
## 1588                                              16
## 1589                                                
## 1590                                                
## 1591                                                
## 1592                                                
## 1593                                                
## 1594                                                
## 1595                                               5
## 1596                                                
## 1597                                                
## 1598                                                
## 1599                                                
## 1600                                                
## 1601                                                
## 1602                                              19
## 1603                                                
## 1604                                                
## 1605                                              19
## 1606                                                
## 1607                                              19
## 1608                                                
## 1609                                                
## 1610                                              16
## 1611                                                
## 1612                                                
## 1613                                              19
## 1614                                                
## 1615                                                
## 1616                                                
## 1617                                               5
## 1618                                              19
## 1619                                                
## 1620                                               5
## 1621                                                
## 1622                                                
## 1623                                                
## 1624                                              16
## 1625                                                
## 1626                                                
## 1627                                                
## 1628                                                
## 1629                                                
## 1630                                              16
## 1631                                                
## 1632                                                
## 1633                                                
## 1634                                                
## 1635                                                
## 1636                                              19
## 1637                                                
## 1638                                                
## 1639                                              19
## 1640                                                
## 1641                                               5
## 1642                                                
## 1643                                              19
## 1644                                                
## 1645                                                
## 1646                                              16
## 1647                                               5
## 1648                                              16
## 1649                                                
## 1650                                                
## 1651                                                
## 1652                                                
## 1653                                                
## 1654                                                
## 1655                                              16
## 1656                                                
## 1657                                              16
## 1658                                                
## 1659                                                
## 1660                                                
## 1661                                              16
## 1662                                                
## 1663                                                
## 1664                                                
## 1665                                                
## 1666                                                
## 1667                                                
## 1668                                                
## 1669                                               5
## 1670                                              19
## 1671                                                
## 1672                                              19
## 1673                                                
## 1674                                                
## 1675                                                
## 1676                                                
## 1677                                                
## 1678                                                
## 1679                                              19
## 1680                                                
## 1681                                                
## 1682                                                
## 1683                                              19
## 1684                                                
## 1685                                                
## 1686                                                
## 1687                                               5
## 1688                                                
## 1689                                                
## 1690                                                
## 1691                                                
## 1692                                                
## 1693                                               5
## 1694                                                
## 1695                                              19
## 1696                                                
## 1697                                                
## 1698                                               5
## 1699                                                
## 1700                                                
## 1701                                                
## 1702                                              16
## 1703                                                
## 1704                                              19
## 1705                                              19
## 1706                                                
## 1707                                                
## 1708                                                
## 1709                                               5
## 1710                                                
## 1711                                                
## 1712                                                
## 1713                                              16
## 1714                                              19
## 1715                                                
## 1716                                                
## 1717                                                
## 1718                                              19
## 1719                                                
## 1720                                                
## 1721                                               5
## 1722                                              16
## 1723                                                
## 1724                                                
## 1725                                               5
## 1726                                                
## 1727                                                
## 1728                                              19
## 1729                                                
## 1730                                                
## 1731                                                
## 1732                                                
## 1733                                                
## 1734                                                
## 1735                                                
## 1736                                              19
## 1737                                              16
## 1738                                                
## 1739                                              16
## 1740                                                
## 1741                                              19
## 1742                                                
## 1743                                                
## 1744                                                
## 1745                                                
## 1746                                              16
## 1747                                                
## 1748                                                
## 1749                                              19
## 1750                                               5
## 1751                                                
## 1752                                                
## 1753                                               5
## 1754                                              19
## 1755                                                
## 1756                                                
## 1757                                                
## 1758                                                
## 1759                                                
## 1760                                               5
## 1761                                                
## 1762                                                
## 1763                                               5
## 1764                                               5
## 1765                                                
## 1766                                               5
## 1767                                                
## 1768                                               5
## 1769                                                
## 1770                                                
## 1771                                               5
## 1772                                                
## 1773                                                
## 1774                                                
## 1775                                                
## 1776                                                
## 1777                                                
## 1778                                              19
## 1779                                              19
## 1780                                               5
## 1781                                                
## 1782                                                
## 1783                                                
## 1784                                                
## 1785                                               5
## 1786                                                
## 1787                                              16
## 1788                                                
## 1789                                               5
## 1790                                                
## 1791                                                
## 1792                                                
## 1793                                                
## 1794                                                
## 1795                                                
## 1796                                                
## 1797                                                
## 1798                                                
## 1799                                                
## 1800                                                
## 1801                                              16
## 1802                                                
## 1803                                                
## 1804                                                
## 1805                                              16
## 1806                                               5
## 1807                                              16
## 1808                                               5
## 1809                                               5
## 1810                                                
## 1811                                                
## 1812                                                
## 1813                                                
## 1814                                              19
## 1815                                                
## 1816                                              19
## 1817                                                
## 1818                                              19
## 1819                                              16
## 1820                                                
## 1821                                                
## 1822                                               5
## 1823                                              19
## 1824                                                
## 1825                                                
## 1826                                                
## 1827                                              16
## 1828                                                
## 1829                                              16
## 1830                                                
## 1831                                                
## 1832                                                
## 1833                                                
## 1834                                                
## 1835                                              16
## 1836                                                
## 1837                                                
## 1838                                                
## 1839                                                
## 1840                                              19
## 1841                                                
## 1842                                                
## 1843                                                
## 1844                                                
## 1845                                                
## 1846                                                
## 1847                                                
## 1848                                                
## 1849                                              19
## 1850                                               5
## 1851                                               5
## 1852                                                
## 1853                                                
## 1854                                                
## 1855                                                
## 1856                                               5
## 1857                                                
## 1858                                                
## 1859                                              19
## 1860                                                
## 1861                                              16
## 1862                                                
## 1863                                                
## 1864                                                
## 1865                                                
## 1866                                                
## 1867                                                
## 1868                                                
## 1869                                                
## 1870                                                
## 1871                                                
## 1872                                                
## 1873                                                
## 1874                                                
## 1875                                                
## 1876                                                
## 1877                                                
## 1878                                                
## 1879                                              19
## 1880                                                
## 1881                                                
## 1882                                               5
## 1883                                                
## 1884                                                
## 1885                                                
## 1886                                                
## 1887                                                
## 1888                                              16
## 1889                                                
## 1890                                                
## 1891                                                
## 1892                                               5
## 1893                                                
## 1894                                                
## 1895                                                
## 1896                                              19
## 1897                                              16
## 1898                                                
## 1899                                                
## 1900                                                
## 1901                                                
## 1902                                               5
## 1903                                               5
## 1904                                                
## 1905                                              19
## 1906                                                
## 1907                                                
## 1908                                                
## 1909                                                
## 1910                                                
## 1911                                                
## 1912                                                
## 1913                                                
## 1914                                                
## 1915                                                
## 1916                                                
## 1917                                                
## 1918                                                
## 1919                                                
## 1920                                              19
## 1921                                                
## 1922                                              16
## 1923                                              16
## 1924                                              19
## 1925                                                
## 1926                                                
## 1927                                                
## 1928                                                
## 1929                                                
## 1930                                                
## 1931                                                
## 1932                                                
## 1933                                                
## 1934                                                
## 1935                                                
## 1936                                                
## 1937                                                
## 1938                                                
## 1939                                                
## 1940                                              19
## 1941                                              19
## 1942                                                
## 1943                                                
## 1944                                                
## 1945                                                
## 1946                                                
## 1947                                                
## 1948                                               5
## 1949                                              16
## 1950                                                
## 1951                                               5
## 1952                                                
## 1953                                                
## 1954                                                
## 1955                                                
## 1956                                               5
## 1957                                              19
## 1958                                                
## 1959                                              19
## 1960                                                
## 1961                                                
## 1962                                                
## 1963                                              19
## 1964                                                
## 1965                                                
## 1966                                                
## 1967                                              19
## 1968                                                
## 1969                                              19
## 1970                                              16
## 1971                                              19
## 1972                                                
## 1973                                                
## 1974                                                
## 1975                                                
## 1976                                              19
## 1977                                              16
## 1978                                                
## 1979                                                
## 1980                                                
## 1981                                                
## 1982                                              16
## 1983                                                
## 1984                                                
## 1985                                                
## 1986                                                
## 1987                                              16
## 1988                                              16
## 1989                                              16
## 1990                                               5
## 1991                                                
## 1992                                                
## 1993                                                
## 1994                                                
## 1995                                                
## 1996                                                
## 1997                                                
## 1998                                                
## 1999                                                
## 2000                                                
## 2001                                                
## 2002                                                
## 2003                                                
## 2004                                                
## 2005                                                
## 2006                                              19
## 2007                                                
## 2008                                                
## 2009                                                
## 2010                                                
## 2011                                              19
## 2012                                                
## 2013                                               5
## 2014                                                
## 2015                                                
## 2016                                                
## 2017                                                
## 2018                                                
## 2019                                              19
## 2020                                                
## 2021                                                
## 2022                                                
## 2023                                                
## 2024                                                
## 2025                                                
## 2026                                                
## 2027                                              16
## 2028                                                
## 2029                                                
## 2030                                                
## 2031                                               5
## 2032                                                
## 2033                                                
## 2034                                                
## 2035                                                
## 2036                                              19
## 2037                                                
## 2038                                                
## 2039                                                
## 2040                                                
## 2041                                                
## 2042                                                
## 2043                                                
## 2044                                                
## 2045                                                
## 2046                                                
## 2047                                                
## 2048                                                
## 2049                                                
## 2050                                               5
## 2051                                                
## 2052                                                
## 2053                                              16
## 2054                                                
## 2055                                                
## 2056                                                
## 2057                                              16
## 2058                                                
## 2059                                                
## 2060                                                
## 2061                                                
## 2062                                              19
## 2063                                                
## 2064                                                
## 2065                                                
## 2066                                                
## 2067                                               5
## 2068                                                
## 2069                                                
## 2070                                                
## 2071                                              16
## 2072                                                
## 2073                                                
## 2074                                              16
## 2075                                               5
## 2076                                              19
## 2077                                                
## 2078                                                
## 2079                                                
## 2080                                                
## 2081                                               5
## 2082                                                
## 2083                                              16
## 2084                                                
## 2085                                                
## 2086                                                
## 2087                                                
## 2088                                                
## 2089                                              16
## 2090                                              19
## 2091                                                
## 2092                                                
## 2093                                              16
## 2094                                              19
## 2095                                                
## 2096                                                
## 2097                                                
## 2098                                               5
## 2099                                                
## 2100                                                
## 2101                                                
## 2102                                                
## 2103                                                
## 2104                                                
## 2105                                                
## 2106                                               5
## 2107                                              16
## 2108                                                
## 2109                                              19
## 2110                                              16
## 2111                                              19
## 2112                                                
## 2113                                                
## 2114                                                
## 2115                                                
## 2116                                               5
## 2117                                                
## 2118                                                
## 2119                                                
## 2120                                                
## 2121                                                
## 2122                                              16
## 2123                                                
## 2124                                                
## 2125                                                
## 2126                                              19
## 2127                                              16
## 2128                                                
## 2129                                                
## 2130                                                
## 2131                                                
## 2132                                              19
## 2133                                                
## 2134                                                
## 2135                                                
## 2136                                                
## 2137                                                
## 2138                                              19
## 2139                                              19
## 2140                                              19
## 2141                                              19
## 2142                                                
## 2143                                                
## 2144                                                
## 2145                                              19
## 2146                                                
## 2147                                                
## 2148                                                
## 2149                                                
## 2150                                                
## 2151                                                
## 2152                                              19
## 2153                                                
## 2154                                                
## 2155                                                
## 2156                                               5
## 2157                                              19
## 2158                                                
## 2159                                                
## 2160                                                
## 2161                                                
## 2162                                              19
## 2163                                              16
## 2164                                                
## 2165                                               5
## 2166                                                
## 2167                                               5
## 2168                                                
## 2169                                              19
## 2170                                                
## 2171                                                
## 2172                                                
## 2173                                                
## 2174                                                
## 2175                                                
## 2176                                              19
## 2177                                                
## 2178                                                
## 2179                                                
## 2180                                                
## 2181                                                
## 2182                                               5
## 2183                                                
## 2184                                              19
## 2185                                              19
## 2186                                                
## 2187                                              16
## 2188                                               5
## 2189                                                
## 2190                                                
## 2191                                                
## 2192                                               5
## 2193                                                
## 2194                                               5
## 2195                                                
## 2196                                              19
## 2197                                                
## 2198                                              16
## 2199                                                
## 2200                                              19
## 2201                                                
## 2202                                              16
## 2203                                              16
## 2204                                                
## 2205                                                
## 2206                                              19
## 2207                                                
## 2208                                                
## 2209                                                
## 2210                                              19
## 2211                                                
## 2212                                                
## 2213                                              16
## 2214                                               5
## 2215                                                
## 2216                                                
## 2217                                                
## 2218                                                
## 2219                                               5
## 2220                                                
## 2221                                                
## 2222                                                
## 2223                                                
## 2224                                                
## 2225                                              19
## 2226                                                
## 2227                                                
## 2228                                                
## 2229                                                
## 2230                                                
## 2231                                              16
## 2232                                                
## 2233                                                
## 2234                                                
## 2235                                              16
## 2236                                                
## 2237                                                
## 2238                                                
## 2239                                                
## 2240                                                
## 2241                                              19
## 2242                                                
## 2243                                                
## 2244                                                
## 2245                                                
## 2246                                               5
## 2247                                                
## 2248                                                
## 2249                                                
## 2250                                              19
## 2251                                                
## 2252                                                
## 2253                                                
## 2254                                                
## 2255                                              19
## 2256                                                
## 2257                                               5
## 2258                                                
## 2259                                              19
## 2260                                                
## 2261                                                
## 2262                                                
## 2263                                                
## 2264                                                
## 2265                                                
## 2266                                              19
## 2267                                              19
## 2268                                                
## 2269                                               5
## 2270                                              16
## 2271                                                
## 2272                                                
## 2273                                                
## 2274                                                
## 2275                                              19
## 2276                                                
## 2277                                                
## 2278                                                
## 2279                                               5
## 2280                                                
## 2281                                               5
## 2282                                                
## 2283                                                
## 2284                                                
## 2285                                                
## 2286                                                
## 2287                                              19
## 2288                                              16
## 2289                                                
## 2290                                                
## 2291                                                
## 2292                                                
## 2293                                                
## 2294                                                
## 2295                                               5
## 2296                                               5
## 2297                                                
## 2298                                               5
## 2299                                                
## 2300                                              16
## 2301                                                
## 2302                                                
## 2303                                               5
## 2304                                                
## 2305                                              19
## 2306                                              19
## 2307                                              19
## 2308                                                
## 2309                                                
## 2310                                                
## 2311                                              16
## 2312                                                
## 2313                                                
## 2314                                                
## 2315                                                
## 2316                                              16
## 2317                                                
## 2318                                              19
## 2319                                                
## 2320                                               5
## 2321                                               5
## 2322                                                
## 2323                                                
## 2324                                              16
## 2325                                                
## 2326                                                
## 2327                                                
## 2328                                                
## 2329                                              16
## 2330                                               5
## 2331                                               5
## 2332                                              19
## 2333                                              19
## 2334                                                
## 2335                                               5
## 2336                                               5
## 2337                                              19
## 2338                                                
## 2339                                              16
## 2340                                               5
## 2341                                                
## 2342                                              16
## 2343                                              16
## 2344                                                
## 2345                                              19
## 2346                                                
## 2347                                                
## 2348                                                
## 2349                                                
## 2350                                                
## 2351                                                
## 2352                                              16
## 2353                                                
## 2354                                                
## 2355                                              19
## 2356                                                
## 2357                                                
## 2358                                                
## 2359                                                
## 2360                                              19
## 2361                                                
## 2362                                                
## 2363                                                
## 2364                                                
## 2365                                                
## 2366                                              19
## 2367                                               5
## 2368                                                
## 2369                                              19
## 2370                                                
## 2371                                                
## 2372                                                
## 2373                                                
## 2374                                              19
## 2375                                                
## 2376                                                
## 2377                                                
## 2378                                                
## 2379                                              16
## 2380                                                
## 2381                                                
## 2382                                               5
## 2383                                              19
## 2384                                              19
## 2385                                                
## 2386                                                
## 2387                                                
## 2388                                               5
## 2389                                                
## 2390                                              19
## 2391                                                
## 2392                                                
## 2393                                                
## 2394                                                
## 2395                                              19
## 2396                                              19
## 2397                                               5
## 2398                                                
## 2399                                                
## 2400                                              16
## 2401                                                
## 2402                                              19
## 2403                                              16
## 2404                                               5
## 2405                                               5
## 2406                                                
## 2407                                                
## 2408                                                
## 2409                                                
## 2410                                              19
## 2411                                                
## 2412                                              16
## 2413                                                
## 2414                                                
## 2415                                               5
## 2416                                                
## 2417                                                
## 2418                                                
## 2419                                              19
## 2420                                                
## 2421                                                
## 2422                                                
## 2423                                                
## 2424                                               5
## 2425                                                
## 2426                                              19
## 2427                                                
## 2428                                              19
## 2429                                                
## 2430                                              16
## 2431                                               5
## 2432                                              19
## 2433                                              16
## 2434                                                
## 2435                                                
## 2436                                                
## 2437                                               5
## 2438                                              19
## 2439                                                
## 2440                                              19
## 2441                                                
## 2442                                              16
## 2443                                                
## 2444                                              19
## 2445                                                
## 2446                                                
## 2447                                               5
## 2448                                                
## 2449                                              19
## 2450                                                
## 2451                                                
## 2452                                                
## 2453                                              16
## 2454                                                
## 2455                                                
## 2456                                              19
## 2457                                                
## 2458                                               5
## 2459                                                
## 2460                                                
## 2461                                                
## 2462                                                
## 2463                                                
## 2464                                                
## 2465                                               5
## 2466                                                
## 2467                                                
## 2468                                              19
## 2469                                                
## 2470                                                
## 2471                                                
## 2472                                              19
## 2473                                               5
## 2474                                                
## 2475                                                
## 2476                                                
## 2477                                                
## 2478                                                
## 2479                                                
## 2480                                                
## 2481                                                
## 2482                                                
## 2483                                                
## 2484                                                
## 2485                                              16
## 2486                                                
## 2487                                              19
## 2488                                                
## 2489                                              19
## 2490                                                
## 2491                                                
## 2492                                                
## 2493                                              19
## 2494                                              19
## 2495                                                
## 2496                                                
## 2497                                              19
## 2498                                                
## 2499                                              19
## 2500                                                
## 2501                                              16
## 2502                                               5
## 2503                                              16
## 2504                                                
## 2505                                                
## 2506                                              19
## 2507                                                
## 2508                                                
## 2509                                                
## 2510                                                
## 2511                                                
## 2512                                                
## 2513                                               5
## 2514                                                
## 2515                                                
## 2516                                                
## 2517                                                
## 2518                                                
## 2519                                                
## 2520                                              19
## 2521                                                
## 2522                                                
## 2523                                                
## 2524                                              19
## 2525                                                
## 2526                                                
## 2527                                                
## 2528                                                
## 2529                                               5
## 2530                                                
## 2531                                               5
## 2532                                               5
## 2533                                               5
## 2534                                                
## 2535                                                
## 2536                                                
## 2537                                                
## 2538                                              19
## 2539                                              19
## 2540                                              19
## 2541                                                
## 2542                                                
## 2543                                               5
## 2544                                                
## 2545                                                
## 2546                                               5
## 2547                                              19
## 2548                                                
## 2549                                                
## 2550                                              19
## 2551                                                
## 2552                                              19
## 2553                                                
## 2554                                               5
## 2555                                                
## 2556                                                
## 2557                                              19
## 2558                                              19
## 2559                                              16
## 2560                                                
## 2561                                               5
## 2562                                                
## 2563                                                
## 2564                                                
## 2565                                                
## 2566                                                
## 2567                                                
## 2568                                                
## 2569                                                
## 2570                                                
## 2571                                              16
## 2572                                                
## 2573                                              19
## 2574                                                
## 2575                                                
## 2576                                                
## 2577                                                
## 2578                                                
## 2579                                                
## 2580                                                
## 2581                                                
## 2582                                               5
## 2583                                              19
## 2584                                                
## 2585                                              19
## 2586                                                
## 2587                                              16
## 2588                                              16
## 2589                                                
## 2590                                                
## 2591                                                
## 2592                                                
## 2593                                                
## 2594                                               5
## 2595                                                
## 2596                                              19
## 2597                                                
## 2598                                                
## 2599                                                
## 2600                                                
## 2601                                                
## 2602                                                
## 2603                                               5
## 2604                                                
## 2605                                                
## 2606                                              19
## 2607                                              19
## 2608                                                
## 2609                                              19
## 2610                                                
## 2611                                                
## 2612                                                
## 2613                                                
## 2614                                                
## 2615                                                
## 2616                                              16
## 2617                                              16
## 2618                                                
## 2619                                                
## 2620                                                
## 2621                                              16
## 2622                                                
## 2623                                                
## 2624                                                
## 2625                                              19
## 2626                                                
## 2627                                                
## 2628                                                
## 2629                                                
## 2630                                                
## 2631                                              19
## 2632                                              19
## 2633                                                
## 2634                                                
## 2635                                                
## 2636                                               5
## 2637                                                
## 2638                                                
## 2639                                                
## 2640                                                
## 2641                                                
## 2642                                                
## 2643                                                
## 2644                                                
## 2645                                                
## 2646                                                
## 2647                                                
## 2648                                              19
## 2649                                                
## 2650                                                
## 2651                                                
## 2652                                                
## 2653                                               5
## 2654                                                
## 2655                                              19
## 2656                                                
## 2657                                                
## 2658                                                
## 2659                                                
## 2660                                                
## 2661                                              19
## 2662                                                
## 2663                                                
## 2664                                                
## 2665                                                
## 2666                                              16
## 2667                                                
## 2668                                               5
## 2669                                                
## 2670                                                
## 2671                                                
## 2672                                                
## 2673                                               5
## 2674                                                
## 2675                                               5
## 2676                                                
## 2677                                                
## 2678                                              19
## 2679                                                
## 2680                                                
## 2681                                              19
## 2682                                                
## 2683                                              19
## 2684                                                
## 2685                                                
## 2686                                                
## 2687                                                
## 2688                                                
## 2689                                              19
## 2690                                              19
## 2691                                                
## 2692                                                
## 2693                                                
## 2694                                                
## 2695                                               5
## 2696                                                
## 2697                                                
## 2698                                              19
## 2699                                               5
## 2700                                                
## 2701                                                
## 2702                                                
## 2703                                              19
## 2704                                                
## 2705                                                
## 2706                                                
## 2707                                                
## 2708                                              19
## 2709                                                
## 2710                                                
## 2711                                                
## 2712                                                
## 2713                                                
## 2714                                                
## 2715                                                
## 2716                                                
## 2717                                               5
## 2718                                               5
## 2719                                                
## 2720                                                
## 2721                                                
## 2722                                                
## 2723                                                
## 2724                                                
## 2725                                              19
## 2726                                                
## 2727                                                
## 2728                                                
## 2729                                                
## 2730                                              16
## 2731                                                
## 2732                                                
## 2733                                                
## 2734                                              16
## 2735                                                
## 2736                                                
## 2737                                                
## 2738                                               5
## 2739                                                
## 2740                                              16
## 2741                                                
## 2742                                                
## 2743                                               5
## 2744                                              16
## 2745                                                
## 2746                                                
## 2747                                              16
## 2748                                              19
## 2749                                                
## 2750                                                
## 2751                                                
## 2752                                                
## 2753                                              19
## 2754                                                
## 2755                                                
## 2756                                              16
## 2757                                                
## 2758                                                
## 2759                                                
## 2760                                                
## 2761                                                
## 2762                                                
## 2763                                              19
## 2764                                              16
## 2765                                                
## 2766                                                
## 2767                                                
## 2768                                                
## 2769                                              16
## 2770                                              16
## 2771                                              16
## 2772                                                
## 2773                                                
## 2774                                                
## 2775                                              19
## 2776                                                
## 2777                                                
## 2778                                                
## 2779                                                
## 2780                                                
## 2781                                                
## 2782                                                
## 2783                                                
## 2784                                                
## 2785                                                
## 2786                                              19
## 2787                                                
## 2788                                                
## 2789                                              16
## 2790                                                
## 2791                                                
## 2792                                                
## 2793                                                
## 2794                                              16
## 2795                                                
## 2796                                                
## 2797                                                
## 2798                                                
## 2799                                                
## 2800                                                
## 2801                                                
## 2802                                              19
## 2803                                                
## 2804                                                
## 2805                                                
## 2806                                               5
## 2807                                                
## 2808                                                
## 2809                                                
## 2810                                                
## 2811                                                
## 2812                                                
## 2813                                                
## 2814                                              16
## 2815                                              16
## 2816                                                
## 2817                                              19
## 2818                                                
## 2819                                                
## 2820                                              19
## 2821                                              19
## 2822                                                
## 2823                                                
## 2824                                                
## 2825                                                
## 2826                                                
## 2827                                              19
## 2828                                              19
## 2829                                              16
## 2830                                                
## 2831                                                
## 2832                                              19
## 2833                                                
## 2834                                                
## 2835                                                
## 2836                                                
## 2837                                               5
## 2838                                                
## 2839                                                
## 2840                                                
## 2841                                                
## 2842                                                
## 2843                                              19
## 2844                                                
## 2845                                              19
## 2846                                              19
## 2847                                              19
## 2848                                                
## 2849                                              16
## 2850                                                
## 2851                                                
## 2852                                                
## 2853                                              16
## 2854                                              16
## 2855                                                
## 2856                                                
## 2857                                               5
## 2858                                                
## 2859                                                
## 2860                                                
## 2861                                                
## 2862                                                
## 2863                                                
## 2864                                                
## 2865                                                
## 2866                                                
## 2867                                               5
## 2868                                                
## 2869                                                
## 2870                                                
## 2871                                                
## 2872                                                
## 2873                                                
## 2874                                              16
## 2875                                                
## 2876                                                
## 2877                                                
## 2878                                                
## 2879                                              16
## 2880                                              19
## 2881                                                
## 2882                                              16
## 2883                                                
## 2884                                              19
## 2885                                                
## 2886                                                
## 2887                                                
## 2888                                              16
## 2889                                              16
## 2890                                                
## 2891                                                
## 2892                                                
## 2893                                                
## 2894                                              16
## 2895                                                
## 2896                                                
## 2897                                                
## 2898                                                
## 2899                                                
## 2900                                                
## 2901                                                
## 2902                                              16
## 2903                                              16
## 2904                                                
## 2905                                                
## 2906                                               5
## 2907                                                
## 2908                                                
## 2909                                                
## 2910                                               5
## 2911                                                
## 2912                                                
## 2913                                                
## 2914                                               5
## 2915                                                
## 2916                                                
## 2917                                                
## 2918                                                
## 2919                                                
## 2920                                                
## 2921                                                
## 2922                                                
## 2923                                                
## 2924                                                
## 2925                                                
## 2926                                              19
## 2927                                              16
## 2928                                                
## 2929                                                
## 2930                                                
## 2931                                                
## 2932                                                
## 2933                                                
## 2934                                              19
## 2935                                                
## 2936                                                
## 2937                                                
## 2938                                               5
## 2939                                                
## 2940                                                
## 2941                                                
## 2942                                              16
## 2943                                                
## 2944                                              16
## 2945                                                
## 2946                                                
## 2947                                                
## 2948                                                
## 2949                                                
## 2950                                              19
## 2951                                                
## 2952                                               5
## 2953                                                
## 2954                                                
## 2955                                                
## 2956                                               5
## 2957                                              19
## 2958                                                
## 2959                                              16
## 2960                                                
## 2961                                                
## 2962                                                
## 2963                                                
## 2964                                                
## 2965                                                
## 2966                                              19
## 2967                                                
## 2968                                                
## 2969                                                
## 2970                                                
## 2971                                                
## 2972                                                
## 2973                                                
## 2974                                                
## 2975                                              16
## 2976                                               5
## 2977                                                
## 2978                                                
## 2979                                                
## 2980                                                
## 2981                                                
## 2982                                                
## 2983                                                
## 2984                                                
## 2985                                                
## 2986                                                
## 2987                                                
## 2988                                              16
## 2989                                                
## 2990                                                
## 2991                                                
## 2992                                                
## 2993                                                
## 2994                                                
## 2995                                                
## 2996                                              16
## 2997                                              19
## 2998                                               5
## 2999                                                
## 3000                                                
## 3001                                               5
## 3002                                                
## 3003                                                
## 3004                                                
## 3005                                                
## 3006                                                
## 3007                                              19
## 3008                                              16
## 3009                                                
## 3010                                                
## 3011                                              16
## 3012                                                
## 3013                                                
## 3014                                                
## 3015                                              19
## 3016                                                
## 3017                                              16
## 3018                                                
## 3019                                                
## 3020                                              16
## 3021                                                
## 3022                                              19
## 3023                                                
## 3024                                                
## 3025                                                
## 3026                                                
## 3027                                              19
## 3028                                                
## 3029                                                
## 3030                                              16
## 3031                                                
## 3032                                                
## 3033                                                
## 3034                                                
## 3035                                                
## 3036                                                
## 3037                                              19
## 3038                                                
## 3039                                               5
## 3040                                                
## 3041                                                
## 3042                                                
## 3043                                               5
## 3044                                                
## 3045                                              19
## 3046                                               5
## 3047                                                
## 3048                                                
## 3049                                              19
## 3050                                                
## 3051                                                
## 3052                                                
## 3053                                                
## 3054                                                
## 3055                                                
## 3056                                                
## 3057                                              19
## 3058                                                
## 3059                                                
## 3060                                              19
## 3061                                              19
## 3062                                                
## 3063                                                
## 3064                                                
## 3065                                                
## 3066                                                
## 3067                                                
## 3068                                              19
## 3069                                                
## 3070                                                
## 3071                                               5
## 3072                                                
## 3073                                              16
## 3074                                                
## 3075                                                
## 3076                                              16
## 3077                                               5
## 3078                                                
## 3079                                                
## 3080                                                
## 3081                                                
## 3082                                               5
## 3083                                                
## 3084                                              19
## 3085                                                
## 3086                                                
## 3087                                                
## 3088                                              19
## 3089                                                
## 3090                                                
## 3091                                                
## 3092                                                
## 3093                                                
## 3094                                               5
## 3095                                                
## 3096                                                
## 3097                                                
## 3098                                               5
## 3099                                                
## 3100                                                
## 3101                                                
## 3102                                                
## 3103                                               5
## 3104                                                
## 3105                                              16
## 3106                                                
## 3107                                              16
## 3108                                                
## 3109                                                
## 3110                                              19
## 3111                                              16
## 3112                                                
## 3113                                                
## 3114                                                
## 3115                                                
## 3116                                              19
## 3117                                              19
## 3118                                                
## 3119                                                
## 3120                                                
## 3121                                                
## 3122                                                
## 3123                                              19
## 3124                                                
## 3125                                                
## 3126                                                
## 3127                                                
## 3128                                                
## 3129                                              16
## 3130                                              19
## 3131                                              19
## 3132                                                
## 3133                                                
## 3134                                              16
## 3135                                              19
## 3136                                                
## 3137                                              19
## 3138                                              19
## 3139                                              19
## 3140                                                
## 3141                                                
## 3142                                                
## 3143                                                
## 3144                                               5
## 3145                                                
## 3146                                                
## 3147                                                
## 3148                                                
## 3149                                                
## 3150                                                
## 3151                                                
## 3152                                                
## 3153                                                
## 3154                                                
## 3155                                               5
## 3156                                                
## 3157                                                
## 3158                                                
## 3159                                                
## 3160                                                
## 3161                                                
## 3162                                                
## 3163                                                
## 3164                                               5
## 3165                                                
## 3166                                                
## 3167                                                
## 3168                                                
## 3169                                                
## 3170                                                
## 3171                                                
## 3172                                               5
## 3173                                                
## 3174                                                
## 3175                                               5
## 3176                                                
## 3177                                                
## 3178                                                
## 3179                                                
## 3180                                                
## 3181                                                
## 3182                                                
## 3183                                              19
## 3184                                                
## 3185                                                
## 3186                                                
## 3187                                                
## 3188                                                
## 3189                                                
## 3190                                              16
## 3191                                                
## 3192                                                
## 3193                                                
## 3194                                              16
## 3195                                                
## 3196                                                
## 3197                                               5
## 3198                                                
## 3199                                                
## 3200                                                
## 3201                                              19
## 3202                                                
## 3203                                                
## 3204                                               5
## 3205                                                
## 3206                                                
## 3207                                              19
## 3208                                                
## 3209                                                
## 3210                                                
## 3211                                                
## 3212                                                
## 3213                                              19
## 3214                                              19
## 3215                                                
## 3216                                              19
## 3217                                                
## 3218                                                
## 3219                                                
## 3220                                                
## 3221                                                
## 3222                                                
## 3223                                                
## 3224                                                
## 3225                                              16
## 3226                                                
## 3227                                                
## 3228                                                
## 3229                                                
## 3230                                                
## 3231                                                
## 3232                                               5
## 3233                                                
## 3234                                                
## 3235                                                
## 3236                                                
## 3237                                                
## 3238                                                
## 3239                                                
## 3240                                                
## 3241                                                
## 3242                                                
## 3243                                                
## 3244                                                
## 3245                                              19
## 3246                                                
## 3247                                                
## 3248                                              19
## 3249                                                
## 3250                                              16
## 3251                                                
## 3252                                                
## 3253                                                
## 3254                                               5
## 3255                                                
## 3256                                                
## 3257                                              19
## 3258                                                
## 3259                                              16
## 3260                                                
## 3261                                                
## 3262                                               5
## 3263                                                
## 3264                                                
## 3265                                              19
## 3266                                                
## 3267                                                
## 3268                                              19
## 3269                                                
## 3270                                              19
## 3271                                                
## 3272                                              16
## 3273                                                
## 3274                                                
## 3275                                                
## 3276                                               5
## 3277                                                
## 3278                                              16
## 3279                                              19
## 3280                                                
## 3281                                                
## 3282                                                
## 3283                                                
## 3284                                                
## 3285                                                
## 3286                                              16
## 3287                                              19
## 3288                                                
## 3289                                                
## 3290                                                
## 3291                                                
## 3292                                                
## 3293                                                
## 3294                                                
## 3295                                                
## 3296                                              19
## 3297                                              16
## 3298                                                
## 3299                                                
## 3300                                                
## 3301                                                
## 3302                                                
## 3303                                              19
## 3304                                                
## 3305                                                
## 3306                                                
## 3307                                                
## 3308                                                
## 3309                                              19
## 3310                                                
## 3311                                                
## 3312                                                
## 3313                                                
## 3314                                                
## 3315                                                
## 3316                                              19
## 3317                                                
## 3318                                                
## 3319                                              16
## 3320                                                
## 3321                                                
## 3322                                                
## 3323                                              16
## 3324                                                
## 3325                                              19
## 3326                                              16
## 3327                                                
## 3328                                                
## 3329                                                
## 3330                                                
## 3331                                                
## 3332                                                
## 3333                                                
## 3334                                                
## 3335                                                
## 3336                                                
## 3337                                                
## 3338                                               5
## 3339                                                
## 3340                                                
## 3341                                                
## 3342                                                
## 3343                                                
## 3344                                                
## 3345                                                
## 3346                                                
## 3347                                                
## 3348                                              19
## 3349                                                
## 3350                                                
## 3351                                              19
## 3352                                                
## 3353                                              16
## 3354                                              16
## 3355                                              19
## 3356                                                
## 3357                                                
## 3358                                                
## 3359                                                
## 3360                                              19
## 3361                                                
## 3362                                               5
## 3363                                                
## 3364                                                
## 3365                                                
## 3366                                               5
## 3367                                                
## 3368                                                
## 3369                                                
## 3370                                               5
## 3371                                                
## 3372                                                
## 3373                                                
## 3374                                               5
## 3375                                                
## 3376                                              19
## 3377                                              16
## 3378                                              16
## 3379                                                
## 3380                                                
## 3381                                                
## 3382                                               5
## 3383                                              19
## 3384                                                
## 3385                                                
## 3386                                                
## 3387                                              16
## 3388                                                
## 3389                                                
## 3390                                                
## 3391                                                
## 3392                                                
## 3393                                              16
## 3394                                                
## 3395                                                
## 3396                                               5
## 3397                                                
## 3398                                              19
## 3399                                                
## 3400                                                
## 3401                                               5
## 3402                                               5
## 3403                                              19
## 3404                                                
## 3405                                              19
## 3406                                                
## 3407                                                
## 3408                                                
## 3409                                               5
## 3410                                                
## 3411                                                
## 3412                                                
## 3413                                                
## 3414                                               5
## 3415                                                
## 3416                                               5
## 3417                                                
## 3418                                                
## 3419                                                
## 3420                                                
## 3421                                                
## 3422                                                
## 3423                                               5
## 3424                                                
## 3425                                                
## 3426                                               5
## 3427                                                
## 3428                                               5
## 3429                                                
## 3430                                                
## 3431                                                
## 3432                                                
## 3433                                                
## 3434                                                
## 3435                                                
## 3436                                                
## 3437                                                
## 3438                                                
## 3439                                                
## 3440                                               5
## 3441                                                
## 3442                                                
## 3443                                              19
## 3444                                                
## 3445                                                
## 3446                                              19
## 3447                                                
## 3448                                              19
##      Efficient_use_of_medical_imaging_national_comparison
## 1                                           Not Available
## 2                                           Not Available
## 3                                           Not Available
## 4                                           Not Available
## 5                                           Not Available
## 6                                           Not Available
## 7                                           Not Available
## 8                                           Not Available
## 9                                           Not Available
## 10                                          Not Available
## 11                                          Not Available
## 12                           Same as the national average
## 13                                          Not Available
## 14                                          Not Available
## 15                                          Not Available
## 16                                          Not Available
## 17                                          Not Available
## 18                                          Not Available
## 19                                          Not Available
## 20                                          Not Available
## 21                                          Not Available
## 22                                          Not Available
## 23                                          Not Available
## 24                                          Not Available
## 25                                          Not Available
## 26                                          Not Available
## 27                                          Not Available
## 28                                          Not Available
## 29                                          Not Available
## 30                                          Not Available
## 31                                          Not Available
## 32                                          Not Available
## 33                                          Not Available
## 34                                          Not Available
## 35                                          Not Available
## 36                                          Not Available
## 37                                          Not Available
## 38                                          Not Available
## 39                                          Not Available
## 40                                          Not Available
## 41                                          Not Available
## 42                                          Not Available
## 43                           Same as the national average
## 44                                          Not Available
## 45                                          Not Available
## 46                                          Not Available
## 47                                          Not Available
## 48                                          Not Available
## 49                                          Not Available
## 50                                          Not Available
## 51                                          Not Available
## 52                                          Not Available
## 53                                          Not Available
## 54                                          Not Available
## 55                                          Not Available
## 56                                          Not Available
## 57                                          Not Available
## 58                                          Not Available
## 59                           Same as the national average
## 60                           Same as the national average
## 61                                          Not Available
## 62                                          Not Available
## 63                                          Not Available
## 64                                          Not Available
## 65                           Same as the national average
## 66                                          Not Available
## 67                           Same as the national average
## 68                                          Not Available
## 69                           Same as the national average
## 70                             Below the national average
## 71                             Above the national average
## 72                             Below the national average
## 73                           Same as the national average
## 74                           Same as the national average
## 75                                          Not Available
## 76                           Same as the national average
## 77                                          Not Available
## 78                           Same as the national average
## 79                                          Not Available
## 80                           Same as the national average
## 81                                          Not Available
## 82                                          Not Available
## 83                                          Not Available
## 84                           Same as the national average
## 85                                          Not Available
## 86                                          Not Available
## 87                             Above the national average
## 88                                          Not Available
## 89                                          Not Available
## 90                           Same as the national average
## 91                           Same as the national average
## 92                           Same as the national average
## 93                             Below the national average
## 94                           Same as the national average
## 95                                          Not Available
## 96                                          Not Available
## 97                             Above the national average
## 98                                          Not Available
## 99                           Same as the national average
## 100                          Same as the national average
## 101                                         Not Available
## 102                          Same as the national average
## 103                          Same as the national average
## 104                          Same as the national average
## 105                          Same as the national average
## 106                          Same as the national average
## 107                            Above the national average
## 108                          Same as the national average
## 109                          Same as the national average
## 110                                         Not Available
## 111                          Same as the national average
## 112                                         Not Available
## 113                            Above the national average
## 114                          Same as the national average
## 115                          Same as the national average
## 116                                         Not Available
## 117                                         Not Available
## 118                                         Not Available
## 119                                         Not Available
## 120                                         Not Available
## 121                          Same as the national average
## 122                                         Not Available
## 123                            Above the national average
## 124                          Same as the national average
## 125                          Same as the national average
## 126                                         Not Available
## 127                                         Not Available
## 128                          Same as the national average
## 129                                         Not Available
## 130                          Same as the national average
## 131                          Same as the national average
## 132                                         Not Available
## 133                                         Not Available
## 134                                         Not Available
## 135                                         Not Available
## 136                                         Not Available
## 137                                         Not Available
## 138                                         Not Available
## 139                            Below the national average
## 140                            Above the national average
## 141                                         Not Available
## 142                                         Not Available
## 143                                         Not Available
## 144                                         Not Available
## 145                            Above the national average
## 146                                         Not Available
## 147                                         Not Available
## 148                          Same as the national average
## 149                                         Not Available
## 150                                         Not Available
## 151                          Same as the national average
## 152                                         Not Available
## 153                          Same as the national average
## 154                          Same as the national average
## 155                            Above the national average
## 156                                         Not Available
## 157                                         Not Available
## 158                                         Not Available
## 159                                         Not Available
## 160                          Same as the national average
## 161                                         Not Available
## 162                          Same as the national average
## 163                          Same as the national average
## 164                            Above the national average
## 165                          Same as the national average
## 166                                         Not Available
## 167                          Same as the national average
## 168                            Above the national average
## 169                                         Not Available
## 170                          Same as the national average
## 171                                         Not Available
## 172                          Same as the national average
## 173                                         Not Available
## 174                            Above the national average
## 175                                         Not Available
## 176                          Same as the national average
## 177                                         Not Available
## 178                            Below the national average
## 179                                         Not Available
## 180                            Below the national average
## 181                                         Not Available
## 182                          Same as the national average
## 183                                         Not Available
## 184                                         Not Available
## 185                          Same as the national average
## 186                          Same as the national average
## 187                          Same as the national average
## 188                          Same as the national average
## 189                            Above the national average
## 190                                         Not Available
## 191                                         Not Available
## 192                          Same as the national average
## 193                                         Not Available
## 194                            Below the national average
## 195                                         Not Available
## 196                          Same as the national average
## 197                                         Not Available
## 198                            Above the national average
## 199                            Below the national average
## 200                                         Not Available
## 201                                         Not Available
## 202                            Below the national average
## 203                                         Not Available
## 204                          Same as the national average
## 205                                         Not Available
## 206                                         Not Available
## 207                          Same as the national average
## 208                          Same as the national average
## 209                          Same as the national average
## 210                          Same as the national average
## 211                                         Not Available
## 212                                         Not Available
## 213                                         Not Available
## 214                            Below the national average
## 215                                         Not Available
## 216                                         Not Available
## 217                                         Not Available
## 218                            Below the national average
## 219                                         Not Available
## 220                                         Not Available
## 221                            Above the national average
## 222                          Same as the national average
## 223                            Below the national average
## 224                                         Not Available
## 225                            Above the national average
## 226                                         Not Available
## 227                                         Not Available
## 228                          Same as the national average
## 229                          Same as the national average
## 230                                         Not Available
## 231                                         Not Available
## 232                          Same as the national average
## 233                                         Not Available
## 234                          Same as the national average
## 235                                         Not Available
## 236                          Same as the national average
## 237                          Same as the national average
## 238                          Same as the national average
## 239                          Same as the national average
## 240                                         Not Available
## 241                          Same as the national average
## 242                            Below the national average
## 243                            Below the national average
## 244                          Same as the national average
## 245                          Same as the national average
## 246                          Same as the national average
## 247                          Same as the national average
## 248                                         Not Available
## 249                                         Not Available
## 250                                         Not Available
## 251                          Same as the national average
## 252                                         Not Available
## 253                            Above the national average
## 254                                         Not Available
## 255                          Same as the national average
## 256                                         Not Available
## 257                          Same as the national average
## 258                          Same as the national average
## 259                            Below the national average
## 260                            Above the national average
## 261                                         Not Available
## 262                                         Not Available
## 263                            Below the national average
## 264                          Same as the national average
## 265                          Same as the national average
## 266                                         Not Available
## 267                          Same as the national average
## 268                                         Not Available
## 269                                         Not Available
## 270                          Same as the national average
## 271                          Same as the national average
## 272                                         Not Available
## 273                                         Not Available
## 274                                         Not Available
## 275                                         Not Available
## 276                            Below the national average
## 277                                         Not Available
## 278                                         Not Available
## 279                          Same as the national average
## 280                            Below the national average
## 281                                         Not Available
## 282                          Same as the national average
## 283                          Same as the national average
## 284                                         Not Available
## 285                                         Not Available
## 286                                         Not Available
## 287                                         Not Available
## 288                          Same as the national average
## 289                                         Not Available
## 290                          Same as the national average
## 291                                         Not Available
## 292                                         Not Available
## 293                          Same as the national average
## 294                                         Not Available
## 295                          Same as the national average
## 296                                         Not Available
## 297                          Same as the national average
## 298                          Same as the national average
## 299                                         Not Available
## 300                          Same as the national average
## 301                                         Not Available
## 302                          Same as the national average
## 303                          Same as the national average
## 304                                         Not Available
## 305                                         Not Available
## 306                                         Not Available
## 307                                         Not Available
## 308                                         Not Available
## 309                                         Not Available
## 310                                         Not Available
## 311                          Same as the national average
## 312                          Same as the national average
## 313                            Below the national average
## 314                          Same as the national average
## 315                                         Not Available
## 316                          Same as the national average
## 317                          Same as the national average
## 318                          Same as the national average
## 319                                         Not Available
## 320                                         Not Available
## 321                            Below the national average
## 322                          Same as the national average
## 323                          Same as the national average
## 324                                         Not Available
## 325                            Below the national average
## 326                                         Not Available
## 327                          Same as the national average
## 328                                         Not Available
## 329                          Same as the national average
## 330                                         Not Available
## 331                          Same as the national average
## 332                          Same as the national average
## 333                          Same as the national average
## 334                          Same as the national average
## 335                          Same as the national average
## 336                                         Not Available
## 337                          Same as the national average
## 338                                         Not Available
## 339                                         Not Available
## 340                            Below the national average
## 341                            Above the national average
## 342                                         Not Available
## 343                          Same as the national average
## 344                                         Not Available
## 345                          Same as the national average
## 346                          Same as the national average
## 347                                         Not Available
## 348                                         Not Available
## 349                          Same as the national average
## 350                          Same as the national average
## 351                                         Not Available
## 352                            Above the national average
## 353                                         Not Available
## 354                          Same as the national average
## 355                          Same as the national average
## 356                                         Not Available
## 357                          Same as the national average
## 358                          Same as the national average
## 359                          Same as the national average
## 360                                         Not Available
## 361                                         Not Available
## 362                            Above the national average
## 363                          Same as the national average
## 364                            Below the national average
## 365                          Same as the national average
## 366                          Same as the national average
## 367                            Below the national average
## 368                            Above the national average
## 369                                         Not Available
## 370                          Same as the national average
## 371                            Below the national average
## 372                                         Not Available
## 373                          Same as the national average
## 374                            Above the national average
## 375                                         Not Available
## 376                                         Not Available
## 377                                         Not Available
## 378                          Same as the national average
## 379                                         Not Available
## 380                          Same as the national average
## 381                          Same as the national average
## 382                                         Not Available
## 383                            Below the national average
## 384                                         Not Available
## 385                                         Not Available
## 386                                         Not Available
## 387                            Below the national average
## 388                                         Not Available
## 389                            Above the national average
## 390                            Below the national average
## 391                          Same as the national average
## 392                          Same as the national average
## 393                                         Not Available
## 394                          Same as the national average
## 395                          Same as the national average
## 396                                         Not Available
## 397                                         Not Available
## 398                          Same as the national average
## 399                          Same as the national average
## 400                            Below the national average
## 401                                         Not Available
## 402                                         Not Available
## 403                                         Not Available
## 404                            Above the national average
## 405                                         Not Available
## 406                          Same as the national average
## 407                                         Not Available
## 408                                         Not Available
## 409                                         Not Available
## 410                                         Not Available
## 411                          Same as the national average
## 412                          Same as the national average
## 413                          Same as the national average
## 414                            Below the national average
## 415                                         Not Available
## 416                          Same as the national average
## 417                                         Not Available
## 418                                         Not Available
## 419                          Same as the national average
## 420                                         Not Available
## 421                                         Not Available
## 422                                         Not Available
## 423                          Same as the national average
## 424                                         Not Available
## 425                          Same as the national average
## 426                          Same as the national average
## 427                                         Not Available
## 428                                         Not Available
## 429                                         Not Available
## 430                          Same as the national average
## 431                                         Not Available
## 432                                         Not Available
## 433                          Same as the national average
## 434                          Same as the national average
## 435                                         Not Available
## 436                          Same as the national average
## 437                          Same as the national average
## 438                          Same as the national average
## 439                            Below the national average
## 440                                         Not Available
## 441                                         Not Available
## 442                                         Not Available
## 443                                         Not Available
## 444                          Same as the national average
## 445                            Below the national average
## 446                          Same as the national average
## 447                          Same as the national average
## 448                                         Not Available
## 449                            Above the national average
## 450                            Above the national average
## 451                                         Not Available
## 452                                         Not Available
## 453                          Same as the national average
## 454                            Below the national average
## 455                          Same as the national average
## 456                            Below the national average
## 457                                         Not Available
## 458                                         Not Available
## 459                          Same as the national average
## 460                            Below the national average
## 461                            Above the national average
## 462                          Same as the national average
## 463                          Same as the national average
## 464                          Same as the national average
## 465                            Below the national average
## 466                          Same as the national average
## 467                            Above the national average
## 468                          Same as the national average
## 469                                         Not Available
## 470                            Below the national average
## 471                          Same as the national average
## 472                                         Not Available
## 473                          Same as the national average
## 474                          Same as the national average
## 475                                         Not Available
## 476                                         Not Available
## 477                            Below the national average
## 478                          Same as the national average
## 479                            Above the national average
## 480                            Above the national average
## 481                            Below the national average
## 482                          Same as the national average
## 483                            Above the national average
## 484                                         Not Available
## 485                            Above the national average
## 486                                         Not Available
## 487                          Same as the national average
## 488                            Above the national average
## 489                          Same as the national average
## 490                                         Not Available
## 491                            Below the national average
## 492                          Same as the national average
## 493                          Same as the national average
## 494                          Same as the national average
## 495                            Below the national average
## 496                          Same as the national average
## 497                          Same as the national average
## 498                            Above the national average
## 499                                         Not Available
## 500                                         Not Available
## 501                                         Not Available
## 502                                         Not Available
## 503                          Same as the national average
## 504                            Above the national average
## 505                          Same as the national average
## 506                                         Not Available
## 507                                         Not Available
## 508                                         Not Available
## 509                                         Not Available
## 510                                         Not Available
## 511                                         Not Available
## 512                          Same as the national average
## 513                          Same as the national average
## 514                          Same as the national average
## 515                          Same as the national average
## 516                          Same as the national average
## 517                                         Not Available
## 518                          Same as the national average
## 519                          Same as the national average
## 520                          Same as the national average
## 521                          Same as the national average
## 522                          Same as the national average
## 523                            Above the national average
## 524                          Same as the national average
## 525                          Same as the national average
## 526                            Below the national average
## 527                          Same as the national average
## 528                                         Not Available
## 529                            Below the national average
## 530                          Same as the national average
## 531                                         Not Available
## 532                                         Not Available
## 533                          Same as the national average
## 534                          Same as the national average
## 535                                         Not Available
## 536                          Same as the national average
## 537                          Same as the national average
## 538                                         Not Available
## 539                          Same as the national average
## 540                          Same as the national average
## 541                                         Not Available
## 542                                         Not Available
## 543                                         Not Available
## 544                                         Not Available
## 545                          Same as the national average
## 546                            Below the national average
## 547                          Same as the national average
## 548                                         Not Available
## 549                            Above the national average
## 550                          Same as the national average
## 551                          Same as the national average
## 552                          Same as the national average
## 553                                         Not Available
## 554                                         Not Available
## 555                            Above the national average
## 556                            Above the national average
## 557                          Same as the national average
## 558                          Same as the national average
## 559                            Above the national average
## 560                          Same as the national average
## 561                          Same as the national average
## 562                          Same as the national average
## 563                                         Not Available
## 564                                         Not Available
## 565                          Same as the national average
## 566                            Above the national average
## 567                                         Not Available
## 568                                         Not Available
## 569                                         Not Available
## 570                                         Not Available
## 571                          Same as the national average
## 572                          Same as the national average
## 573                            Above the national average
## 574                            Below the national average
## 575                                         Not Available
## 576                                         Not Available
## 577                            Above the national average
## 578                          Same as the national average
## 579                                         Not Available
## 580                            Above the national average
## 581                                         Not Available
## 582                            Above the national average
## 583                            Above the national average
## 584                            Above the national average
## 585                          Same as the national average
## 586                            Below the national average
## 587                                         Not Available
## 588                          Same as the national average
## 589                                         Not Available
## 590                                         Not Available
## 591                            Above the national average
## 592                                         Not Available
## 593                                         Not Available
## 594                                         Not Available
## 595                          Same as the national average
## 596                                         Not Available
## 597                          Same as the national average
## 598                                         Not Available
## 599                                         Not Available
## 600                          Same as the national average
## 601                          Same as the national average
## 602                            Above the national average
## 603                          Same as the national average
## 604                          Same as the national average
## 605                                         Not Available
## 606                          Same as the national average
## 607                                         Not Available
## 608                          Same as the national average
## 609                                         Not Available
## 610                                         Not Available
## 611                                         Not Available
## 612                                         Not Available
## 613                          Same as the national average
## 614                          Same as the national average
## 615                          Same as the national average
## 616                          Same as the national average
## 617                                         Not Available
## 618                          Same as the national average
## 619                          Same as the national average
## 620                          Same as the national average
## 621                                         Not Available
## 622                            Below the national average
## 623                                         Not Available
## 624                                         Not Available
## 625                          Same as the national average
## 626                          Same as the national average
## 627                          Same as the national average
## 628                                         Not Available
## 629                            Above the national average
## 630                                         Not Available
## 631                                         Not Available
## 632                            Above the national average
## 633                                         Not Available
## 634                          Same as the national average
## 635                            Above the national average
## 636                                         Not Available
## 637                                         Not Available
## 638                                         Not Available
## 639                          Same as the national average
## 640                          Same as the national average
## 641                                         Not Available
## 642                          Same as the national average
## 643                            Above the national average
## 644                            Below the national average
## 645                                         Not Available
## 646                                         Not Available
## 647                                         Not Available
## 648                          Same as the national average
## 649                                         Not Available
## 650                          Same as the national average
## 651                                         Not Available
## 652                                         Not Available
## 653                          Same as the national average
## 654                            Above the national average
## 655                            Below the national average
## 656                                         Not Available
## 657                          Same as the national average
## 658                            Above the national average
## 659                                         Not Available
## 660                          Same as the national average
## 661                                         Not Available
## 662                            Below the national average
## 663                          Same as the national average
## 664                                         Not Available
## 665                                         Not Available
## 666                          Same as the national average
## 667                          Same as the national average
## 668                                         Not Available
## 669                                         Not Available
## 670                            Below the national average
## 671                          Same as the national average
## 672                            Below the national average
## 673                                         Not Available
## 674                                         Not Available
## 675                          Same as the national average
## 676                          Same as the national average
## 677                                         Not Available
## 678                            Above the national average
## 679                                         Not Available
## 680                                         Not Available
## 681                          Same as the national average
## 682                          Same as the national average
## 683                          Same as the national average
## 684                                         Not Available
## 685                          Same as the national average
## 686                          Same as the national average
## 687                          Same as the national average
## 688                                         Not Available
## 689                            Above the national average
## 690                          Same as the national average
## 691                          Same as the national average
## 692                          Same as the national average
## 693                                         Not Available
## 694                          Same as the national average
## 695                          Same as the national average
## 696                                         Not Available
## 697                                         Not Available
## 698                          Same as the national average
## 699                          Same as the national average
## 700                          Same as the national average
## 701                          Same as the national average
## 702                                         Not Available
## 703                                         Not Available
## 704                          Same as the national average
## 705                          Same as the national average
## 706                                         Not Available
## 707                          Same as the national average
## 708                                         Not Available
## 709                                         Not Available
## 710                                         Not Available
## 711                                         Not Available
## 712                          Same as the national average
## 713                          Same as the national average
## 714                                         Not Available
## 715                          Same as the national average
## 716                          Same as the national average
## 717                          Same as the national average
## 718                                         Not Available
## 719                          Same as the national average
## 720                                         Not Available
## 721                            Above the national average
## 722                                         Not Available
## 723                                         Not Available
## 724                                         Not Available
## 725                          Same as the national average
## 726                                         Not Available
## 727                            Below the national average
## 728                          Same as the national average
## 729                            Above the national average
## 730                            Below the national average
## 731                          Same as the national average
## 732                          Same as the national average
## 733                            Below the national average
## 734                                         Not Available
## 735                          Same as the national average
## 736                          Same as the national average
## 737                          Same as the national average
## 738                          Same as the national average
## 739                          Same as the national average
## 740                                         Not Available
## 741                                         Not Available
## 742                          Same as the national average
## 743                                         Not Available
## 744                            Below the national average
## 745                                         Not Available
## 746                                         Not Available
## 747                          Same as the national average
## 748                          Same as the national average
## 749                                         Not Available
## 750                          Same as the national average
## 751                                         Not Available
## 752                          Same as the national average
## 753                            Above the national average
## 754                          Same as the national average
## 755                          Same as the national average
## 756                                         Not Available
## 757                            Above the national average
## 758                          Same as the national average
## 759                                         Not Available
## 760                          Same as the national average
## 761                                         Not Available
## 762                                         Not Available
## 763                                         Not Available
## 764                                         Not Available
## 765                          Same as the national average
## 766                                         Not Available
## 767                            Below the national average
## 768                                         Not Available
## 769                                         Not Available
## 770                          Same as the national average
## 771                                         Not Available
## 772                          Same as the national average
## 773                          Same as the national average
## 774                          Same as the national average
## 775                          Same as the national average
## 776                            Below the national average
## 777                          Same as the national average
## 778                          Same as the national average
## 779                          Same as the national average
## 780                          Same as the national average
## 781                                         Not Available
## 782                          Same as the national average
## 783                                         Not Available
## 784                          Same as the national average
## 785                                         Not Available
## 786                            Above the national average
## 787                          Same as the national average
## 788                          Same as the national average
## 789                          Same as the national average
## 790                                         Not Available
## 791                                         Not Available
## 792                                         Not Available
## 793                                         Not Available
## 794                            Below the national average
## 795                            Below the national average
## 796                          Same as the national average
## 797                                         Not Available
## 798                                         Not Available
## 799                          Same as the national average
## 800                          Same as the national average
## 801                            Above the national average
## 802                          Same as the national average
## 803                                         Not Available
## 804                                         Not Available
## 805                          Same as the national average
## 806                          Same as the national average
## 807                                         Not Available
## 808                          Same as the national average
## 809                                         Not Available
## 810                                         Not Available
## 811                          Same as the national average
## 812                            Below the national average
## 813                                         Not Available
## 814                          Same as the national average
## 815                                         Not Available
## 816                                         Not Available
## 817                                         Not Available
## 818                          Same as the national average
## 819                          Same as the national average
## 820                          Same as the national average
## 821                            Below the national average
## 822                          Same as the national average
## 823                                         Not Available
## 824                          Same as the national average
## 825                                         Not Available
## 826                            Below the national average
## 827                          Same as the national average
## 828                          Same as the national average
## 829                          Same as the national average
## 830                          Same as the national average
## 831                                         Not Available
## 832                                         Not Available
## 833                            Below the national average
## 834                          Same as the national average
## 835                                         Not Available
## 836                          Same as the national average
## 837                                         Not Available
## 838                          Same as the national average
## 839                          Same as the national average
## 840                                         Not Available
## 841                          Same as the national average
## 842                                         Not Available
## 843                                         Not Available
## 844                            Below the national average
## 845                                         Not Available
## 846                          Same as the national average
## 847                          Same as the national average
## 848                                         Not Available
## 849                                         Not Available
## 850                                         Not Available
## 851                          Same as the national average
## 852                          Same as the national average
## 853                                         Not Available
## 854                          Same as the national average
## 855                          Same as the national average
## 856                                         Not Available
## 857                                         Not Available
## 858                          Same as the national average
## 859                                         Not Available
## 860                                         Not Available
## 861                          Same as the national average
## 862                                         Not Available
## 863                          Same as the national average
## 864                                         Not Available
## 865                                         Not Available
## 866                            Above the national average
## 867                            Above the national average
## 868                            Above the national average
## 869                          Same as the national average
## 870                          Same as the national average
## 871                          Same as the national average
## 872                            Below the national average
## 873                          Same as the national average
## 874                          Same as the national average
## 875                            Above the national average
## 876                          Same as the national average
## 877                                         Not Available
## 878                                         Not Available
## 879                          Same as the national average
## 880                            Above the national average
## 881                            Above the national average
## 882                                         Not Available
## 883                          Same as the national average
## 884                          Same as the national average
## 885                            Above the national average
## 886                          Same as the national average
## 887                          Same as the national average
## 888                          Same as the national average
## 889                            Below the national average
## 890                                         Not Available
## 891                          Same as the national average
## 892                          Same as the national average
## 893                          Same as the national average
## 894                          Same as the national average
## 895                          Same as the national average
## 896                                         Not Available
## 897                          Same as the national average
## 898                                         Not Available
## 899                          Same as the national average
## 900                                         Not Available
## 901                          Same as the national average
## 902                          Same as the national average
## 903                                         Not Available
## 904                          Same as the national average
## 905                                         Not Available
## 906                                         Not Available
## 907                          Same as the national average
## 908                          Same as the national average
## 909                                         Not Available
## 910                          Same as the national average
## 911                            Below the national average
## 912                                         Not Available
## 913                                         Not Available
## 914                                         Not Available
## 915                                         Not Available
## 916                                         Not Available
## 917                                         Not Available
## 918                            Below the national average
## 919                          Same as the national average
## 920                                         Not Available
## 921                                         Not Available
## 922                            Below the national average
## 923                          Same as the national average
## 924                            Below the national average
## 925                          Same as the national average
## 926                            Below the national average
## 927                          Same as the national average
## 928                          Same as the national average
## 929                                         Not Available
## 930                            Above the national average
## 931                                         Not Available
## 932                                         Not Available
## 933                                         Not Available
## 934                          Same as the national average
## 935                          Same as the national average
## 936                                         Not Available
## 937                          Same as the national average
## 938                                         Not Available
## 939                          Same as the national average
## 940                            Above the national average
## 941                                         Not Available
## 942                          Same as the national average
## 943                                         Not Available
## 944                          Same as the national average
## 945                            Below the national average
## 946                          Same as the national average
## 947                                         Not Available
## 948                                         Not Available
## 949                                         Not Available
## 950                            Above the national average
## 951                          Same as the national average
## 952                          Same as the national average
## 953                                         Not Available
## 954                          Same as the national average
## 955                          Same as the national average
## 956                          Same as the national average
## 957                            Below the national average
## 958                                         Not Available
## 959                            Above the national average
## 960                            Above the national average
## 961                          Same as the national average
## 962                            Below the national average
## 963                                         Not Available
## 964                                         Not Available
## 965                          Same as the national average
## 966                          Same as the national average
## 967                            Above the national average
## 968                          Same as the national average
## 969                          Same as the national average
## 970                            Below the national average
## 971                          Same as the national average
## 972                                         Not Available
## 973                                         Not Available
## 974                            Below the national average
## 975                                         Not Available
## 976                                         Not Available
## 977                          Same as the national average
## 978                          Same as the national average
## 979                                         Not Available
## 980                                         Not Available
## 981                            Above the national average
## 982                                         Not Available
## 983                          Same as the national average
## 984                            Below the national average
## 985                            Above the national average
## 986                                         Not Available
## 987                          Same as the national average
## 988                                         Not Available
## 989                            Below the national average
## 990                                         Not Available
## 991                            Above the national average
## 992                                         Not Available
## 993                                         Not Available
## 994                            Above the national average
## 995                          Same as the national average
## 996                            Above the national average
## 997                                         Not Available
## 998                          Same as the national average
## 999                          Same as the national average
## 1000                                        Not Available
## 1001                                        Not Available
## 1002                                        Not Available
## 1003                         Same as the national average
## 1004                         Same as the national average
## 1005                                        Not Available
## 1006                         Same as the national average
## 1007                           Above the national average
## 1008                           Above the national average
## 1009                                        Not Available
## 1010                           Below the national average
## 1011                                        Not Available
## 1012                                        Not Available
## 1013                         Same as the national average
## 1014                           Below the national average
## 1015                                        Not Available
## 1016                                        Not Available
## 1017                                        Not Available
## 1018                                        Not Available
## 1019                           Below the national average
## 1020                                        Not Available
## 1021                                        Not Available
## 1022                         Same as the national average
## 1023                         Same as the national average
## 1024                           Below the national average
## 1025                                        Not Available
## 1026                                        Not Available
## 1027                                        Not Available
## 1028                                        Not Available
## 1029                                        Not Available
## 1030                         Same as the national average
## 1031                                        Not Available
## 1032                         Same as the national average
## 1033                         Same as the national average
## 1034                         Same as the national average
## 1035                                        Not Available
## 1036                                        Not Available
## 1037                                        Not Available
## 1038                         Same as the national average
## 1039                                        Not Available
## 1040                         Same as the national average
## 1041                                        Not Available
## 1042                                        Not Available
## 1043                         Same as the national average
## 1044                           Below the national average
## 1045                         Same as the national average
## 1046                         Same as the national average
## 1047                         Same as the national average
## 1048                                        Not Available
## 1049                                        Not Available
## 1050                                        Not Available
## 1051                                        Not Available
## 1052                                        Not Available
## 1053                           Above the national average
## 1054                         Same as the national average
## 1055                           Above the national average
## 1056                         Same as the national average
## 1057                         Same as the national average
## 1058                         Same as the national average
## 1059                                        Not Available
## 1060                                        Not Available
## 1061                                        Not Available
## 1062                         Same as the national average
## 1063                           Above the national average
## 1064                         Same as the national average
## 1065                         Same as the national average
## 1066                         Same as the national average
## 1067                                        Not Available
## 1068                                        Not Available
## 1069                         Same as the national average
## 1070                         Same as the national average
## 1071                         Same as the national average
## 1072                                        Not Available
## 1073                         Same as the national average
## 1074                                        Not Available
## 1075                                        Not Available
## 1076                                        Not Available
## 1077                         Same as the national average
## 1078                         Same as the national average
## 1079                         Same as the national average
## 1080                         Same as the national average
## 1081                         Same as the national average
## 1082                         Same as the national average
## 1083                         Same as the national average
## 1084                                        Not Available
## 1085                         Same as the national average
## 1086                         Same as the national average
## 1087                                        Not Available
## 1088                         Same as the national average
## 1089                                        Not Available
## 1090                                        Not Available
## 1091                         Same as the national average
## 1092                         Same as the national average
## 1093                         Same as the national average
## 1094                         Same as the national average
## 1095                                        Not Available
## 1096                         Same as the national average
## 1097                         Same as the national average
## 1098                         Same as the national average
## 1099                         Same as the national average
## 1100                                        Not Available
## 1101                           Below the national average
## 1102                         Same as the national average
## 1103                                        Not Available
## 1104                           Above the national average
## 1105                           Below the national average
## 1106                                        Not Available
## 1107                                        Not Available
## 1108                         Same as the national average
## 1109                                        Not Available
## 1110                                        Not Available
## 1111                                        Not Available
## 1112                                        Not Available
## 1113                                        Not Available
## 1114                         Same as the national average
## 1115                         Same as the national average
## 1116                         Same as the national average
## 1117                                        Not Available
## 1118                                        Not Available
## 1119                         Same as the national average
## 1120                                        Not Available
## 1121                           Below the national average
## 1122                           Above the national average
## 1123                         Same as the national average
## 1124                                        Not Available
## 1125                         Same as the national average
## 1126                         Same as the national average
## 1127                         Same as the national average
## 1128                         Same as the national average
## 1129                           Below the national average
## 1130                                        Not Available
## 1131                         Same as the national average
## 1132                         Same as the national average
## 1133                                        Not Available
## 1134                         Same as the national average
## 1135                         Same as the national average
## 1136                           Below the national average
## 1137                                        Not Available
## 1138                           Above the national average
## 1139                                        Not Available
## 1140                         Same as the national average
## 1141                                        Not Available
## 1142                         Same as the national average
## 1143                                        Not Available
## 1144                                        Not Available
## 1145                                        Not Available
## 1146                                        Not Available
## 1147                                        Not Available
## 1148                                        Not Available
## 1149                                        Not Available
## 1150                                        Not Available
## 1151                         Same as the national average
## 1152                                        Not Available
## 1153                                        Not Available
## 1154                                        Not Available
## 1155                         Same as the national average
## 1156                                        Not Available
## 1157                           Above the national average
## 1158                         Same as the national average
## 1159                           Below the national average
## 1160                         Same as the national average
## 1161                                        Not Available
## 1162                                        Not Available
## 1163                           Below the national average
## 1164                           Below the national average
## 1165                                        Not Available
## 1166                         Same as the national average
## 1167                                        Not Available
## 1168                                        Not Available
## 1169                                        Not Available
## 1170                           Below the national average
## 1171                                        Not Available
## 1172                           Below the national average
## 1173                           Below the national average
## 1174                                        Not Available
## 1175                                        Not Available
## 1176                         Same as the national average
## 1177                         Same as the national average
## 1178                                        Not Available
## 1179                         Same as the national average
## 1180                                        Not Available
## 1181                                        Not Available
## 1182                         Same as the national average
## 1183                         Same as the national average
## 1184                                        Not Available
## 1185                                        Not Available
## 1186                         Same as the national average
## 1187                         Same as the national average
## 1188                                        Not Available
## 1189                         Same as the national average
## 1190                         Same as the national average
## 1191                           Below the national average
## 1192                         Same as the national average
## 1193                         Same as the national average
## 1194                                        Not Available
## 1195                                        Not Available
## 1196                         Same as the national average
## 1197                                        Not Available
## 1198                         Same as the national average
## 1199                                        Not Available
## 1200                                        Not Available
## 1201                                        Not Available
## 1202                                        Not Available
## 1203                         Same as the national average
## 1204                                        Not Available
## 1205                           Above the national average
## 1206                         Same as the national average
## 1207                                        Not Available
## 1208                                        Not Available
## 1209                           Above the national average
## 1210                           Below the national average
## 1211                         Same as the national average
## 1212                                        Not Available
## 1213                                        Not Available
## 1214                         Same as the national average
## 1215                         Same as the national average
## 1216                         Same as the national average
## 1217                         Same as the national average
## 1218                         Same as the national average
## 1219                                        Not Available
## 1220                         Same as the national average
## 1221                                        Not Available
## 1222                                        Not Available
## 1223                                        Not Available
## 1224                           Below the national average
## 1225                         Same as the national average
## 1226                         Same as the national average
## 1227                         Same as the national average
## 1228                         Same as the national average
## 1229                         Same as the national average
## 1230                                        Not Available
## 1231                                        Not Available
## 1232                                        Not Available
## 1233                                        Not Available
## 1234                                        Not Available
## 1235                                        Not Available
## 1236                         Same as the national average
## 1237                                        Not Available
## 1238                                        Not Available
## 1239                         Same as the national average
## 1240                           Below the national average
## 1241                                        Not Available
## 1242                                        Not Available
## 1243                         Same as the national average
## 1244                           Below the national average
## 1245                         Same as the national average
## 1246                           Above the national average
## 1247                                        Not Available
## 1248                                        Not Available
## 1249                         Same as the national average
## 1250                         Same as the national average
## 1251                                        Not Available
## 1252                                        Not Available
## 1253                                        Not Available
## 1254                                        Not Available
## 1255                                        Not Available
## 1256                         Same as the national average
## 1257                           Below the national average
## 1258                         Same as the national average
## 1259                           Below the national average
## 1260                           Below the national average
## 1261                                        Not Available
## 1262                                        Not Available
## 1263                         Same as the national average
## 1264                                        Not Available
## 1265                         Same as the national average
## 1266                         Same as the national average
## 1267                                        Not Available
## 1268                           Above the national average
## 1269                                        Not Available
## 1270                           Below the national average
## 1271                           Below the national average
## 1272                         Same as the national average
## 1273                         Same as the national average
## 1274                         Same as the national average
## 1275                         Same as the national average
## 1276                                        Not Available
## 1277                         Same as the national average
## 1278                         Same as the national average
## 1279                         Same as the national average
## 1280                         Same as the national average
## 1281                           Below the national average
## 1282                         Same as the national average
## 1283                                        Not Available
## 1284                         Same as the national average
## 1285                         Same as the national average
## 1286                           Below the national average
## 1287                         Same as the national average
## 1288                                        Not Available
## 1289                         Same as the national average
## 1290                                        Not Available
## 1291                           Above the national average
## 1292                           Below the national average
## 1293                                        Not Available
## 1294                                        Not Available
## 1295                                        Not Available
## 1296                           Above the national average
## 1297                         Same as the national average
## 1298                         Same as the national average
## 1299                                        Not Available
## 1300                           Below the national average
## 1301                                        Not Available
## 1302                         Same as the national average
## 1303                                        Not Available
## 1304                                        Not Available
## 1305                         Same as the national average
## 1306                                        Not Available
## 1307                           Below the national average
## 1308                         Same as the national average
## 1309                                        Not Available
## 1310                           Below the national average
## 1311                                        Not Available
## 1312                           Above the national average
## 1313                         Same as the national average
## 1314                         Same as the national average
## 1315                                        Not Available
## 1316                         Same as the national average
## 1317                           Below the national average
## 1318                         Same as the national average
## 1319                           Below the national average
## 1320                         Same as the national average
## 1321                         Same as the national average
## 1322                         Same as the national average
## 1323                         Same as the national average
## 1324                         Same as the national average
## 1325                           Below the national average
## 1326                         Same as the national average
## 1327                                        Not Available
## 1328                         Same as the national average
## 1329                         Same as the national average
## 1330                                        Not Available
## 1331                                        Not Available
## 1332                           Above the national average
## 1333                         Same as the national average
## 1334                           Below the national average
## 1335                         Same as the national average
## 1336                         Same as the national average
## 1337                           Below the national average
## 1338                                        Not Available
## 1339                         Same as the national average
## 1340                                        Not Available
## 1341                                        Not Available
## 1342                                        Not Available
## 1343                                        Not Available
## 1344                                        Not Available
## 1345                         Same as the national average
## 1346                         Same as the national average
## 1347                                        Not Available
## 1348                         Same as the national average
## 1349                                        Not Available
## 1350                           Above the national average
## 1351                         Same as the national average
## 1352                         Same as the national average
## 1353                                        Not Available
## 1354                                        Not Available
## 1355                         Same as the national average
## 1356                                        Not Available
## 1357                                        Not Available
## 1358                         Same as the national average
## 1359                                        Not Available
## 1360                         Same as the national average
## 1361                         Same as the national average
## 1362                         Same as the national average
## 1363                                        Not Available
## 1364                           Above the national average
## 1365                                        Not Available
## 1366                                        Not Available
## 1367                           Below the national average
## 1368                           Above the national average
## 1369                         Same as the national average
## 1370                           Below the national average
## 1371                                        Not Available
## 1372                         Same as the national average
## 1373                         Same as the national average
## 1374                           Below the national average
## 1375                           Above the national average
## 1376                         Same as the national average
## 1377                                        Not Available
## 1378                                        Not Available
## 1379                                        Not Available
## 1380                           Below the national average
## 1381                                        Not Available
## 1382                         Same as the national average
## 1383                                        Not Available
## 1384                                        Not Available
## 1385                         Same as the national average
## 1386                         Same as the national average
## 1387                         Same as the national average
## 1388                           Above the national average
## 1389                         Same as the national average
## 1390                         Same as the national average
## 1391                                        Not Available
## 1392                           Above the national average
## 1393                           Above the national average
## 1394                           Below the national average
## 1395                           Below the national average
## 1396                                        Not Available
## 1397                           Above the national average
## 1398                           Above the national average
## 1399                                        Not Available
## 1400                                        Not Available
## 1401                         Same as the national average
## 1402                                        Not Available
## 1403                                        Not Available
## 1404                         Same as the national average
## 1405                                        Not Available
## 1406                                        Not Available
## 1407                           Below the national average
## 1408                         Same as the national average
## 1409                           Below the national average
## 1410                         Same as the national average
## 1411                         Same as the national average
## 1412                         Same as the national average
## 1413                         Same as the national average
## 1414                                        Not Available
## 1415                                        Not Available
## 1416                         Same as the national average
## 1417                         Same as the national average
## 1418                           Above the national average
## 1419                         Same as the national average
## 1420                                        Not Available
## 1421                         Same as the national average
## 1422                         Same as the national average
## 1423                         Same as the national average
## 1424                           Below the national average
## 1425                         Same as the national average
## 1426                         Same as the national average
## 1427                                        Not Available
## 1428                                        Not Available
## 1429                         Same as the national average
## 1430                                        Not Available
## 1431                                        Not Available
## 1432                         Same as the national average
## 1433                         Same as the national average
## 1434                                        Not Available
## 1435                         Same as the national average
## 1436                                        Not Available
## 1437                           Above the national average
## 1438                         Same as the national average
## 1439                                        Not Available
## 1440                                        Not Available
## 1441                                        Not Available
## 1442                                        Not Available
## 1443                           Above the national average
## 1444                         Same as the national average
## 1445                         Same as the national average
## 1446                           Above the national average
## 1447                         Same as the national average
## 1448                                        Not Available
## 1449                         Same as the national average
## 1450                         Same as the national average
## 1451                           Above the national average
## 1452                         Same as the national average
## 1453                         Same as the national average
## 1454                                        Not Available
## 1455                         Same as the national average
## 1456                         Same as the national average
## 1457                         Same as the national average
## 1458                                        Not Available
## 1459                                        Not Available
## 1460                                        Not Available
## 1461                                        Not Available
## 1462                         Same as the national average
## 1463                                        Not Available
## 1464                         Same as the national average
## 1465                                        Not Available
## 1466                         Same as the national average
## 1467                         Same as the national average
## 1468                           Above the national average
## 1469                                        Not Available
## 1470                           Above the national average
## 1471                           Below the national average
## 1472                         Same as the national average
## 1473                                        Not Available
## 1474                         Same as the national average
## 1475                                        Not Available
## 1476                         Same as the national average
## 1477                         Same as the national average
## 1478                                        Not Available
## 1479                           Above the national average
## 1480                                        Not Available
## 1481                         Same as the national average
## 1482                                        Not Available
## 1483                         Same as the national average
## 1484                         Same as the national average
## 1485                                        Not Available
## 1486                           Above the national average
## 1487                         Same as the national average
## 1488                         Same as the national average
## 1489                                        Not Available
## 1490                           Below the national average
## 1491                         Same as the national average
## 1492                         Same as the national average
## 1493                                        Not Available
## 1494                                        Not Available
## 1495                         Same as the national average
## 1496                                        Not Available
## 1497                         Same as the national average
## 1498                                        Not Available
## 1499                                        Not Available
## 1500                         Same as the national average
## 1501                         Same as the national average
## 1502                         Same as the national average
## 1503                         Same as the national average
## 1504                         Same as the national average
## 1505                           Above the national average
## 1506                           Above the national average
## 1507                         Same as the national average
## 1508                                        Not Available
## 1509                         Same as the national average
## 1510                         Same as the national average
## 1511                         Same as the national average
## 1512                         Same as the national average
## 1513                                        Not Available
## 1514                                        Not Available
## 1515                           Below the national average
## 1516                         Same as the national average
## 1517                           Above the national average
## 1518                           Below the national average
## 1519                         Same as the national average
## 1520                         Same as the national average
## 1521                         Same as the national average
## 1522                         Same as the national average
## 1523                         Same as the national average
## 1524                                        Not Available
## 1525                         Same as the national average
## 1526                           Above the national average
## 1527                                        Not Available
## 1528                         Same as the national average
## 1529                           Below the national average
## 1530                         Same as the national average
## 1531                                        Not Available
## 1532                         Same as the national average
## 1533                         Same as the national average
## 1534                                        Not Available
## 1535                         Same as the national average
## 1536                         Same as the national average
## 1537                           Above the national average
## 1538                           Below the national average
## 1539                                        Not Available
## 1540                           Above the national average
## 1541                         Same as the national average
## 1542                         Same as the national average
## 1543                           Above the national average
## 1544                           Above the national average
## 1545                         Same as the national average
## 1546                         Same as the national average
## 1547                                        Not Available
## 1548                                        Not Available
## 1549                           Above the national average
## 1550                                        Not Available
## 1551                                        Not Available
## 1552                         Same as the national average
## 1553                         Same as the national average
## 1554                                        Not Available
## 1555                                        Not Available
## 1556                                        Not Available
## 1557                           Above the national average
## 1558                                        Not Available
## 1559                           Above the national average
## 1560                         Same as the national average
## 1561                                        Not Available
## 1562                                        Not Available
## 1563                         Same as the national average
## 1564                         Same as the national average
## 1565                         Same as the national average
## 1566                         Same as the national average
## 1567                         Same as the national average
## 1568                                        Not Available
## 1569                         Same as the national average
## 1570                           Above the national average
## 1571                                        Not Available
## 1572                         Same as the national average
## 1573                         Same as the national average
## 1574                                        Not Available
## 1575                           Below the national average
## 1576                         Same as the national average
## 1577                         Same as the national average
## 1578                           Above the national average
## 1579                         Same as the national average
## 1580                         Same as the national average
## 1581                                        Not Available
## 1582                           Above the national average
## 1583                         Same as the national average
## 1584                                        Not Available
## 1585                         Same as the national average
## 1586                         Same as the national average
## 1587                         Same as the national average
## 1588                                        Not Available
## 1589                                        Not Available
## 1590                           Below the national average
## 1591                         Same as the national average
## 1592                                        Not Available
## 1593                           Above the national average
## 1594                         Same as the national average
## 1595                                        Not Available
## 1596                         Same as the national average
## 1597                           Above the national average
## 1598                                        Not Available
## 1599                         Same as the national average
## 1600                                        Not Available
## 1601                           Above the national average
## 1602                                        Not Available
## 1603                         Same as the national average
## 1604                         Same as the national average
## 1605                                        Not Available
## 1606                         Same as the national average
## 1607                                        Not Available
## 1608                           Above the national average
## 1609                         Same as the national average
## 1610                                        Not Available
## 1611                         Same as the national average
## 1612                         Same as the national average
## 1613                                        Not Available
## 1614                         Same as the national average
## 1615                         Same as the national average
## 1616                                        Not Available
## 1617                                        Not Available
## 1618                                        Not Available
## 1619                         Same as the national average
## 1620                                        Not Available
## 1621                           Below the national average
## 1622                         Same as the national average
## 1623                           Below the national average
## 1624                                        Not Available
## 1625                         Same as the national average
## 1626                         Same as the national average
## 1627                         Same as the national average
## 1628                         Same as the national average
## 1629                         Same as the national average
## 1630                         Same as the national average
## 1631                         Same as the national average
## 1632                         Same as the national average
## 1633                         Same as the national average
## 1634                         Same as the national average
## 1635                         Same as the national average
## 1636                                        Not Available
## 1637                           Above the national average
## 1638                         Same as the national average
## 1639                                        Not Available
## 1640                                        Not Available
## 1641                                        Not Available
## 1642                         Same as the national average
## 1643                                        Not Available
## 1644                         Same as the national average
## 1645                         Same as the national average
## 1646                                        Not Available
## 1647                                        Not Available
## 1648                                        Not Available
## 1649                                        Not Available
## 1650                         Same as the national average
## 1651                                        Not Available
## 1652                         Same as the national average
## 1653                         Same as the national average
## 1654                                        Not Available
## 1655                         Same as the national average
## 1656                         Same as the national average
## 1657                                        Not Available
## 1658                         Same as the national average
## 1659                           Below the national average
## 1660                           Above the national average
## 1661                                        Not Available
## 1662                         Same as the national average
## 1663                         Same as the national average
## 1664                           Below the national average
## 1665                         Same as the national average
## 1666                         Same as the national average
## 1667                           Below the national average
## 1668                                        Not Available
## 1669                                        Not Available
## 1670                                        Not Available
## 1671                                        Not Available
## 1672                                        Not Available
## 1673                           Above the national average
## 1674                           Above the national average
## 1675                                        Not Available
## 1676                           Above the national average
## 1677                         Same as the national average
## 1678                           Below the national average
## 1679                                        Not Available
## 1680                           Above the national average
## 1681                         Same as the national average
## 1682                         Same as the national average
## 1683                                        Not Available
## 1684                         Same as the national average
## 1685                                        Not Available
## 1686                         Same as the national average
## 1687                                        Not Available
## 1688                                        Not Available
## 1689                           Above the national average
## 1690                                        Not Available
## 1691                         Same as the national average
## 1692                         Same as the national average
## 1693                                        Not Available
## 1694                                        Not Available
## 1695                                        Not Available
## 1696                           Below the national average
## 1697                                        Not Available
## 1698                                        Not Available
## 1699                         Same as the national average
## 1700                         Same as the national average
## 1701                         Same as the national average
## 1702                                        Not Available
## 1703                         Same as the national average
## 1704                                        Not Available
## 1705                                        Not Available
## 1706                                        Not Available
## 1707                         Same as the national average
## 1708                                        Not Available
## 1709                         Same as the national average
## 1710                         Same as the national average
## 1711                         Same as the national average
## 1712                           Below the national average
## 1713                                        Not Available
## 1714                                        Not Available
## 1715                           Below the national average
## 1716                                        Not Available
## 1717                         Same as the national average
## 1718                                        Not Available
## 1719                         Same as the national average
## 1720                                        Not Available
## 1721                                        Not Available
## 1722                         Same as the national average
## 1723                           Below the national average
## 1724                         Same as the national average
## 1725                                        Not Available
## 1726                         Same as the national average
## 1727                                        Not Available
## 1728                                        Not Available
## 1729                         Same as the national average
## 1730                         Same as the national average
## 1731                                        Not Available
## 1732                         Same as the national average
## 1733                         Same as the national average
## 1734                                        Not Available
## 1735                           Below the national average
## 1736                                        Not Available
## 1737                                        Not Available
## 1738                         Same as the national average
## 1739                         Same as the national average
## 1740                         Same as the national average
## 1741                                        Not Available
## 1742                         Same as the national average
## 1743                         Same as the national average
## 1744                         Same as the national average
## 1745                         Same as the national average
## 1746                                        Not Available
## 1747                                        Not Available
## 1748                                        Not Available
## 1749                                        Not Available
## 1750                                        Not Available
## 1751                                        Not Available
## 1752                         Same as the national average
## 1753                                        Not Available
## 1754                                        Not Available
## 1755                         Same as the national average
## 1756                         Same as the national average
## 1757                         Same as the national average
## 1758                         Same as the national average
## 1759                         Same as the national average
## 1760                                        Not Available
## 1761                                        Not Available
## 1762                         Same as the national average
## 1763                                        Not Available
## 1764                                        Not Available
## 1765                         Same as the national average
## 1766                                        Not Available
## 1767                         Same as the national average
## 1768                         Same as the national average
## 1769                                        Not Available
## 1770                         Same as the national average
## 1771                                        Not Available
## 1772                                        Not Available
## 1773                                        Not Available
## 1774                           Below the national average
## 1775                         Same as the national average
## 1776                           Below the national average
## 1777                         Same as the national average
## 1778                                        Not Available
## 1779                                        Not Available
## 1780                                        Not Available
## 1781                                        Not Available
## 1782                         Same as the national average
## 1783                           Below the national average
## 1784                         Same as the national average
## 1785                                        Not Available
## 1786                           Below the national average
## 1787                                        Not Available
## 1788                         Same as the national average
## 1789                                        Not Available
## 1790                           Above the national average
## 1791                                        Not Available
## 1792                                        Not Available
## 1793                           Below the national average
## 1794                           Above the national average
## 1795                         Same as the national average
## 1796                           Below the national average
## 1797                         Same as the national average
## 1798                           Above the national average
## 1799                         Same as the national average
## 1800                           Above the national average
## 1801                                        Not Available
## 1802                           Above the national average
## 1803                                        Not Available
## 1804                           Above the national average
## 1805                                        Not Available
## 1806                                        Not Available
## 1807                                        Not Available
## 1808                                        Not Available
## 1809                                        Not Available
## 1810                                        Not Available
## 1811                                        Not Available
## 1812                           Below the national average
## 1813                                        Not Available
## 1814                                        Not Available
## 1815                                        Not Available
## 1816                                        Not Available
## 1817                         Same as the national average
## 1818                                        Not Available
## 1819                                        Not Available
## 1820                           Below the national average
## 1821                           Above the national average
## 1822                           Below the national average
## 1823                                        Not Available
## 1824                           Below the national average
## 1825                         Same as the national average
## 1826                         Same as the national average
## 1827                                        Not Available
## 1828                         Same as the national average
## 1829                                        Not Available
## 1830                           Above the national average
## 1831                           Above the national average
## 1832                           Below the national average
## 1833                         Same as the national average
## 1834                                        Not Available
## 1835                                        Not Available
## 1836                         Same as the national average
## 1837                                        Not Available
## 1838                                        Not Available
## 1839                         Same as the national average
## 1840                                        Not Available
## 1841                           Above the national average
## 1842                         Same as the national average
## 1843                         Same as the national average
## 1844                                        Not Available
## 1845                         Same as the national average
## 1846                         Same as the national average
## 1847                         Same as the national average
## 1848                         Same as the national average
## 1849                                        Not Available
## 1850                                        Not Available
## 1851                                        Not Available
## 1852                                        Not Available
## 1853                         Same as the national average
## 1854                                        Not Available
## 1855                         Same as the national average
## 1856                                        Not Available
## 1857                         Same as the national average
## 1858                         Same as the national average
## 1859                                        Not Available
## 1860                         Same as the national average
## 1861                                        Not Available
## 1862                         Same as the national average
## 1863                         Same as the national average
## 1864                         Same as the national average
## 1865                         Same as the national average
## 1866                                        Not Available
## 1867                           Below the national average
## 1868                         Same as the national average
## 1869                                        Not Available
## 1870                         Same as the national average
## 1871                                        Not Available
## 1872                         Same as the national average
## 1873                           Above the national average
## 1874                                        Not Available
## 1875                         Same as the national average
## 1876                                        Not Available
## 1877                                        Not Available
## 1878                         Same as the national average
## 1879                                        Not Available
## 1880                         Same as the national average
## 1881                           Above the national average
## 1882                                        Not Available
## 1883                         Same as the national average
## 1884                         Same as the national average
## 1885                         Same as the national average
## 1886                         Same as the national average
## 1887                                        Not Available
## 1888                                        Not Available
## 1889                         Same as the national average
## 1890                                        Not Available
## 1891                         Same as the national average
## 1892                                        Not Available
## 1893                           Below the national average
## 1894                         Same as the national average
## 1895                           Above the national average
## 1896                                        Not Available
## 1897                                        Not Available
## 1898                         Same as the national average
## 1899                                        Not Available
## 1900                           Above the national average
## 1901                                        Not Available
## 1902                                        Not Available
## 1903                         Same as the national average
## 1904                           Below the national average
## 1905                                        Not Available
## 1906                                        Not Available
## 1907                         Same as the national average
## 1908                           Below the national average
## 1909                         Same as the national average
## 1910                         Same as the national average
## 1911                         Same as the national average
## 1912                         Same as the national average
## 1913                         Same as the national average
## 1914                         Same as the national average
## 1915                                        Not Available
## 1916                                        Not Available
## 1917                           Below the national average
## 1918                         Same as the national average
## 1919                                        Not Available
## 1920                                        Not Available
## 1921                                        Not Available
## 1922                                        Not Available
## 1923                                        Not Available
## 1924                                        Not Available
## 1925                           Below the national average
## 1926                         Same as the national average
## 1927                         Same as the national average
## 1928                         Same as the national average
## 1929                         Same as the national average
## 1930                         Same as the national average
## 1931                         Same as the national average
## 1932                                        Not Available
## 1933                         Same as the national average
## 1934                         Same as the national average
## 1935                         Same as the national average
## 1936                         Same as the national average
## 1937                                        Not Available
## 1938                                        Not Available
## 1939                         Same as the national average
## 1940                                        Not Available
## 1941                                        Not Available
## 1942                                        Not Available
## 1943                         Same as the national average
## 1944                         Same as the national average
## 1945                           Above the national average
## 1946                         Same as the national average
## 1947                           Above the national average
## 1948                                        Not Available
## 1949                                        Not Available
## 1950                         Same as the national average
## 1951                                        Not Available
## 1952                                        Not Available
## 1953                         Same as the national average
## 1954                           Above the national average
## 1955                         Same as the national average
## 1956                                        Not Available
## 1957                                        Not Available
## 1958                         Same as the national average
## 1959                                        Not Available
## 1960                           Below the national average
## 1961                         Same as the national average
## 1962                         Same as the national average
## 1963                                        Not Available
## 1964                         Same as the national average
## 1965                           Above the national average
## 1966                                        Not Available
## 1967                                        Not Available
## 1968                           Above the national average
## 1969                                        Not Available
## 1970                         Same as the national average
## 1971                                        Not Available
## 1972                         Same as the national average
## 1973                         Same as the national average
## 1974                         Same as the national average
## 1975                         Same as the national average
## 1976                                        Not Available
## 1977                                        Not Available
## 1978                         Same as the national average
## 1979                         Same as the national average
## 1980                           Below the national average
## 1981                                        Not Available
## 1982                                        Not Available
## 1983                                        Not Available
## 1984                         Same as the national average
## 1985                           Above the national average
## 1986                         Same as the national average
## 1987                                        Not Available
## 1988                                        Not Available
## 1989                                        Not Available
## 1990                                        Not Available
## 1991                           Above the national average
## 1992                         Same as the national average
## 1993                           Below the national average
## 1994                         Same as the national average
## 1995                           Below the national average
## 1996                           Above the national average
## 1997                         Same as the national average
## 1998                           Above the national average
## 1999                                        Not Available
## 2000                           Above the national average
## 2001                                        Not Available
## 2002                           Below the national average
## 2003                         Same as the national average
## 2004                           Below the national average
## 2005                                        Not Available
## 2006                                        Not Available
## 2007                         Same as the national average
## 2008                                        Not Available
## 2009                         Same as the national average
## 2010                         Same as the national average
## 2011                                        Not Available
## 2012                         Same as the national average
## 2013                                        Not Available
## 2014                                        Not Available
## 2015                         Same as the national average
## 2016                         Same as the national average
## 2017                                        Not Available
## 2018                         Same as the national average
## 2019                                        Not Available
## 2020                         Same as the national average
## 2021                                        Not Available
## 2022                         Same as the national average
## 2023                                        Not Available
## 2024                           Above the national average
## 2025                                        Not Available
## 2026                         Same as the national average
## 2027                                        Not Available
## 2028                         Same as the national average
## 2029                           Above the national average
## 2030                         Same as the national average
## 2031                                        Not Available
## 2032                         Same as the national average
## 2033                                        Not Available
## 2034                         Same as the national average
## 2035                                        Not Available
## 2036                                        Not Available
## 2037                           Above the national average
## 2038                         Same as the national average
## 2039                         Same as the national average
## 2040                         Same as the national average
## 2041                           Above the national average
## 2042                           Above the national average
## 2043                                        Not Available
## 2044                         Same as the national average
## 2045                         Same as the national average
## 2046                           Below the national average
## 2047                         Same as the national average
## 2048                         Same as the national average
## 2049                                        Not Available
## 2050                                        Not Available
## 2051                         Same as the national average
## 2052                         Same as the national average
## 2053                                        Not Available
## 2054                         Same as the national average
## 2055                         Same as the national average
## 2056                           Above the national average
## 2057                                        Not Available
## 2058                         Same as the national average
## 2059                           Above the national average
## 2060                         Same as the national average
## 2061                                        Not Available
## 2062                                        Not Available
## 2063                         Same as the national average
## 2064                           Above the national average
## 2065                         Same as the national average
## 2066                         Same as the national average
## 2067                                        Not Available
## 2068                           Below the national average
## 2069                         Same as the national average
## 2070                         Same as the national average
## 2071                                        Not Available
## 2072                                        Not Available
## 2073                         Same as the national average
## 2074                         Same as the national average
## 2075                                        Not Available
## 2076                                        Not Available
## 2077                         Same as the national average
## 2078                         Same as the national average
## 2079                         Same as the national average
## 2080                                        Not Available
## 2081                                        Not Available
## 2082                         Same as the national average
## 2083                                        Not Available
## 2084                         Same as the national average
## 2085                         Same as the national average
## 2086                                        Not Available
## 2087                           Below the national average
## 2088                                        Not Available
## 2089                                        Not Available
## 2090                                        Not Available
## 2091                           Below the national average
## 2092                         Same as the national average
## 2093                         Same as the national average
## 2094                                        Not Available
## 2095                           Above the national average
## 2096                           Above the national average
## 2097                           Below the national average
## 2098                                        Not Available
## 2099                         Same as the national average
## 2100                           Below the national average
## 2101                         Same as the national average
## 2102                         Same as the national average
## 2103                           Below the national average
## 2104                           Below the national average
## 2105                         Same as the national average
## 2106                                        Not Available
## 2107                                        Not Available
## 2108                                        Not Available
## 2109                                        Not Available
## 2110                                        Not Available
## 2111                                        Not Available
## 2112                         Same as the national average
## 2113                         Same as the national average
## 2114                                        Not Available
## 2115                           Below the national average
## 2116                                        Not Available
## 2117                         Same as the national average
## 2118                         Same as the national average
## 2119                         Same as the national average
## 2120                         Same as the national average
## 2121                                        Not Available
## 2122                                        Not Available
## 2123                         Same as the national average
## 2124                         Same as the national average
## 2125                         Same as the national average
## 2126                                        Not Available
## 2127                                        Not Available
## 2128                         Same as the national average
## 2129                         Same as the national average
## 2130                           Above the national average
## 2131                         Same as the national average
## 2132                                        Not Available
## 2133                           Above the national average
## 2134                         Same as the national average
## 2135                         Same as the national average
## 2136                         Same as the national average
## 2137                         Same as the national average
## 2138                                        Not Available
## 2139                                        Not Available
## 2140                                        Not Available
## 2141                                        Not Available
## 2142                                        Not Available
## 2143                           Above the national average
## 2144                                        Not Available
## 2145                                        Not Available
## 2146                           Below the national average
## 2147                                        Not Available
## 2148                         Same as the national average
## 2149                         Same as the national average
## 2150                         Same as the national average
## 2151                         Same as the national average
## 2152                                        Not Available
## 2153                         Same as the national average
## 2154                           Above the national average
## 2155                                        Not Available
## 2156                         Same as the national average
## 2157                                        Not Available
## 2158                         Same as the national average
## 2159                         Same as the national average
## 2160                         Same as the national average
## 2161                           Above the national average
## 2162                                        Not Available
## 2163                                        Not Available
## 2164                         Same as the national average
## 2165                                        Not Available
## 2166                           Above the national average
## 2167                                        Not Available
## 2168                         Same as the national average
## 2169                                        Not Available
## 2170                         Same as the national average
## 2171                         Same as the national average
## 2172                         Same as the national average
## 2173                         Same as the national average
## 2174                         Same as the national average
## 2175                                        Not Available
## 2176                                        Not Available
## 2177                                        Not Available
## 2178                           Above the national average
## 2179                                        Not Available
## 2180                           Above the national average
## 2181                         Same as the national average
## 2182                                        Not Available
## 2183                         Same as the national average
## 2184                                        Not Available
## 2185                                        Not Available
## 2186                                        Not Available
## 2187                                        Not Available
## 2188                                        Not Available
## 2189                         Same as the national average
## 2190                           Below the national average
## 2191                         Same as the national average
## 2192                                        Not Available
## 2193                         Same as the national average
## 2194                                        Not Available
## 2195                           Below the national average
## 2196                                        Not Available
## 2197                         Same as the national average
## 2198                                        Not Available
## 2199                         Same as the national average
## 2200                                        Not Available
## 2201                           Below the national average
## 2202                                        Not Available
## 2203                                        Not Available
## 2204                         Same as the national average
## 2205                                        Not Available
## 2206                                        Not Available
## 2207                         Same as the national average
## 2208                           Above the national average
## 2209                         Same as the national average
## 2210                                        Not Available
## 2211                           Below the national average
## 2212                           Above the national average
## 2213                                        Not Available
## 2214                                        Not Available
## 2215                           Below the national average
## 2216                         Same as the national average
## 2217                                        Not Available
## 2218                           Below the national average
## 2219                                        Not Available
## 2220                         Same as the national average
## 2221                         Same as the national average
## 2222                         Same as the national average
## 2223                         Same as the national average
## 2224                         Same as the national average
## 2225                                        Not Available
## 2226                                        Not Available
## 2227                         Same as the national average
## 2228                         Same as the national average
## 2229                         Same as the national average
## 2230                                        Not Available
## 2231                                        Not Available
## 2232                                        Not Available
## 2233                           Above the national average
## 2234                                        Not Available
## 2235                                        Not Available
## 2236                                        Not Available
## 2237                                        Not Available
## 2238                                        Not Available
## 2239                         Same as the national average
## 2240                         Same as the national average
## 2241                                        Not Available
## 2242                         Same as the national average
## 2243                                        Not Available
## 2244                         Same as the national average
## 2245                         Same as the national average
## 2246                                        Not Available
## 2247                           Below the national average
## 2248                                        Not Available
## 2249                         Same as the national average
## 2250                                        Not Available
## 2251                         Same as the national average
## 2252                         Same as the national average
## 2253                         Same as the national average
## 2254                         Same as the national average
## 2255                                        Not Available
## 2256                                        Not Available
## 2257                                        Not Available
## 2258                                        Not Available
## 2259                                        Not Available
## 2260                           Below the national average
## 2261                           Above the national average
## 2262                         Same as the national average
## 2263                         Same as the national average
## 2264                         Same as the national average
## 2265                         Same as the national average
## 2266                                        Not Available
## 2267                                        Not Available
## 2268                         Same as the national average
## 2269                                        Not Available
## 2270                                        Not Available
## 2271                                        Not Available
## 2272                         Same as the national average
## 2273                           Above the national average
## 2274                                        Not Available
## 2275                                        Not Available
## 2276                                        Not Available
## 2277                         Same as the national average
## 2278                         Same as the national average
## 2279                                        Not Available
## 2280                           Below the national average
## 2281                                        Not Available
## 2282                         Same as the national average
## 2283                         Same as the national average
## 2284                                        Not Available
## 2285                         Same as the national average
## 2286                         Same as the national average
## 2287                                        Not Available
## 2288                                        Not Available
## 2289                           Above the national average
## 2290                           Above the national average
## 2291                                        Not Available
## 2292                                        Not Available
## 2293                                        Not Available
## 2294                           Below the national average
## 2295                                        Not Available
## 2296                                        Not Available
## 2297                         Same as the national average
## 2298                                        Not Available
## 2299                           Below the national average
## 2300                                        Not Available
## 2301                         Same as the national average
## 2302                         Same as the national average
## 2303                                        Not Available
## 2304                         Same as the national average
## 2305                                        Not Available
## 2306                                        Not Available
## 2307                                        Not Available
## 2308                                        Not Available
## 2309                           Above the national average
## 2310                           Below the national average
## 2311                                        Not Available
## 2312                         Same as the national average
## 2313                         Same as the national average
## 2314                         Same as the national average
## 2315                                        Not Available
## 2316                                        Not Available
## 2317                         Same as the national average
## 2318                                        Not Available
## 2319                                        Not Available
## 2320                                        Not Available
## 2321                                        Not Available
## 2322                         Same as the national average
## 2323                         Same as the national average
## 2324                                        Not Available
## 2325                           Above the national average
## 2326                           Below the national average
## 2327                                        Not Available
## 2328                         Same as the national average
## 2329                                        Not Available
## 2330                                        Not Available
## 2331                                        Not Available
## 2332                                        Not Available
## 2333                                        Not Available
## 2334                                        Not Available
## 2335                                        Not Available
## 2336                                        Not Available
## 2337                                        Not Available
## 2338                         Same as the national average
## 2339                                        Not Available
## 2340                                        Not Available
## 2341                                        Not Available
## 2342                                        Not Available
## 2343                                        Not Available
## 2344                         Same as the national average
## 2345                                        Not Available
## 2346                                        Not Available
## 2347                           Below the national average
## 2348                           Below the national average
## 2349                         Same as the national average
## 2350                           Below the national average
## 2351                         Same as the national average
## 2352                                        Not Available
## 2353                                        Not Available
## 2354                         Same as the national average
## 2355                                        Not Available
## 2356                                        Not Available
## 2357                                        Not Available
## 2358                         Same as the national average
## 2359                           Below the national average
## 2360                                        Not Available
## 2361                         Same as the national average
## 2362                         Same as the national average
## 2363                         Same as the national average
## 2364                           Above the national average
## 2365                           Below the national average
## 2366                                        Not Available
## 2367                                        Not Available
## 2368                         Same as the national average
## 2369                                        Not Available
## 2370                                        Not Available
## 2371                         Same as the national average
## 2372                         Same as the national average
## 2373                         Same as the national average
## 2374                                        Not Available
## 2375                           Above the national average
## 2376                                        Not Available
## 2377                         Same as the national average
## 2378                                        Not Available
## 2379                                        Not Available
## 2380                           Above the national average
## 2381                         Same as the national average
## 2382                                        Not Available
## 2383                                        Not Available
## 2384                                        Not Available
## 2385                         Same as the national average
## 2386                         Same as the national average
## 2387                         Same as the national average
## 2388                                        Not Available
## 2389                         Same as the national average
## 2390                                        Not Available
## 2391                           Above the national average
## 2392                                        Not Available
## 2393                                        Not Available
## 2394                         Same as the national average
## 2395                                        Not Available
## 2396                                        Not Available
## 2397                                        Not Available
## 2398                         Same as the national average
## 2399                           Above the national average
## 2400                                        Not Available
## 2401                           Below the national average
## 2402                                        Not Available
## 2403                                        Not Available
## 2404                                        Not Available
## 2405                                        Not Available
## 2406                         Same as the national average
## 2407                           Below the national average
## 2408                           Above the national average
## 2409                                        Not Available
## 2410                                        Not Available
## 2411                         Same as the national average
## 2412                           Below the national average
## 2413                           Above the national average
## 2414                                        Not Available
## 2415                                        Not Available
## 2416                         Same as the national average
## 2417                                        Not Available
## 2418                         Same as the national average
## 2419                                        Not Available
## 2420                         Same as the national average
## 2421                         Same as the national average
## 2422                         Same as the national average
## 2423                         Same as the national average
## 2424                                        Not Available
## 2425                           Above the national average
## 2426                                        Not Available
## 2427                           Below the national average
## 2428                                        Not Available
## 2429                                        Not Available
## 2430                                        Not Available
## 2431                                        Not Available
## 2432                                        Not Available
## 2433                                        Not Available
## 2434                         Same as the national average
## 2435                           Below the national average
## 2436                           Above the national average
## 2437                                        Not Available
## 2438                                        Not Available
## 2439                           Above the national average
## 2440                                        Not Available
## 2441                           Above the national average
## 2442                                        Not Available
## 2443                         Same as the national average
## 2444                                        Not Available
## 2445                         Same as the national average
## 2446                         Same as the national average
## 2447                                        Not Available
## 2448                         Same as the national average
## 2449                                        Not Available
## 2450                         Same as the national average
## 2451                                        Not Available
## 2452                         Same as the national average
## 2453                                        Not Available
## 2454                                        Not Available
## 2455                         Same as the national average
## 2456                                        Not Available
## 2457                         Same as the national average
## 2458                                        Not Available
## 2459                         Same as the national average
## 2460                         Same as the national average
## 2461                         Same as the national average
## 2462                           Below the national average
## 2463                         Same as the national average
## 2464                         Same as the national average
## 2465                                        Not Available
## 2466                                        Not Available
## 2467                           Above the national average
## 2468                                        Not Available
## 2469                         Same as the national average
## 2470                                        Not Available
## 2471                           Below the national average
## 2472                                        Not Available
## 2473                                        Not Available
## 2474                                        Not Available
## 2475                           Above the national average
## 2476                         Same as the national average
## 2477                         Same as the national average
## 2478                           Below the national average
## 2479                                        Not Available
## 2480                         Same as the national average
## 2481                         Same as the national average
## 2482                         Same as the national average
## 2483                                        Not Available
## 2484                         Same as the national average
## 2485                                        Not Available
## 2486                           Above the national average
## 2487                                        Not Available
## 2488                                        Not Available
## 2489                                        Not Available
## 2490                         Same as the national average
## 2491                         Same as the national average
## 2492                           Below the national average
## 2493                                        Not Available
## 2494                                        Not Available
## 2495                         Same as the national average
## 2496                                        Not Available
## 2497                                        Not Available
## 2498                           Above the national average
## 2499                                        Not Available
## 2500                         Same as the national average
## 2501                                        Not Available
## 2502                                        Not Available
## 2503                         Same as the national average
## 2504                         Same as the national average
## 2505                           Above the national average
## 2506                                        Not Available
## 2507                           Above the national average
## 2508                         Same as the national average
## 2509                         Same as the national average
## 2510                                        Not Available
## 2511                         Same as the national average
## 2512                           Below the national average
## 2513                                        Not Available
## 2514                         Same as the national average
## 2515                         Same as the national average
## 2516                         Same as the national average
## 2517                         Same as the national average
## 2518                                        Not Available
## 2519                         Same as the national average
## 2520                                        Not Available
## 2521                         Same as the national average
## 2522                         Same as the national average
## 2523                         Same as the national average
## 2524                                        Not Available
## 2525                                        Not Available
## 2526                           Below the national average
## 2527                           Below the national average
## 2528                         Same as the national average
## 2529                                        Not Available
## 2530                         Same as the national average
## 2531                                        Not Available
## 2532                                        Not Available
## 2533                                        Not Available
## 2534                                        Not Available
## 2535                         Same as the national average
## 2536                                        Not Available
## 2537                         Same as the national average
## 2538                                        Not Available
## 2539                                        Not Available
## 2540                                        Not Available
## 2541                           Below the national average
## 2542                         Same as the national average
## 2543                                        Not Available
## 2544                         Same as the national average
## 2545                         Same as the national average
## 2546                                        Not Available
## 2547                                        Not Available
## 2548                         Same as the national average
## 2549                           Below the national average
## 2550                                        Not Available
## 2551                         Same as the national average
## 2552                                        Not Available
## 2553                         Same as the national average
## 2554                                        Not Available
## 2555                         Same as the national average
## 2556                                        Not Available
## 2557                                        Not Available
## 2558                                        Not Available
## 2559                                        Not Available
## 2560                           Above the national average
## 2561                                        Not Available
## 2562                         Same as the national average
## 2563                                        Not Available
## 2564                           Below the national average
## 2565                         Same as the national average
## 2566                                        Not Available
## 2567                         Same as the national average
## 2568                         Same as the national average
## 2569                                        Not Available
## 2570                         Same as the national average
## 2571                                        Not Available
## 2572                         Same as the national average
## 2573                                        Not Available
## 2574                           Below the national average
## 2575                         Same as the national average
## 2576                         Same as the national average
## 2577                           Below the national average
## 2578                         Same as the national average
## 2579                         Same as the national average
## 2580                                        Not Available
## 2581                           Below the national average
## 2582                                        Not Available
## 2583                                        Not Available
## 2584                         Same as the national average
## 2585                                        Not Available
## 2586                         Same as the national average
## 2587                                        Not Available
## 2588                                        Not Available
## 2589                         Same as the national average
## 2590                         Same as the national average
## 2591                                        Not Available
## 2592                         Same as the national average
## 2593                           Above the national average
## 2594                                        Not Available
## 2595                                        Not Available
## 2596                                        Not Available
## 2597                                        Not Available
## 2598                           Above the national average
## 2599                         Same as the national average
## 2600                                        Not Available
## 2601                           Below the national average
## 2602                         Same as the national average
## 2603                                        Not Available
## 2604                         Same as the national average
## 2605                         Same as the national average
## 2606                                        Not Available
## 2607                                        Not Available
## 2608                         Same as the national average
## 2609                                        Not Available
## 2610                         Same as the national average
## 2611                         Same as the national average
## 2612                           Above the national average
## 2613                         Same as the national average
## 2614                         Same as the national average
## 2615                         Same as the national average
## 2616                                        Not Available
## 2617                                        Not Available
## 2618                         Same as the national average
## 2619                         Same as the national average
## 2620                         Same as the national average
## 2621                                        Not Available
## 2622                         Same as the national average
## 2623                           Above the national average
## 2624                                        Not Available
## 2625                                        Not Available
## 2626                         Same as the national average
## 2627                         Same as the national average
## 2628                           Below the national average
## 2629                         Same as the national average
## 2630                         Same as the national average
## 2631                                        Not Available
## 2632                                        Not Available
## 2633                         Same as the national average
## 2634                         Same as the national average
## 2635                         Same as the national average
## 2636                                        Not Available
## 2637                         Same as the national average
## 2638                           Above the national average
## 2639                         Same as the national average
## 2640                                        Not Available
## 2641                         Same as the national average
## 2642                                        Not Available
## 2643                           Above the national average
## 2644                         Same as the national average
## 2645                         Same as the national average
## 2646                         Same as the national average
## 2647                           Above the national average
## 2648                                        Not Available
## 2649                                        Not Available
## 2650                           Above the national average
## 2651                         Same as the national average
## 2652                           Below the national average
## 2653                                        Not Available
## 2654                         Same as the national average
## 2655                                        Not Available
## 2656                         Same as the national average
## 2657                         Same as the national average
## 2658                         Same as the national average
## 2659                         Same as the national average
## 2660                                        Not Available
## 2661                                        Not Available
## 2662                         Same as the national average
## 2663                           Below the national average
## 2664                         Same as the national average
## 2665                         Same as the national average
## 2666                         Same as the national average
## 2667                         Same as the national average
## 2668                                        Not Available
## 2669                         Same as the national average
## 2670                                        Not Available
## 2671                           Below the national average
## 2672                         Same as the national average
## 2673                                        Not Available
## 2674                           Below the national average
## 2675                                        Not Available
## 2676                         Same as the national average
## 2677                         Same as the national average
## 2678                                        Not Available
## 2679                         Same as the national average
## 2680                           Above the national average
## 2681                                        Not Available
## 2682                           Below the national average
## 2683                                        Not Available
## 2684                         Same as the national average
## 2685                           Above the national average
## 2686                         Same as the national average
## 2687                         Same as the national average
## 2688                           Above the national average
## 2689                                        Not Available
## 2690                                        Not Available
## 2691                         Same as the national average
## 2692                         Same as the national average
## 2693                         Same as the national average
## 2694                           Above the national average
## 2695                                        Not Available
## 2696                         Same as the national average
## 2697                           Above the national average
## 2698                                        Not Available
## 2699                                        Not Available
## 2700                           Below the national average
## 2701                         Same as the national average
## 2702                                        Not Available
## 2703                                        Not Available
## 2704                         Same as the national average
## 2705                         Same as the national average
## 2706                         Same as the national average
## 2707                           Above the national average
## 2708                                        Not Available
## 2709                         Same as the national average
## 2710                                        Not Available
## 2711                                        Not Available
## 2712                                        Not Available
## 2713                         Same as the national average
## 2714                                        Not Available
## 2715                                        Not Available
## 2716                         Same as the national average
## 2717                                        Not Available
## 2718                                        Not Available
## 2719                         Same as the national average
## 2720                         Same as the national average
## 2721                         Same as the national average
## 2722                         Same as the national average
## 2723                         Same as the national average
## 2724                         Same as the national average
## 2725                                        Not Available
## 2726                         Same as the national average
## 2727                                        Not Available
## 2728                           Below the national average
## 2729                                        Not Available
## 2730                                        Not Available
## 2731                                        Not Available
## 2732                                        Not Available
## 2733                         Same as the national average
## 2734                                        Not Available
## 2735                         Same as the national average
## 2736                         Same as the national average
## 2737                                        Not Available
## 2738                                        Not Available
## 2739                         Same as the national average
## 2740                                        Not Available
## 2741                         Same as the national average
## 2742                         Same as the national average
## 2743                                        Not Available
## 2744                                        Not Available
## 2745                         Same as the national average
## 2746                         Same as the national average
## 2747                                        Not Available
## 2748                                        Not Available
## 2749                           Above the national average
## 2750                                        Not Available
## 2751                         Same as the national average
## 2752                         Same as the national average
## 2753                                        Not Available
## 2754                                        Not Available
## 2755                           Below the national average
## 2756                         Same as the national average
## 2757                           Below the national average
## 2758                         Same as the national average
## 2759                                        Not Available
## 2760                                        Not Available
## 2761                         Same as the national average
## 2762                         Same as the national average
## 2763                                        Not Available
## 2764                           Below the national average
## 2765                         Same as the national average
## 2766                         Same as the national average
## 2767                         Same as the national average
## 2768                                        Not Available
## 2769                                        Not Available
## 2770                                        Not Available
## 2771                                        Not Available
## 2772                         Same as the national average
## 2773                                        Not Available
## 2774                           Above the national average
## 2775                                        Not Available
## 2776                         Same as the national average
## 2777                         Same as the national average
## 2778                         Same as the national average
## 2779                         Same as the national average
## 2780                         Same as the national average
## 2781                         Same as the national average
## 2782                         Same as the national average
## 2783                           Above the national average
## 2784                                        Not Available
## 2785                         Same as the national average
## 2786                                        Not Available
## 2787                         Same as the national average
## 2788                         Same as the national average
## 2789                                        Not Available
## 2790                         Same as the national average
## 2791                                        Not Available
## 2792                         Same as the national average
## 2793                         Same as the national average
## 2794                                        Not Available
## 2795                                        Not Available
## 2796                                        Not Available
## 2797                         Same as the national average
## 2798                         Same as the national average
## 2799                           Above the national average
## 2800                                        Not Available
## 2801                         Same as the national average
## 2802                                        Not Available
## 2803                           Above the national average
## 2804                         Same as the national average
## 2805                         Same as the national average
## 2806                                        Not Available
## 2807                         Same as the national average
## 2808                           Above the national average
## 2809                         Same as the national average
## 2810                         Same as the national average
## 2811                         Same as the national average
## 2812                                        Not Available
## 2813                         Same as the national average
## 2814                                        Not Available
## 2815                                        Not Available
## 2816                         Same as the national average
## 2817                                        Not Available
## 2818                         Same as the national average
## 2819                         Same as the national average
## 2820                                        Not Available
## 2821                                        Not Available
## 2822                                        Not Available
## 2823                         Same as the national average
## 2824                                        Not Available
## 2825                         Same as the national average
## 2826                                        Not Available
## 2827                                        Not Available
## 2828                                        Not Available
## 2829                                        Not Available
## 2830                                        Not Available
## 2831                         Same as the national average
## 2832                                        Not Available
## 2833                           Above the national average
## 2834                         Same as the national average
## 2835                                        Not Available
## 2836                         Same as the national average
## 2837                                        Not Available
## 2838                         Same as the national average
## 2839                         Same as the national average
## 2840                                        Not Available
## 2841                         Same as the national average
## 2842                         Same as the national average
## 2843                                        Not Available
## 2844                                        Not Available
## 2845                                        Not Available
## 2846                                        Not Available
## 2847                                        Not Available
## 2848                         Same as the national average
## 2849                                        Not Available
## 2850                                        Not Available
## 2851                                        Not Available
## 2852                         Same as the national average
## 2853                                        Not Available
## 2854                                        Not Available
## 2855                           Below the national average
## 2856                                        Not Available
## 2857                                        Not Available
## 2858                         Same as the national average
## 2859                           Above the national average
## 2860                         Same as the national average
## 2861                         Same as the national average
## 2862                                        Not Available
## 2863                           Above the national average
## 2864                         Same as the national average
## 2865                         Same as the national average
## 2866                                        Not Available
## 2867                                        Not Available
## 2868                         Same as the national average
## 2869                         Same as the national average
## 2870                                        Not Available
## 2871                         Same as the national average
## 2872                           Below the national average
## 2873                         Same as the national average
## 2874                                        Not Available
## 2875                         Same as the national average
## 2876                           Below the national average
## 2877                         Same as the national average
## 2878                           Above the national average
## 2879                                        Not Available
## 2880                                        Not Available
## 2881                                        Not Available
## 2882                                        Not Available
## 2883                         Same as the national average
## 2884                                        Not Available
## 2885                         Same as the national average
## 2886                         Same as the national average
## 2887                         Same as the national average
## 2888                                        Not Available
## 2889                                        Not Available
## 2890                         Same as the national average
## 2891                                        Not Available
## 2892                           Above the national average
## 2893                         Same as the national average
## 2894                                        Not Available
## 2895                           Above the national average
## 2896                         Same as the national average
## 2897                           Above the national average
## 2898                         Same as the national average
## 2899                                        Not Available
## 2900                                        Not Available
## 2901                         Same as the national average
## 2902                                        Not Available
## 2903                                        Not Available
## 2904                                        Not Available
## 2905                         Same as the national average
## 2906                                        Not Available
## 2907                           Above the national average
## 2908                           Above the national average
## 2909                         Same as the national average
## 2910                                        Not Available
## 2911                         Same as the national average
## 2912                         Same as the national average
## 2913                           Below the national average
## 2914                                        Not Available
## 2915                           Above the national average
## 2916                         Same as the national average
## 2917                         Same as the national average
## 2918                         Same as the national average
## 2919                           Above the national average
## 2920                         Same as the national average
## 2921                         Same as the national average
## 2922                         Same as the national average
## 2923                         Same as the national average
## 2924                         Same as the national average
## 2925                         Same as the national average
## 2926                                        Not Available
## 2927                                        Not Available
## 2928                         Same as the national average
## 2929                           Above the national average
## 2930                           Above the national average
## 2931                                        Not Available
## 2932                           Above the national average
## 2933                         Same as the national average
## 2934                                        Not Available
## 2935                         Same as the national average
## 2936                         Same as the national average
## 2937                           Below the national average
## 2938                                        Not Available
## 2939                           Below the national average
## 2940                           Below the national average
## 2941                         Same as the national average
## 2942                                        Not Available
## 2943                         Same as the national average
## 2944                                        Not Available
## 2945                         Same as the national average
## 2946                                        Not Available
## 2947                         Same as the national average
## 2948                         Same as the national average
## 2949                                        Not Available
## 2950                                        Not Available
## 2951                         Same as the national average
## 2952                                        Not Available
## 2953                         Same as the national average
## 2954                           Above the national average
## 2955                         Same as the national average
## 2956                                        Not Available
## 2957                                        Not Available
## 2958                         Same as the national average
## 2959                                        Not Available
## 2960                         Same as the national average
## 2961                                        Not Available
## 2962                                        Not Available
## 2963                                        Not Available
## 2964                           Above the national average
## 2965                         Same as the national average
## 2966                                        Not Available
## 2967                           Above the national average
## 2968                                        Not Available
## 2969                                        Not Available
## 2970                         Same as the national average
## 2971                           Below the national average
## 2972                                        Not Available
## 2973                           Below the national average
## 2974                         Same as the national average
## 2975                                        Not Available
## 2976                                        Not Available
## 2977                         Same as the national average
## 2978                         Same as the national average
## 2979                           Above the national average
## 2980                                        Not Available
## 2981                         Same as the national average
## 2982                           Above the national average
## 2983                         Same as the national average
## 2984                         Same as the national average
## 2985                           Below the national average
## 2986                         Same as the national average
## 2987                         Same as the national average
## 2988                                        Not Available
## 2989                                        Not Available
## 2990                         Same as the national average
## 2991                         Same as the national average
## 2992                         Same as the national average
## 2993                           Below the national average
## 2994                         Same as the national average
## 2995                         Same as the national average
## 2996                                        Not Available
## 2997                                        Not Available
## 2998                                        Not Available
## 2999                           Above the national average
## 3000                           Below the national average
## 3001                                        Not Available
## 3002                         Same as the national average
## 3003                         Same as the national average
## 3004                                        Not Available
## 3005                         Same as the national average
## 3006                         Same as the national average
## 3007                                        Not Available
## 3008                         Same as the national average
## 3009                           Below the national average
## 3010                         Same as the national average
## 3011                                        Not Available
## 3012                         Same as the national average
## 3013                                        Not Available
## 3014                         Same as the national average
## 3015                                        Not Available
## 3016                                        Not Available
## 3017                                        Not Available
## 3018                         Same as the national average
## 3019                         Same as the national average
## 3020                         Same as the national average
## 3021                         Same as the national average
## 3022                                        Not Available
## 3023                                        Not Available
## 3024                           Below the national average
## 3025                         Same as the national average
## 3026                         Same as the national average
## 3027                                        Not Available
## 3028                         Same as the national average
## 3029                         Same as the national average
## 3030                         Same as the national average
## 3031                         Same as the national average
## 3032                           Above the national average
## 3033                         Same as the national average
## 3034                           Above the national average
## 3035                         Same as the national average
## 3036                           Above the national average
## 3037                                        Not Available
## 3038                         Same as the national average
## 3039                                        Not Available
## 3040                         Same as the national average
## 3041                           Above the national average
## 3042                         Same as the national average
## 3043                                        Not Available
## 3044                         Same as the national average
## 3045                                        Not Available
## 3046                         Same as the national average
## 3047                         Same as the national average
## 3048                           Below the national average
## 3049                                        Not Available
## 3050                         Same as the national average
## 3051                         Same as the national average
## 3052                           Above the national average
## 3053                         Same as the national average
## 3054                         Same as the national average
## 3055                           Below the national average
## 3056                         Same as the national average
## 3057                                        Not Available
## 3058                         Same as the national average
## 3059                           Below the national average
## 3060                                        Not Available
## 3061                                        Not Available
## 3062                         Same as the national average
## 3063                         Same as the national average
## 3064                         Same as the national average
## 3065                         Same as the national average
## 3066                         Same as the national average
## 3067                         Same as the national average
## 3068                                        Not Available
## 3069                                        Not Available
## 3070                         Same as the national average
## 3071                                        Not Available
## 3072                                        Not Available
## 3073                         Same as the national average
## 3074                         Same as the national average
## 3075                         Same as the national average
## 3076                         Same as the national average
## 3077                                        Not Available
## 3078                         Same as the national average
## 3079                                        Not Available
## 3080                                        Not Available
## 3081                         Same as the national average
## 3082                         Same as the national average
## 3083                                        Not Available
## 3084                                        Not Available
## 3085                                        Not Available
## 3086                           Above the national average
## 3087                         Same as the national average
## 3088                                        Not Available
## 3089                                        Not Available
## 3090                         Same as the national average
## 3091                           Below the national average
## 3092                           Above the national average
## 3093                         Same as the national average
## 3094                                        Not Available
## 3095                         Same as the national average
## 3096                         Same as the national average
## 3097                         Same as the national average
## 3098                                        Not Available
## 3099                         Same as the national average
## 3100                           Above the national average
## 3101                         Same as the national average
## 3102                         Same as the national average
## 3103                                        Not Available
## 3104                           Above the national average
## 3105                                        Not Available
## 3106                           Below the national average
## 3107                                        Not Available
## 3108                         Same as the national average
## 3109                         Same as the national average
## 3110                                        Not Available
## 3111                                        Not Available
## 3112                                        Not Available
## 3113                         Same as the national average
## 3114                         Same as the national average
## 3115                                        Not Available
## 3116                                        Not Available
## 3117                                        Not Available
## 3118                         Same as the national average
## 3119                         Same as the national average
## 3120                           Below the national average
## 3121                         Same as the national average
## 3122                           Above the national average
## 3123                                        Not Available
## 3124                           Below the national average
## 3125                         Same as the national average
## 3126                         Same as the national average
## 3127                                        Not Available
## 3128                                        Not Available
## 3129                                        Not Available
## 3130                                        Not Available
## 3131                                        Not Available
## 3132                           Above the national average
## 3133                           Above the national average
## 3134                                        Not Available
## 3135                                        Not Available
## 3136                           Below the national average
## 3137                                        Not Available
## 3138                                        Not Available
## 3139                                        Not Available
## 3140                         Same as the national average
## 3141                         Same as the national average
## 3142                         Same as the national average
## 3143                         Same as the national average
## 3144                                        Not Available
## 3145                         Same as the national average
## 3146                         Same as the national average
## 3147                         Same as the national average
## 3148                         Same as the national average
## 3149                                        Not Available
## 3150                         Same as the national average
## 3151                         Same as the national average
## 3152                           Above the national average
## 3153                           Below the national average
## 3154                                        Not Available
## 3155                                        Not Available
## 3156                         Same as the national average
## 3157                         Same as the national average
## 3158                         Same as the national average
## 3159                         Same as the national average
## 3160                         Same as the national average
## 3161                           Above the national average
## 3162                           Above the national average
## 3163                         Same as the national average
## 3164                                        Not Available
## 3165                         Same as the national average
## 3166                                        Not Available
## 3167                           Above the national average
## 3168                         Same as the national average
## 3169                         Same as the national average
## 3170                                        Not Available
## 3171                         Same as the national average
## 3172                                        Not Available
## 3173                           Below the national average
## 3174                         Same as the national average
## 3175                                        Not Available
## 3176                         Same as the national average
## 3177                           Above the national average
## 3178                           Below the national average
## 3179                                        Not Available
## 3180                         Same as the national average
## 3181                         Same as the national average
## 3182                           Below the national average
## 3183                                        Not Available
## 3184                                        Not Available
## 3185                           Below the national average
## 3186                           Below the national average
## 3187                         Same as the national average
## 3188                         Same as the national average
## 3189                                        Not Available
## 3190                         Same as the national average
## 3191                                        Not Available
## 3192                           Above the national average
## 3193                           Below the national average
## 3194                                        Not Available
## 3195                                        Not Available
## 3196                         Same as the national average
## 3197                                        Not Available
## 3198                           Below the national average
## 3199                         Same as the national average
## 3200                         Same as the national average
## 3201                                        Not Available
## 3202                         Same as the national average
## 3203                         Same as the national average
## 3204                                        Not Available
## 3205                           Below the national average
## 3206                                        Not Available
## 3207                                        Not Available
## 3208                           Above the national average
## 3209                         Same as the national average
## 3210                         Same as the national average
## 3211                         Same as the national average
## 3212                           Above the national average
## 3213                                        Not Available
## 3214                                        Not Available
## 3215                           Below the national average
## 3216                                        Not Available
## 3217                         Same as the national average
## 3218                         Same as the national average
## 3219                           Above the national average
## 3220                         Same as the national average
## 3221                                        Not Available
## 3222                         Same as the national average
## 3223                         Same as the national average
## 3224                           Above the national average
## 3225                                        Not Available
## 3226                           Below the national average
## 3227                         Same as the national average
## 3228                         Same as the national average
## 3229                         Same as the national average
## 3230                           Above the national average
## 3231                         Same as the national average
## 3232                                        Not Available
## 3233                                        Not Available
## 3234                           Above the national average
## 3235                         Same as the national average
## 3236                                        Not Available
## 3237                         Same as the national average
## 3238                         Same as the national average
## 3239                         Same as the national average
## 3240                         Same as the national average
## 3241                         Same as the national average
## 3242                         Same as the national average
## 3243                         Same as the national average
## 3244                         Same as the national average
## 3245                                        Not Available
## 3246                           Above the national average
## 3247                         Same as the national average
## 3248                                        Not Available
## 3249                                        Not Available
## 3250                                        Not Available
## 3251                                        Not Available
## 3252                         Same as the national average
## 3253                           Below the national average
## 3254                                        Not Available
## 3255                         Same as the national average
## 3256                         Same as the national average
## 3257                                        Not Available
## 3258                         Same as the national average
## 3259                                        Not Available
## 3260                           Above the national average
## 3261                         Same as the national average
## 3262                                        Not Available
## 3263                                        Not Available
## 3264                                        Not Available
## 3265                                        Not Available
## 3266                         Same as the national average
## 3267                           Above the national average
## 3268                                        Not Available
## 3269                                        Not Available
## 3270                                        Not Available
## 3271                         Same as the national average
## 3272                                        Not Available
## 3273                           Below the national average
## 3274                                        Not Available
## 3275                         Same as the national average
## 3276                                        Not Available
## 3277                         Same as the national average
## 3278                                        Not Available
## 3279                                        Not Available
## 3280                         Same as the national average
## 3281                           Above the national average
## 3282                         Same as the national average
## 3283                           Above the national average
## 3284                         Same as the national average
## 3285                         Same as the national average
## 3286                                        Not Available
## 3287                                        Not Available
## 3288                           Below the national average
## 3289                         Same as the national average
## 3290                         Same as the national average
## 3291                         Same as the national average
## 3292                                        Not Available
## 3293                           Below the national average
## 3294                         Same as the national average
## 3295                           Above the national average
## 3296                                        Not Available
## 3297                                        Not Available
## 3298                         Same as the national average
## 3299                         Same as the national average
## 3300                         Same as the national average
## 3301                           Above the national average
## 3302                         Same as the national average
## 3303                                        Not Available
## 3304                         Same as the national average
## 3305                           Above the national average
## 3306                                        Not Available
## 3307                         Same as the national average
## 3308                         Same as the national average
## 3309                                        Not Available
## 3310                         Same as the national average
## 3311                         Same as the national average
## 3312                         Same as the national average
## 3313                         Same as the national average
## 3314                         Same as the national average
## 3315                         Same as the national average
## 3316                                        Not Available
## 3317                                        Not Available
## 3318                                        Not Available
## 3319                                        Not Available
## 3320                         Same as the national average
## 3321                         Same as the national average
## 3322                         Same as the national average
## 3323                                        Not Available
## 3324                           Below the national average
## 3325                                        Not Available
## 3326                                        Not Available
## 3327                           Above the national average
## 3328                         Same as the national average
## 3329                         Same as the national average
## 3330                         Same as the national average
## 3331                         Same as the national average
## 3332                                        Not Available
## 3333                         Same as the national average
## 3334                           Above the national average
## 3335                         Same as the national average
## 3336                         Same as the national average
## 3337                           Above the national average
## 3338                                        Not Available
## 3339                                        Not Available
## 3340                         Same as the national average
## 3341                         Same as the national average
## 3342                         Same as the national average
## 3343                           Below the national average
## 3344                         Same as the national average
## 3345                                        Not Available
## 3346                           Above the national average
## 3347                           Below the national average
## 3348                                        Not Available
## 3349                         Same as the national average
## 3350                         Same as the national average
## 3351                                        Not Available
## 3352                           Below the national average
## 3353                         Same as the national average
## 3354                                        Not Available
## 3355                                        Not Available
## 3356                                        Not Available
## 3357                           Above the national average
## 3358                         Same as the national average
## 3359                         Same as the national average
## 3360                                        Not Available
## 3361                                        Not Available
## 3362                           Below the national average
## 3363                         Same as the national average
## 3364                         Same as the national average
## 3365                         Same as the national average
## 3366                                        Not Available
## 3367                           Above the national average
## 3368                                        Not Available
## 3369                         Same as the national average
## 3370                                        Not Available
## 3371                         Same as the national average
## 3372                                        Not Available
## 3373                         Same as the national average
## 3374                                        Not Available
## 3375                         Same as the national average
## 3376                                        Not Available
## 3377                                        Not Available
## 3378                                        Not Available
## 3379                           Above the national average
## 3380                         Same as the national average
## 3381                                        Not Available
## 3382                                        Not Available
## 3383                                        Not Available
## 3384                                        Not Available
## 3385                           Above the national average
## 3386                         Same as the national average
## 3387                                        Not Available
## 3388                         Same as the national average
## 3389                           Above the national average
## 3390                         Same as the national average
## 3391                           Above the national average
## 3392                                        Not Available
## 3393                                        Not Available
## 3394                         Same as the national average
## 3395                                        Not Available
## 3396                                        Not Available
## 3397                                        Not Available
## 3398                                        Not Available
## 3399                           Above the national average
## 3400                         Same as the national average
## 3401                                        Not Available
## 3402                                        Not Available
## 3403                                        Not Available
## 3404                         Same as the national average
## 3405                                        Not Available
## 3406                           Above the national average
## 3407                         Same as the national average
## 3408                           Below the national average
## 3409                                        Not Available
## 3410                                        Not Available
## 3411                                        Not Available
## 3412                                        Not Available
## 3413                           Below the national average
## 3414                                        Not Available
## 3415                           Below the national average
## 3416                                        Not Available
## 3417                         Same as the national average
## 3418                                        Not Available
## 3419                         Same as the national average
## 3420                         Same as the national average
## 3421                         Same as the national average
## 3422                         Same as the national average
## 3423                                        Not Available
## 3424                         Same as the national average
## 3425                                        Not Available
## 3426                                        Not Available
## 3427                         Same as the national average
## 3428                                        Not Available
## 3429                                        Not Available
## 3430                         Same as the national average
## 3431                           Above the national average
## 3432                         Same as the national average
## 3433                                        Not Available
## 3434                         Same as the national average
## 3435                         Same as the national average
## 3436                         Same as the national average
## 3437                         Same as the national average
## 3438                         Same as the national average
## 3439                         Same as the national average
## 3440                                        Not Available
## 3441                                        Not Available
## 3442                                        Not Available
## 3443                                        Not Available
## 3444                         Same as the national average
## 3445                         Same as the national average
## 3446                                        Not Available
## 3447                                        Not Available
## 3448                                        Not Available
##      Efficient_use_of_medical_imaging_national_comparison_footnote
## 1                                                               16
## 2                                                               19
## 3                                                               19
## 4                                                                5
## 5                                                               19
## 6                                                                5
## 7                                                               19
## 8                                                               16
## 9                                                               19
## 10                                                              19
## 11                                                              19
## 12                                                                
## 13                                                              19
## 14                                                              19
## 15                                                               5
## 16                                                              19
## 17                                                               5
## 18                                                              16
## 19                                                              19
## 20                                                              19
## 21                                                               5
## 22                                                              16
## 23                                                               5
## 24                                                              19
## 25                                                              16
## 26                                                              16
## 27                                                              19
## 28                                                              16
## 29                                                              19
## 30                                                              16
## 31                                                              16
## 32                                                              19
## 33                                                              19
## 34                                                              19
## 35                                                               5
## 36                                                              19
## 37                                                              19
## 38                                                              16
## 39                                                               5
## 40                                                              19
## 41                                                              19
## 42                                                               5
## 43                                                                
## 44                                                              16
## 45                                                              19
## 46                                                              19
## 47                                                              16
## 48                                                              19
## 49                                                              16
## 50                                                              19
## 51                                                              19
## 52                                                              19
## 53                                                              19
## 54                                                              19
## 55                                                              19
## 56                                                               5
## 57                                                               5
## 58                                                              16
## 59                                                                
## 60                                                                
## 61                                                              19
## 62                                                               5
## 63                                                              19
## 64                                                               5
## 65                                                                
## 66                                                              16
## 67                                                                
## 68                                                              16
## 69                                                                
## 70                                                                
## 71                                                                
## 72                                                                
## 73                                                                
## 74                                                                
## 75                                                              16
## 76                                                                
## 77                                                              16
## 78                                                                
## 79                                                              16
## 80                                                                
## 81                                                              19
## 82                                                               5
## 83                                                              19
## 84                                                                
## 85                                                              19
## 86                                                              16
## 87                                                                
## 88                                                              19
## 89                                                               5
## 90                                                                
## 91                                                                
## 92                                                                
## 93                                                                
## 94                                                                
## 95                                                               5
## 96                                                               5
## 97                                                                
## 98                                                               5
## 99                                                                
## 100                                                               
## 101                                                              5
## 102                                                               
## 103                                                               
## 104                                                               
## 105                                                               
## 106                                                               
## 107                                                               
## 108                                                               
## 109                                                               
## 110                                                             16
## 111                                                               
## 112                                                              5
## 113                                                               
## 114                                                               
## 115                                                               
## 116                                                             19
## 117                                                             19
## 118                                                             16
## 119                                                              5
## 120                                                             16
## 121                                                               
## 122                                                             19
## 123                                                               
## 124                                                               
## 125                                                               
## 126                                                             16
## 127                                                              5
## 128                                                               
## 129                                                             19
## 130                                                               
## 131                                                               
## 132                                                              5
## 133                                                              5
## 134                                                              5
## 135                                                              5
## 136                                                              5
## 137                                                             16
## 138                                                             19
## 139                                                               
## 140                                                               
## 141                                                              5
## 142                                                             19
## 143                                                             19
## 144                                                             16
## 145                                                               
## 146                                                              5
## 147                                                              5
## 148                                                               
## 149                                                              5
## 150                                                             16
## 151                                                               
## 152                                                             16
## 153                                                               
## 154                                                               
## 155                                                               
## 156                                                              5
## 157                                                              5
## 158                                                             16
## 159                                                              5
## 160                                                               
## 161                                                             19
## 162                                                               
## 163                                                               
## 164                                                               
## 165                                                               
## 166                                                             19
## 167                                                               
## 168                                                               
## 169                                                              5
## 170                                                               
## 171                                                             19
## 172                                                               
## 173                                                              5
## 174                                                               
## 175                                                              5
## 176                                                               
## 177                                                             16
## 178                                                               
## 179                                                              5
## 180                                                               
## 181                                                             16
## 182                                                               
## 183                                                              5
## 184                                                             19
## 185                                                               
## 186                                                               
## 187                                                               
## 188                                                               
## 189                                                               
## 190                                                              5
## 191                                                             16
## 192                                                               
## 193                                                             19
## 194                                                               
## 195                                                             19
## 196                                                               
## 197                                                              5
## 198                                                               
## 199                                                               
## 200                                                             16
## 201                                                             19
## 202                                                               
## 203                                                             19
## 204                                                               
## 205                                                              5
## 206                                                             16
## 207                                                               
## 208                                                               
## 209                                                               
## 210                                                               
## 211                                                             19
## 212                                                              5
## 213                                                             16
## 214                                                               
## 215                                                             16
## 216                                                             16
## 217                                                              5
## 218                                                               
## 219                                                             16
## 220                                                             16
## 221                                                               
## 222                                                               
## 223                                                               
## 224                                                             16
## 225                                                               
## 226                                                             16
## 227                                                             16
## 228                                                               
## 229                                                               
## 230                                                             16
## 231                                                              5
## 232                                                               
## 233                                                              5
## 234                                                               
## 235                                                              5
## 236                                                               
## 237                                                               
## 238                                                               
## 239                                                               
## 240                                                              5
## 241                                                               
## 242                                                               
## 243                                                               
## 244                                                               
## 245                                                               
## 246                                                               
## 247                                                               
## 248                                                              5
## 249                                                             19
## 250                                                             16
## 251                                                               
## 252                                                             19
## 253                                                               
## 254                                                              5
## 255                                                               
## 256                                                              5
## 257                                                               
## 258                                                               
## 259                                                               
## 260                                                             23
## 261                                                             19
## 262                                                              5
## 263                                                               
## 264                                                               
## 265                                                               
## 266                                                              5
## 267                                                               
## 268                                                             19
## 269                                                             16
## 270                                                               
## 271                                                               
## 272                                                              5
## 273                                                             16
## 274                                                             16
## 275                                                             16
## 276                                                               
## 277                                                              5
## 278                                                              5
## 279                                                               
## 280                                                               
## 281                                                              5
## 282                                                               
## 283                                                               
## 284                                                             16
## 285                                                             16
## 286                                                              5
## 287                                                             19
## 288                                                               
## 289                                                              5
## 290                                                               
## 291                                                             16
## 292                                                             16
## 293                                                               
## 294                                                             19
## 295                                                               
## 296                                                             19
## 297                                                               
## 298                                                               
## 299                                                             19
## 300                                                               
## 301                                                             19
## 302                                                               
## 303                                                               
## 304                                                             19
## 305                                                             19
## 306                                                             19
## 307                                                              5
## 308                                                              5
## 309                                                             19
## 310                                                              5
## 311                                                               
## 312                                                               
## 313                                                               
## 314                                                               
## 315                                                             16
## 316                                                               
## 317                                                               
## 318                                                               
## 319                                                              5
## 320                                                              5
## 321                                                               
## 322                                                               
## 323                                                               
## 324                                                             19
## 325                                                               
## 326                                                              5
## 327                                                               
## 328                                                             16
## 329                                                               
## 330                                                             19
## 331                                                               
## 332                                                               
## 333                                                               
## 334                                                               
## 335                                                               
## 336                                                             19
## 337                                                               
## 338                                                             19
## 339                                                              5
## 340                                                               
## 341                                                               
## 342                                                             16
## 343                                                               
## 344                                                             19
## 345                                                               
## 346                                                               
## 347                                                             19
## 348                                                              5
## 349                                                               
## 350                                                               
## 351                                                              5
## 352                                                               
## 353                                                             16
## 354                                                               
## 355                                                               
## 356                                                              5
## 357                                                               
## 358                                                               
## 359                                                               
## 360                                                             19
## 361                                                              5
## 362                                                               
## 363                                                               
## 364                                                               
## 365                                                               
## 366                                                               
## 367                                                               
## 368                                                               
## 369                                                             16
## 370                                                               
## 371                                                               
## 372                                                              5
## 373                                                               
## 374                                                               
## 375                                                             19
## 376                                                             16
## 377                                                             16
## 378                                                               
## 379                                                             16
## 380                                                               
## 381                                                               
## 382                                                             19
## 383                                                               
## 384                                                             19
## 385                                                             19
## 386                                                             16
## 387                                                               
## 388                                                             16
## 389                                                               
## 390                                                               
## 391                                                               
## 392                                                               
## 393                                                             16
## 394                                                               
## 395                                                               
## 396                                                             16
## 397                                                              5
## 398                                                               
## 399                                                               
## 400                                                               
## 401                                                             19
## 402                                                              5
## 403                                                             16
## 404                                                               
## 405                                                             19
## 406                                                               
## 407                                                             19
## 408                                                              5
## 409                                                              5
## 410                                                              5
## 411                                                               
## 412                                                               
## 413                                                               
## 414                                                               
## 415                                                             16
## 416                                                               
## 417                                                             19
## 418                                                             19
## 419                                                               
## 420                                                             16
## 421                                                             19
## 422                                                              5
## 423                                                               
## 424                                                             19
## 425                                                               
## 426                                                               
## 427                                                              5
## 428                                                              5
## 429                                                              5
## 430                                                               
## 431                                                              5
## 432                                                              5
## 433                                                               
## 434                                                               
## 435                                                              5
## 436                                                               
## 437                                                               
## 438                                                               
## 439                                                               
## 440                                                             19
## 441                                                              5
## 442                                                             16
## 443                                                              5
## 444                                                               
## 445                                                               
## 446                                                               
## 447                                                               
## 448                                                             19
## 449                                                               
## 450                                                               
## 451                                                             19
## 452                                                              5
## 453                                                               
## 454                                                               
## 455                                                               
## 456                                                               
## 457                                                              5
## 458                                                             16
## 459                                                               
## 460                                                               
## 461                                                               
## 462                                                               
## 463                                                               
## 464                                                               
## 465                                                               
## 466                                                               
## 467                                                               
## 468                                                               
## 469                                                             16
## 470                                                               
## 471                                                               
## 472                                                              5
## 473                                                               
## 474                                                               
## 475                                                             19
## 476                                                             16
## 477                                                               
## 478                                                               
## 479                                                               
## 480                                                               
## 481                                                               
## 482                                                               
## 483                                                               
## 484                                                              5
## 485                                                               
## 486                                                             19
## 487                                                               
## 488                                                               
## 489                                                               
## 490                                                              5
## 491                                                               
## 492                                                               
## 493                                                               
## 494                                                               
## 495                                                               
## 496                                                               
## 497                                                               
## 498                                                               
## 499                                                             16
## 500                                                             16
## 501                                                             16
## 502                                                             19
## 503                                                               
## 504                                                               
## 505                                                               
## 506                                                             19
## 507                                                             19
## 508                                                              5
## 509                                                             19
## 510                                                              5
## 511                                                             16
## 512                                                               
## 513                                                               
## 514                                                               
## 515                                                               
## 516                                                               
## 517                                                             19
## 518                                                               
## 519                                                               
## 520                                                               
## 521                                                               
## 522                                                               
## 523                                                               
## 524                                                               
## 525                                                               
## 526                                                               
## 527                                                               
## 528                                                             19
## 529                                                               
## 530                                                               
## 531                                                             16
## 532                                                              5
## 533                                                               
## 534                                                               
## 535                                                             16
## 536                                                               
## 537                                                               
## 538                                                              5
## 539                                                               
## 540                                                               
## 541                                                              5
## 542                                                             16
## 543                                                             19
## 544                                                              5
## 545                                                               
## 546                                                               
## 547                                                               
## 548                                                             16
## 549                                                               
## 550                                                               
## 551                                                               
## 552                                                               
## 553                                                             19
## 554                                                              5
## 555                                                               
## 556                                                               
## 557                                                               
## 558                                                               
## 559                                                               
## 560                                                               
## 561                                                               
## 562                                                               
## 563                                                             16
## 564                                                             16
## 565                                                               
## 566                                                               
## 567                                                              5
## 568                                                              5
## 569                                                              5
## 570                                                             16
## 571                                                               
## 572                                                               
## 573                                                               
## 574                                                               
## 575                                                             19
## 576                                                              5
## 577                                                               
## 578                                                               
## 579                                                             19
## 580                                                               
## 581                                                             19
## 582                                                               
## 583                                                               
## 584                                                               
## 585                                                               
## 586                                                               
## 587                                                              5
## 588                                                               
## 589                                                             19
## 590                                                             16
## 591                                                               
## 592                                                              5
## 593                                                              5
## 594                                                             19
## 595                                                               
## 596                                                             16
## 597                                                               
## 598                                                             19
## 599                                                              5
## 600                                                               
## 601                                                               
## 602                                                               
## 603                                                               
## 604                                                               
## 605                                                             19
## 606                                                               
## 607                                                              5
## 608                                                               
## 609                                                             19
## 610                                                              5
## 611                                                             19
## 612                                                              5
## 613                                                               
## 614                                                               
## 615                                                               
## 616                                                               
## 617                                                             19
## 618                                                               
## 619                                                               
## 620                                                               
## 621                                                              5
## 622                                                               
## 623                                                             19
## 624                                                              5
## 625                                                               
## 626                                                               
## 627                                                               
## 628                                                             16
## 629                                                               
## 630                                                             16
## 631                                                              5
## 632                                                               
## 633                                                              5
## 634                                                               
## 635                                                               
## 636                                                              5
## 637                                                              5
## 638                                                             19
## 639                                                               
## 640                                                               
## 641                                                              5
## 642                                                               
## 643                                                               
## 644                                                               
## 645                                                             16
## 646                                                             19
## 647                                                              5
## 648                                                               
## 649                                                             16
## 650                                                               
## 651                                                             19
## 652                                                             16
## 653                                                               
## 654                                                               
## 655                                                               
## 656                                                             16
## 657                                                               
## 658                                                               
## 659                                                              5
## 660                                                               
## 661                                                             16
## 662                                                               
## 663                                                               
## 664                                                              5
## 665                                                             16
## 666                                                               
## 667                                                               
## 668                                                             19
## 669                                                             16
## 670                                                               
## 671                                                               
## 672                                                               
## 673                                                              5
## 674                                                             16
## 675                                                               
## 676                                                               
## 677                                                             16
## 678                                                               
## 679                                                             16
## 680                                                              5
## 681                                                               
## 682                                                               
## 683                                                               
## 684                                                             16
## 685                                                               
## 686                                                               
## 687                                                               
## 688                                                             19
## 689                                                               
## 690                                                               
## 691                                                               
## 692                                                               
## 693                                                              5
## 694                                                               
## 695                                                               
## 696                                                              5
## 697                                                             16
## 698                                                               
## 699                                                               
## 700                                                               
## 701                                                               
## 702                                                             19
## 703                                                             16
## 704                                                               
## 705                                                               
## 706                                                             19
## 707                                                               
## 708                                                              5
## 709                                                             16
## 710                                                              5
## 711                                                             16
## 712                                                               
## 713                                                               
## 714                                                             16
## 715                                                               
## 716                                                               
## 717                                                               
## 718                                                              5
## 719                                                               
## 720                                                              5
## 721                                                               
## 722                                                             16
## 723                                                              5
## 724                                                              5
## 725                                                               
## 726                                                             16
## 727                                                               
## 728                                                               
## 729                                                               
## 730                                                               
## 731                                                               
## 732                                                               
## 733                                                               
## 734                                                             19
## 735                                                               
## 736                                                               
## 737                                                               
## 738                                                               
## 739                                                               
## 740                                                             19
## 741                                                             19
## 742                                                               
## 743                                                             16
## 744                                                               
## 745                                                             19
## 746                                                             16
## 747                                                               
## 748                                                               
## 749                                                             19
## 750                                                               
## 751                                                             19
## 752                                                               
## 753                                                               
## 754                                                               
## 755                                                               
## 756                                                              5
## 757                                                               
## 758                                                               
## 759                                                             19
## 760                                                               
## 761                                                              5
## 762                                                              5
## 763                                                             19
## 764                                                              5
## 765                                                               
## 766                                                              5
## 767                                                               
## 768                                                             19
## 769                                                             16
## 770                                                               
## 771                                                             19
## 772                                                               
## 773                                                               
## 774                                                               
## 775                                                               
## 776                                                               
## 777                                                               
## 778                                                               
## 779                                                               
## 780                                                               
## 781                                                              5
## 782                                                               
## 783                                                             19
## 784                                                               
## 785                                                              5
## 786                                                               
## 787                                                               
## 788                                                               
## 789                                                               
## 790                                                              5
## 791                                                             16
## 792                                                             16
## 793                                                             19
## 794                                                               
## 795                                                               
## 796                                                               
## 797                                                              5
## 798                                                             19
## 799                                                               
## 800                                                               
## 801                                                               
## 802                                                               
## 803                                                             19
## 804                                                              5
## 805                                                               
## 806                                                               
## 807                                                             19
## 808                                                               
## 809                                                             16
## 810                                                             16
## 811                                                               
## 812                                                               
## 813                                                              5
## 814                                                               
## 815                                                              5
## 816                                                              5
## 817                                                             19
## 818                                                               
## 819                                                               
## 820                                                               
## 821                                                               
## 822                                                               
## 823                                                              5
## 824                                                               
## 825                                                             16
## 826                                                               
## 827                                                               
## 828                                                               
## 829                                                               
## 830                                                               
## 831                                                              5
## 832                                                              5
## 833                                                               
## 834                                                               
## 835                                                             16
## 836                                                               
## 837                                                             19
## 838                                                               
## 839                                                               
## 840                                                              5
## 841                                                               
## 842                                                             19
## 843                                                             16
## 844                                                               
## 845                                                              5
## 846                                                               
## 847                                                               
## 848                                                              5
## 849                                                             19
## 850                                                             16
## 851                                                               
## 852                                                               
## 853                                                              5
## 854                                                               
## 855                                                               
## 856                                                              5
## 857                                                             16
## 858                                                               
## 859                                                             16
## 860                                                              5
## 861                                                               
## 862                                                              5
## 863                                                               
## 864                                                             19
## 865                                                             19
## 866                                                               
## 867                                                               
## 868                                                               
## 869                                                               
## 870                                                               
## 871                                                               
## 872                                                               
## 873                                                               
## 874                                                               
## 875                                                               
## 876                                                               
## 877                                                             19
## 878                                                              5
## 879                                                               
## 880                                                               
## 881                                                               
## 882                                                             19
## 883                                                               
## 884                                                               
## 885                                                               
## 886                                                               
## 887                                                               
## 888                                                               
## 889                                                               
## 890                                                              5
## 891                                                               
## 892                                                               
## 893                                                               
## 894                                                               
## 895                                                               
## 896                                                              5
## 897                                                               
## 898                                                             19
## 899                                                               
## 900                                                             19
## 901                                                               
## 902                                                               
## 903                                                              5
## 904                                                               
## 905                                                              5
## 906                                                              5
## 907                                                               
## 908                                                               
## 909                                                             19
## 910                                                               
## 911                                                               
## 912                                                             16
## 913                                                              5
## 914                                                             19
## 915                                                             16
## 916                                                             16
## 917                                                             19
## 918                                                               
## 919                                                               
## 920                                                             19
## 921                                                              5
## 922                                                               
## 923                                                               
## 924                                                               
## 925                                                               
## 926                                                               
## 927                                                               
## 928                                                               
## 929                                                             16
## 930                                                               
## 931                                                              5
## 932                                                             19
## 933                                                             19
## 934                                                               
## 935                                                               
## 936                                                             19
## 937                                                               
## 938                                                             19
## 939                                                               
## 940                                                               
## 941                                                             16
## 942                                                               
## 943                                                             19
## 944                                                               
## 945                                                               
## 946                                                               
## 947                                                              5
## 948                                                             16
## 949                                                             19
## 950                                                               
## 951                                                               
## 952                                                               
## 953                                                              5
## 954                                                               
## 955                                                               
## 956                                                               
## 957                                                               
## 958                                                             16
## 959                                                               
## 960                                                               
## 961                                                               
## 962                                                               
## 963                                                              5
## 964                                                              5
## 965                                                               
## 966                                                               
## 967                                                               
## 968                                                               
## 969                                                               
## 970                                                               
## 971                                                               
## 972                                                              5
## 973                                                             19
## 974                                                               
## 975                                                              5
## 976                                                             16
## 977                                                               
## 978                                                               
## 979                                                             16
## 980                                                             19
## 981                                                               
## 982                                                             16
## 983                                                               
## 984                                                               
## 985                                                               
## 986                                                             19
## 987                                                               
## 988                                                             16
## 989                                                               
## 990                                                              5
## 991                                                               
## 992                                                              5
## 993                                                              5
## 994                                                               
## 995                                                               
## 996                                                               
## 997                                                             19
## 998                                                               
## 999                                                               
## 1000                                                            19
## 1001                                                            19
## 1002                                                            16
## 1003                                                              
## 1004                                                              
## 1005                                                            16
## 1006                                                              
## 1007                                                              
## 1008                                                              
## 1009                                                            19
## 1010                                                              
## 1011                                                            19
## 1012                                                            19
## 1013                                                              
## 1014                                                              
## 1015                                                             5
## 1016                                                             5
## 1017                                                             5
## 1018                                                             5
## 1019                                                              
## 1020                                                             5
## 1021                                                            16
## 1022                                                              
## 1023                                                              
## 1024                                                              
## 1025                                                            19
## 1026                                                             5
## 1027                                                            19
## 1028                                                            16
## 1029                                                             5
## 1030                                                              
## 1031                                                            16
## 1032                                                              
## 1033                                                              
## 1034                                                              
## 1035                                                            16
## 1036                                                             5
## 1037                                                             5
## 1038                                                              
## 1039                                                            16
## 1040                                                              
## 1041                                                             5
## 1042                                                             5
## 1043                                                              
## 1044                                                              
## 1045                                                              
## 1046                                                              
## 1047                                                              
## 1048                                                            19
## 1049                                                             5
## 1050                                                            19
## 1051                                                            19
## 1052                                                            16
## 1053                                                              
## 1054                                                              
## 1055                                                              
## 1056                                                              
## 1057                                                              
## 1058                                                              
## 1059                                                             5
## 1060                                                            16
## 1061                                                            16
## 1062                                                              
## 1063                                                              
## 1064                                                              
## 1065                                                              
## 1066                                                              
## 1067                                                            16
## 1068                                                            16
## 1069                                                              
## 1070                                                              
## 1071                                                              
## 1072                                                            19
## 1073                                                              
## 1074                                                            19
## 1075                                                             5
## 1076                                                             5
## 1077                                                              
## 1078                                                              
## 1079                                                              
## 1080                                                              
## 1081                                                              
## 1082                                                              
## 1083                                                              
## 1084                                                             5
## 1085                                                              
## 1086                                                              
## 1087                                                             5
## 1088                                                              
## 1089                                                             5
## 1090                                                            19
## 1091                                                              
## 1092                                                              
## 1093                                                              
## 1094                                                              
## 1095                                                            19
## 1096                                                              
## 1097                                                              
## 1098                                                              
## 1099                                                              
## 1100                                                             5
## 1101                                                              
## 1102                                                              
## 1103                                                            19
## 1104                                                              
## 1105                                                              
## 1106                                                             5
## 1107                                                            19
## 1108                                                              
## 1109                                                            16
## 1110                                                             5
## 1111                                                             5
## 1112                                                            19
## 1113                                                             5
## 1114                                                              
## 1115                                                              
## 1116                                                              
## 1117                                                            19
## 1118                                                            16
## 1119                                                              
## 1120                                                            16
## 1121                                                              
## 1122                                                              
## 1123                                                              
## 1124                                                            19
## 1125                                                              
## 1126                                                              
## 1127                                                              
## 1128                                                              
## 1129                                                              
## 1130                                                             5
## 1131                                                              
## 1132                                                              
## 1133                                                            16
## 1134                                                              
## 1135                                                              
## 1136                                                              
## 1137                                                            19
## 1138                                                              
## 1139                                                            19
## 1140                                                              
## 1141                                                             5
## 1142                                                              
## 1143                                                            16
## 1144                                                            16
## 1145                                                             5
## 1146                                                            16
## 1147                                                             5
## 1148                                                            16
## 1149                                                            16
## 1150                                                            19
## 1151                                                              
## 1152                                                             5
## 1153                                                             5
## 1154                                                            16
## 1155                                                              
## 1156                                                             5
## 1157                                                              
## 1158                                                              
## 1159                                                              
## 1160                                                              
## 1161                                                            19
## 1162                                                            19
## 1163                                                              
## 1164                                                              
## 1165                                                             5
## 1166                                                              
## 1167                                                            16
## 1168                                                            19
## 1169                                                             5
## 1170                                                              
## 1171                                                             5
## 1172                                                              
## 1173                                                              
## 1174                                                             5
## 1175                                                            16
## 1176                                                              
## 1177                                                              
## 1178                                                            19
## 1179                                                              
## 1180                                                            16
## 1181                                                             5
## 1182                                                              
## 1183                                                              
## 1184                                                            19
## 1185                                                            19
## 1186                                                              
## 1187                                                              
## 1188                                                            16
## 1189                                                              
## 1190                                                              
## 1191                                                              
## 1192                                                              
## 1193                                                              
## 1194                                                             5
## 1195                                                             5
## 1196                                                              
## 1197                                                             5
## 1198                                                              
## 1199                                                             5
## 1200                                                            19
## 1201                                                            19
## 1202                                                            19
## 1203                                                              
## 1204                                                             5
## 1205                                                              
## 1206                                                              
## 1207                                                            16
## 1208                                                            19
## 1209                                                              
## 1210                                                              
## 1211                                                              
## 1212                                                             5
## 1213                                                            16
## 1214                                                              
## 1215                                                              
## 1216                                                              
## 1217                                                              
## 1218                                                              
## 1219                                                             5
## 1220                                                              
## 1221                                                            16
## 1222                                                             5
## 1223                                                             5
## 1224                                                              
## 1225                                                              
## 1226                                                              
## 1227                                                              
## 1228                                                              
## 1229                                                              
## 1230                                                             5
## 1231                                                            16
## 1232                                                            16
## 1233                                                            16
## 1234                                                             5
## 1235                                                            16
## 1236                                                              
## 1237                                                             5
## 1238                                                            16
## 1239                                                              
## 1240                                                              
## 1241                                                             5
## 1242                                                            19
## 1243                                                              
## 1244                                                              
## 1245                                                              
## 1246                                                              
## 1247                                                             5
## 1248                                                            19
## 1249                                                              
## 1250                                                              
## 1251                                                             5
## 1252                                                             5
## 1253                                                             5
## 1254                                                            16
## 1255                                                             5
## 1256                                                              
## 1257                                                              
## 1258                                                              
## 1259                                                              
## 1260                                                              
## 1261                                                            19
## 1262                                                            19
## 1263                                                              
## 1264                                                            19
## 1265                                                              
## 1266                                                              
## 1267                                                            19
## 1268                                                              
## 1269                                                            16
## 1270                                                              
## 1271                                                              
## 1272                                                              
## 1273                                                              
## 1274                                                              
## 1275                                                              
## 1276                                                             5
## 1277                                                              
## 1278                                                              
## 1279                                                              
## 1280                                                              
## 1281                                                              
## 1282                                                              
## 1283                                                             5
## 1284                                                              
## 1285                                                              
## 1286                                                              
## 1287                                                              
## 1288                                                            16
## 1289                                                              
## 1290                                                             5
## 1291                                                              
## 1292                                                              
## 1293                                                             5
## 1294                                                            19
## 1295                                                             5
## 1296                                                              
## 1297                                                              
## 1298                                                              
## 1299                                                            16
## 1300                                                              
## 1301                                                            19
## 1302                                                              
## 1303                                                             5
## 1304                                                            16
## 1305                                                              
## 1306                                                            19
## 1307                                                              
## 1308                                                              
## 1309                                                             5
## 1310                                                              
## 1311                                                            16
## 1312                                                              
## 1313                                                              
## 1314                                                              
## 1315                                                             5
## 1316                                                              
## 1317                                                              
## 1318                                                              
## 1319                                                              
## 1320                                                              
## 1321                                                              
## 1322                                                              
## 1323                                                              
## 1324                                                              
## 1325                                                              
## 1326                                                              
## 1327                                                            19
## 1328                                                              
## 1329                                                              
## 1330                                                            19
## 1331                                                             5
## 1332                                                              
## 1333                                                              
## 1334                                                              
## 1335                                                              
## 1336                                                              
## 1337                                                              
## 1338                                                            16
## 1339                                                              
## 1340                                                            16
## 1341                                                             5
## 1342                                                            16
## 1343                                                            16
## 1344                                                            19
## 1345                                                              
## 1346                                                              
## 1347                                                            16
## 1348                                                              
## 1349                                                             5
## 1350                                                              
## 1351                                                              
## 1352                                                              
## 1353                                                            16
## 1354                                                            19
## 1355                                                              
## 1356                                                            19
## 1357                                                            19
## 1358                                                              
## 1359                                                             5
## 1360                                                              
## 1361                                                              
## 1362                                                              
## 1363                                                            16
## 1364                                                              
## 1365                                                             5
## 1366                                                             5
## 1367                                                              
## 1368                                                              
## 1369                                                              
## 1370                                                              
## 1371                                                             5
## 1372                                                              
## 1373                                                              
## 1374                                                              
## 1375                                                              
## 1376                                                              
## 1377                                                             5
## 1378                                                             5
## 1379                                                            16
## 1380                                                              
## 1381                                                            19
## 1382                                                              
## 1383                                                            16
## 1384                                                             5
## 1385                                                              
## 1386                                                              
## 1387                                                              
## 1388                                                              
## 1389                                                              
## 1390                                                              
## 1391                                                            16
## 1392                                                              
## 1393                                                              
## 1394                                                              
## 1395                                                              
## 1396                                                             5
## 1397                                                              
## 1398                                                              
## 1399                                                             5
## 1400                                                             5
## 1401                                                              
## 1402                                                             5
## 1403                                                            16
## 1404                                                              
## 1405                                                             5
## 1406                                                             5
## 1407                                                              
## 1408                                                              
## 1409                                                              
## 1410                                                              
## 1411                                                              
## 1412                                                              
## 1413                                                              
## 1414                                                             5
## 1415                                                             5
## 1416                                                              
## 1417                                                              
## 1418                                                              
## 1419                                                              
## 1420                                                             5
## 1421                                                              
## 1422                                                              
## 1423                                                              
## 1424                                                              
## 1425                                                              
## 1426                                                              
## 1427                                                             5
## 1428                                                             5
## 1429                                                              
## 1430                                                             5
## 1431                                                             5
## 1432                                                              
## 1433                                                              
## 1434                                                             5
## 1435                                                              
## 1436                                                            19
## 1437                                                              
## 1438                                                              
## 1439                                                             5
## 1440                                                            19
## 1441                                                            19
## 1442                                                            19
## 1443                                                              
## 1444                                                              
## 1445                                                              
## 1446                                                              
## 1447                                                              
## 1448                                                             5
## 1449                                                              
## 1450                                                              
## 1451                                                              
## 1452                                                              
## 1453                                                              
## 1454                                                             5
## 1455                                                              
## 1456                                                              
## 1457                                                              
## 1458                                                            19
## 1459                                                            19
## 1460                                                             5
## 1461                                                            19
## 1462                                                              
## 1463                                                             5
## 1464                                                              
## 1465                                                             5
## 1466                                                              
## 1467                                                              
## 1468                                                              
## 1469                                                            19
## 1470                                                              
## 1471                                                              
## 1472                                                              
## 1473                                                            16
## 1474                                                              
## 1475                                                            16
## 1476                                                              
## 1477                                                              
## 1478                                                            16
## 1479                                                              
## 1480                                                            16
## 1481                                                              
## 1482                                                            16
## 1483                                                              
## 1484                                                              
## 1485                                                            19
## 1486                                                              
## 1487                                                              
## 1488                                                              
## 1489                                                            19
## 1490                                                              
## 1491                                                              
## 1492                                                              
## 1493                                                            16
## 1494                                                             5
## 1495                                                              
## 1496                                                            16
## 1497                                                              
## 1498                                                            19
## 1499                                                             5
## 1500                                                              
## 1501                                                              
## 1502                                                              
## 1503                                                              
## 1504                                                              
## 1505                                                              
## 1506                                                              
## 1507                                                              
## 1508                                                            16
## 1509                                                              
## 1510                                                              
## 1511                                                              
## 1512                                                              
## 1513                                                            16
## 1514                                                            19
## 1515                                                              
## 1516                                                              
## 1517                                                              
## 1518                                                              
## 1519                                                              
## 1520                                                              
## 1521                                                              
## 1522                                                              
## 1523                                                              
## 1524                                                            16
## 1525                                                              
## 1526                                                              
## 1527                                                            19
## 1528                                                              
## 1529                                                              
## 1530                                                              
## 1531                                                            16
## 1532                                                              
## 1533                                                              
## 1534                                                            16
## 1535                                                              
## 1536                                                              
## 1537                                                              
## 1538                                                              
## 1539                                                            16
## 1540                                                              
## 1541                                                              
## 1542                                                              
## 1543                                                              
## 1544                                                              
## 1545                                                              
## 1546                                                              
## 1547                                                             5
## 1548                                                            16
## 1549                                                              
## 1550                                                             5
## 1551                                                            19
## 1552                                                              
## 1553                                                              
## 1554                                                            16
## 1555                                                            19
## 1556                                                            16
## 1557                                                              
## 1558                                                             5
## 1559                                                              
## 1560                                                              
## 1561                                                            19
## 1562                                                            16
## 1563                                                              
## 1564                                                              
## 1565                                                              
## 1566                                                              
## 1567                                                              
## 1568                                                            16
## 1569                                                              
## 1570                                                              
## 1571                                                            16
## 1572                                                              
## 1573                                                              
## 1574                                                            16
## 1575                                                              
## 1576                                                              
## 1577                                                              
## 1578                                                              
## 1579                                                              
## 1580                                                              
## 1581                                                            19
## 1582                                                              
## 1583                                                              
## 1584                                                            16
## 1585                                                              
## 1586                                                              
## 1587                                                              
## 1588                                                             5
## 1589                                                             5
## 1590                                                              
## 1591                                                              
## 1592                                                             5
## 1593                                                              
## 1594                                                              
## 1595                                                             5
## 1596                                                              
## 1597                                                              
## 1598                                                             5
## 1599                                                              
## 1600                                                             5
## 1601                                                              
## 1602                                                            19
## 1603                                                              
## 1604                                                              
## 1605                                                            19
## 1606                                                              
## 1607                                                            19
## 1608                                                              
## 1609                                                              
## 1610                                                            16
## 1611                                                              
## 1612                                                              
## 1613                                                            19
## 1614                                                              
## 1615                                                              
## 1616                                                             5
## 1617                                                             5
## 1618                                                            19
## 1619                                                              
## 1620                                                            16
## 1621                                                              
## 1622                                                              
## 1623                                                              
## 1624                                                             5
## 1625                                                              
## 1626                                                              
## 1627                                                              
## 1628                                                              
## 1629                                                              
## 1630                                                              
## 1631                                                              
## 1632                                                              
## 1633                                                              
## 1634                                                              
## 1635                                                              
## 1636                                                            19
## 1637                                                              
## 1638                                                              
## 1639                                                            19
## 1640                                                             5
## 1641                                                            16
## 1642                                                              
## 1643                                                            19
## 1644                                                              
## 1645                                                              
## 1646                                                             5
## 1647                                                            16
## 1648                                                            16
## 1649                                                             5
## 1650                                                              
## 1651                                                             5
## 1652                                                              
## 1653                                                              
## 1654                                                             5
## 1655                                                              
## 1656                                                              
## 1657                                                            16
## 1658                                                              
## 1659                                                              
## 1660                                                              
## 1661                                                            16
## 1662                                                              
## 1663                                                              
## 1664                                                              
## 1665                                                              
## 1666                                                              
## 1667                                                              
## 1668                                                             5
## 1669                                                             5
## 1670                                                            19
## 1671                                                             5
## 1672                                                            19
## 1673                                                              
## 1674                                                              
## 1675                                                             5
## 1676                                                              
## 1677                                                              
## 1678                                                            23
## 1679                                                            19
## 1680                                                              
## 1681                                                              
## 1682                                                              
## 1683                                                            19
## 1684                                                              
## 1685                                                             5
## 1686                                                              
## 1687                                                            16
## 1688                                                             5
## 1689                                                              
## 1690                                                             5
## 1691                                                              
## 1692                                                              
## 1693                                                            16
## 1694                                                             5
## 1695                                                            19
## 1696                                                              
## 1697                                                             5
## 1698                                                            16
## 1699                                                              
## 1700                                                              
## 1701                                                              
## 1702                                                            16
## 1703                                                              
## 1704                                                            19
## 1705                                                            19
## 1706                                                             5
## 1707                                                              
## 1708                                                             5
## 1709                                                              
## 1710                                                              
## 1711                                                              
## 1712                                                              
## 1713                                                            16
## 1714                                                            19
## 1715                                                              
## 1716                                                             5
## 1717                                                              
## 1718                                                            19
## 1719                                                              
## 1720                                                             5
## 1721                                                            16
## 1722                                                              
## 1723                                                              
## 1724                                                              
## 1725                                                            16
## 1726                                                              
## 1727                                                            16
## 1728                                                            19
## 1729                                                              
## 1730                                                              
## 1731                                                             5
## 1732                                                              
## 1733                                                              
## 1734                                                             5
## 1735                                                              
## 1736                                                            19
## 1737                                                            16
## 1738                                                              
## 1739                                                              
## 1740                                                              
## 1741                                                            19
## 1742                                                              
## 1743                                                              
## 1744                                                              
## 1745                                                              
## 1746                                                            16
## 1747                                                             5
## 1748                                                             5
## 1749                                                            19
## 1750                                                             5
## 1751                                                             5
## 1752                                                              
## 1753                                                            16
## 1754                                                            19
## 1755                                                              
## 1756                                                              
## 1757                                                              
## 1758                                                              
## 1759                                                              
## 1760                                                            16
## 1761                                                             5
## 1762                                                              
## 1763                                                            16
## 1764                                                             5
## 1765                                                              
## 1766                                                             5
## 1767                                                              
## 1768                                                              
## 1769                                                             5
## 1770                                                              
## 1771                                                             5
## 1772                                                            16
## 1773                                                            16
## 1774                                                              
## 1775                                                              
## 1776                                                              
## 1777                                                              
## 1778                                                            19
## 1779                                                            19
## 1780                                                            16
## 1781                                                             5
## 1782                                                              
## 1783                                                              
## 1784                                                              
## 1785                                                            16
## 1786                                                              
## 1787                                                            16
## 1788                                                              
## 1789                                                            16
## 1790                                                              
## 1791                                                             5
## 1792                                                            16
## 1793                                                              
## 1794                                                              
## 1795                                                              
## 1796                                                              
## 1797                                                              
## 1798                                                              
## 1799                                                              
## 1800                                                              
## 1801                                                            16
## 1802                                                              
## 1803                                                             5
## 1804                                                              
## 1805                                                             5
## 1806                                                             5
## 1807                                                            16
## 1808                                                            16
## 1809                                                            16
## 1810                                                             5
## 1811                                                             5
## 1812                                                              
## 1813                                                            16
## 1814                                                            19
## 1815                                                             5
## 1816                                                            19
## 1817                                                              
## 1818                                                            19
## 1819                                                             5
## 1820                                                              
## 1821                                                              
## 1822                                                              
## 1823                                                            19
## 1824                                                              
## 1825                                                              
## 1826                                                              
## 1827                                                            16
## 1828                                                              
## 1829                                                            16
## 1830                                                              
## 1831                                                              
## 1832                                                              
## 1833                                                              
## 1834                                                             5
## 1835                                                            16
## 1836                                                              
## 1837                                                             5
## 1838                                                             5
## 1839                                                              
## 1840                                                            19
## 1841                                                              
## 1842                                                              
## 1843                                                              
## 1844                                                             5
## 1845                                                              
## 1846                                                              
## 1847                                                              
## 1848                                                              
## 1849                                                            19
## 1850                                                            16
## 1851                                                            16
## 1852                                                             5
## 1853                                                              
## 1854                                                             5
## 1855                                                              
## 1856                                                            16
## 1857                                                              
## 1858                                                              
## 1859                                                            19
## 1860                                                              
## 1861                                                             5
## 1862                                                              
## 1863                                                              
## 1864                                                              
## 1865                                                              
## 1866                                                            16
## 1867                                                              
## 1868                                                              
## 1869                                                             5
## 1870                                                              
## 1871                                                             5
## 1872                                                              
## 1873                                                              
## 1874                                                             5
## 1875                                                              
## 1876                                                             5
## 1877                                                             5
## 1878                                                              
## 1879                                                            19
## 1880                                                              
## 1881                                                              
## 1882                                                            16
## 1883                                                              
## 1884                                                              
## 1885                                                              
## 1886                                                              
## 1887                                                             5
## 1888                                                            16
## 1889                                                              
## 1890                                                             5
## 1891                                                              
## 1892                                                            16
## 1893                                                              
## 1894                                                              
## 1895                                                              
## 1896                                                            19
## 1897                                                            16
## 1898                                                              
## 1899                                                             5
## 1900                                                              
## 1901                                                             5
## 1902                                                            16
## 1903                                                              
## 1904                                                              
## 1905                                                            19
## 1906                                                             5
## 1907                                                              
## 1908                                                              
## 1909                                                              
## 1910                                                              
## 1911                                                              
## 1912                                                              
## 1913                                                              
## 1914                                                              
## 1915                                                            16
## 1916                                                             5
## 1917                                                              
## 1918                                                              
## 1919                                                             5
## 1920                                                            19
## 1921                                                             5
## 1922                                                            16
## 1923                                                            16
## 1924                                                            19
## 1925                                                              
## 1926                                                              
## 1927                                                              
## 1928                                                              
## 1929                                                              
## 1930                                                              
## 1931                                                              
## 1932                                                             5
## 1933                                                              
## 1934                                                              
## 1935                                                              
## 1936                                                              
## 1937                                                             5
## 1938                                                             5
## 1939                                                              
## 1940                                                            19
## 1941                                                            19
## 1942                                                             5
## 1943                                                              
## 1944                                                              
## 1945                                                              
## 1946                                                              
## 1947                                                              
## 1948                                                            16
## 1949                                                            16
## 1950                                                              
## 1951                                                            16
## 1952                                                             5
## 1953                                                              
## 1954                                                              
## 1955                                                              
## 1956                                                             5
## 1957                                                            19
## 1958                                                              
## 1959                                                            19
## 1960                                                              
## 1961                                                              
## 1962                                                              
## 1963                                                            19
## 1964                                                              
## 1965                                                              
## 1966                                                             5
## 1967                                                            19
## 1968                                                              
## 1969                                                            19
## 1970                                                              
## 1971                                                            19
## 1972                                                              
## 1973                                                              
## 1974                                                              
## 1975                                                              
## 1976                                                            19
## 1977                                                            16
## 1978                                                              
## 1979                                                              
## 1980                                                              
## 1981                                                             5
## 1982                                                            16
## 1983                                                             5
## 1984                                                              
## 1985                                                              
## 1986                                                              
## 1987                                                            16
## 1988                                                            16
## 1989                                                            16
## 1990                                                            16
## 1991                                                              
## 1992                                                              
## 1993                                                              
## 1994                                                              
## 1995                                                              
## 1996                                                              
## 1997                                                              
## 1998                                                              
## 1999                                                             5
## 2000                                                              
## 2001                                                             5
## 2002                                                              
## 2003                                                              
## 2004                                                              
## 2005                                                            16
## 2006                                                            19
## 2007                                                              
## 2008                                                             5
## 2009                                                              
## 2010                                                              
## 2011                                                            19
## 2012                                                              
## 2013                                                            16
## 2014                                                             5
## 2015                                                              
## 2016                                                              
## 2017                                                             5
## 2018                                                              
## 2019                                                            19
## 2020                                                              
## 2021                                                             5
## 2022                                                              
## 2023                                                             5
## 2024                                                              
## 2025                                                             5
## 2026                                                              
## 2027                                                            16
## 2028                                                              
## 2029                                                              
## 2030                                                              
## 2031                                                            16
## 2032                                                              
## 2033                                                             5
## 2034                                                              
## 2035                                                             5
## 2036                                                            19
## 2037                                                              
## 2038                                                              
## 2039                                                              
## 2040                                                              
## 2041                                                              
## 2042                                                              
## 2043                                                             5
## 2044                                                              
## 2045                                                              
## 2046                                                              
## 2047                                                              
## 2048                                                              
## 2049                                                            16
## 2050                                                            16
## 2051                                                              
## 2052                                                              
## 2053                                                            16
## 2054                                                              
## 2055                                                              
## 2056                                                              
## 2057                                                             5
## 2058                                                              
## 2059                                                              
## 2060                                                              
## 2061                                                            16
## 2062                                                            19
## 2063                                                              
## 2064                                                              
## 2065                                                              
## 2066                                                              
## 2067                                                            16
## 2068                                                              
## 2069                                                              
## 2070                                                              
## 2071                                                            16
## 2072                                                             5
## 2073                                                              
## 2074                                                              
## 2075                                                            16
## 2076                                                            19
## 2077                                                              
## 2078                                                              
## 2079                                                              
## 2080                                                            16
## 2081                                                            16
## 2082                                                              
## 2083                                                            16
## 2084                                                              
## 2085                                                              
## 2086                                                             5
## 2087                                                              
## 2088                                                            16
## 2089                                                            16
## 2090                                                            19
## 2091                                                              
## 2092                                                              
## 2093                                                              
## 2094                                                            19
## 2095                                                              
## 2096                                                              
## 2097                                                              
## 2098                                                            16
## 2099                                                              
## 2100                                                              
## 2101                                                              
## 2102                                                              
## 2103                                                              
## 2104                                                              
## 2105                                                              
## 2106                                                            16
## 2107                                                            16
## 2108                                                             5
## 2109                                                            19
## 2110                                                            16
## 2111                                                            19
## 2112                                                              
## 2113                                                              
## 2114                                                            16
## 2115                                                              
## 2116                                                             5
## 2117                                                              
## 2118                                                              
## 2119                                                              
## 2120                                                              
## 2121                                                            16
## 2122                                                            16
## 2123                                                              
## 2124                                                              
## 2125                                                              
## 2126                                                            19
## 2127                                                            16
## 2128                                                              
## 2129                                                              
## 2130                                                              
## 2131                                                              
## 2132                                                            19
## 2133                                                              
## 2134                                                              
## 2135                                                              
## 2136                                                              
## 2137                                                              
## 2138                                                            19
## 2139                                                            19
## 2140                                                            19
## 2141                                                            19
## 2142                                                             5
## 2143                                                              
## 2144                                                            16
## 2145                                                            19
## 2146                                                              
## 2147                                                             5
## 2148                                                              
## 2149                                                              
## 2150                                                              
## 2151                                                              
## 2152                                                            19
## 2153                                                              
## 2154                                                              
## 2155                                                             5
## 2156                                                              
## 2157                                                            19
## 2158                                                              
## 2159                                                              
## 2160                                                              
## 2161                                                              
## 2162                                                            19
## 2163                                                            16
## 2164                                                              
## 2165                                                            16
## 2166                                                              
## 2167                                                             5
## 2168                                                              
## 2169                                                            19
## 2170                                                              
## 2171                                                              
## 2172                                                              
## 2173                                                              
## 2174                                                              
## 2175                                                             5
## 2176                                                            19
## 2177                                                             5
## 2178                                                              
## 2179                                                             5
## 2180                                                              
## 2181                                                              
## 2182                                                            16
## 2183                                                              
## 2184                                                            19
## 2185                                                            19
## 2186                                                             5
## 2187                                                             5
## 2188                                                            16
## 2189                                                              
## 2190                                                              
## 2191                                                              
## 2192                                                             5
## 2193                                                              
## 2194                                                            16
## 2195                                                              
## 2196                                                            19
## 2197                                                              
## 2198                                                            16
## 2199                                                              
## 2200                                                            19
## 2201                                                              
## 2202                                                            16
## 2203                                                            16
## 2204                                                              
## 2205                                                             5
## 2206                                                            19
## 2207                                                              
## 2208                                                              
## 2209                                                              
## 2210                                                            19
## 2211                                                              
## 2212                                                              
## 2213                                                            16
## 2214                                                            16
## 2215                                                              
## 2216                                                              
## 2217                                                             5
## 2218                                                              
## 2219                                                            16
## 2220                                                              
## 2221                                                              
## 2222                                                              
## 2223                                                              
## 2224                                                              
## 2225                                                            19
## 2226                                                             5
## 2227                                                              
## 2228                                                              
## 2229                                                              
## 2230                                                             5
## 2231                                                            16
## 2232                                                             5
## 2233                                                              
## 2234                                                            16
## 2235                                                            16
## 2236                                                            16
## 2237                                                             5
## 2238                                                            16
## 2239                                                              
## 2240                                                              
## 2241                                                            19
## 2242                                                              
## 2243                                                             5
## 2244                                                              
## 2245                                                              
## 2246                                                            16
## 2247                                                              
## 2248                                                             5
## 2249                                                              
## 2250                                                            19
## 2251                                                              
## 2252                                                              
## 2253                                                              
## 2254                                                              
## 2255                                                            19
## 2256                                                            16
## 2257                                                            16
## 2258                                                             5
## 2259                                                            19
## 2260                                                              
## 2261                                                              
## 2262                                                              
## 2263                                                              
## 2264                                                              
## 2265                                                              
## 2266                                                            19
## 2267                                                            19
## 2268                                                              
## 2269                                                            16
## 2270                                                            16
## 2271                                                             5
## 2272                                                              
## 2273                                                              
## 2274                                                             5
## 2275                                                            19
## 2276                                                             5
## 2277                                                              
## 2278                                                              
## 2279                                                            16
## 2280                                                              
## 2281                                                            16
## 2282                                                              
## 2283                                                              
## 2284                                                            16
## 2285                                                              
## 2286                                                              
## 2287                                                            19
## 2288                                                            16
## 2289                                                              
## 2290                                                              
## 2291                                                             5
## 2292                                                             5
## 2293                                                             5
## 2294                                                              
## 2295                                                            16
## 2296                                                            16
## 2297                                                              
## 2298                                                            16
## 2299                                                              
## 2300                                                            16
## 2301                                                              
## 2302                                                              
## 2303                                                             5
## 2304                                                              
## 2305                                                            19
## 2306                                                            19
## 2307                                                            19
## 2308                                                             5
## 2309                                                              
## 2310                                                              
## 2311                                                            16
## 2312                                                              
## 2313                                                              
## 2314                                                              
## 2315                                                            16
## 2316                                                            16
## 2317                                                              
## 2318                                                            19
## 2319                                                             5
## 2320                                                             5
## 2321                                                             5
## 2322                                                              
## 2323                                                              
## 2324                                                             5
## 2325                                                              
## 2326                                                              
## 2327                                                             5
## 2328                                                              
## 2329                                                            16
## 2330                                                            16
## 2331                                                             5
## 2332                                                            19
## 2333                                                            19
## 2334                                                             5
## 2335                                                            16
## 2336                                                             5
## 2337                                                            19
## 2338                                                              
## 2339                                                            16
## 2340                                                            16
## 2341                                                             5
## 2342                                                             5
## 2343                                                            16
## 2344                                                              
## 2345                                                            19
## 2346                                                             5
## 2347                                                              
## 2348                                                              
## 2349                                                              
## 2350                                                              
## 2351                                                              
## 2352                                                            16
## 2353                                                             5
## 2354                                                              
## 2355                                                            19
## 2356                                                             5
## 2357                                                             5
## 2358                                                              
## 2359                                                              
## 2360                                                            19
## 2361                                                              
## 2362                                                              
## 2363                                                              
## 2364                                                              
## 2365                                                              
## 2366                                                            19
## 2367                                                             5
## 2368                                                              
## 2369                                                            19
## 2370                                                             5
## 2371                                                              
## 2372                                                              
## 2373                                                              
## 2374                                                            19
## 2375                                                              
## 2376                                                             5
## 2377                                                              
## 2378                                                            16
## 2379                                                             5
## 2380                                                              
## 2381                                                              
## 2382                                                            16
## 2383                                                            19
## 2384                                                            19
## 2385                                                              
## 2386                                                              
## 2387                                                              
## 2388                                                            16
## 2389                                                              
## 2390                                                            19
## 2391                                                              
## 2392                                                             5
## 2393                                                             5
## 2394                                                              
## 2395                                                            19
## 2396                                                            19
## 2397                                                            16
## 2398                                                              
## 2399                                                              
## 2400                                                            16
## 2401                                                              
## 2402                                                            19
## 2403                                                            16
## 2404                                                            16
## 2405                                                            16
## 2406                                                              
## 2407                                                              
## 2408                                                              
## 2409                                                             5
## 2410                                                            19
## 2411                                                              
## 2412                                                              
## 2413                                                              
## 2414                                                             5
## 2415                                                            16
## 2416                                                              
## 2417                                                             5
## 2418                                                              
## 2419                                                            19
## 2420                                                              
## 2421                                                              
## 2422                                                              
## 2423                                                              
## 2424                                                            16
## 2425                                                              
## 2426                                                            19
## 2427                                                              
## 2428                                                            19
## 2429                                                             5
## 2430                                                            16
## 2431                                                            16
## 2432                                                            19
## 2433                                                            16
## 2434                                                              
## 2435                                                              
## 2436                                                              
## 2437                                                            16
## 2438                                                            19
## 2439                                                              
## 2440                                                            19
## 2441                                                              
## 2442                                                            16
## 2443                                                              
## 2444                                                            19
## 2445                                                              
## 2446                                                              
## 2447                                                             5
## 2448                                                              
## 2449                                                            19
## 2450                                                              
## 2451                                                             5
## 2452                                                              
## 2453                                                             5
## 2454                                                             5
## 2455                                                              
## 2456                                                            19
## 2457                                                              
## 2458                                                             5
## 2459                                                              
## 2460                                                              
## 2461                                                              
## 2462                                                              
## 2463                                                              
## 2464                                                              
## 2465                                                            16
## 2466                                                             5
## 2467                                                              
## 2468                                                            19
## 2469                                                              
## 2470                                                             5
## 2471                                                              
## 2472                                                            19
## 2473                                                            16
## 2474                                                             5
## 2475                                                              
## 2476                                                              
## 2477                                                              
## 2478                                                              
## 2479                                                             5
## 2480                                                              
## 2481                                                              
## 2482                                                              
## 2483                                                            16
## 2484                                                              
## 2485                                                            16
## 2486                                                              
## 2487                                                            19
## 2488                                                             5
## 2489                                                            19
## 2490                                                              
## 2491                                                              
## 2492                                                              
## 2493                                                            19
## 2494                                                            19
## 2495                                                              
## 2496                                                            16
## 2497                                                            19
## 2498                                                              
## 2499                                                            19
## 2500                                                              
## 2501                                                            16
## 2502                                                            16
## 2503                                                              
## 2504                                                              
## 2505                                                              
## 2506                                                            19
## 2507                                                              
## 2508                                                              
## 2509                                                              
## 2510                                                             5
## 2511                                                              
## 2512                                                              
## 2513                                                             5
## 2514                                                              
## 2515                                                              
## 2516                                                              
## 2517                                                              
## 2518                                                            16
## 2519                                                              
## 2520                                                            19
## 2521                                                              
## 2522                                                              
## 2523                                                              
## 2524                                                            19
## 2525                                                             5
## 2526                                                              
## 2527                                                              
## 2528                                                              
## 2529                                                            16
## 2530                                                              
## 2531                                                            16
## 2532                                                             5
## 2533                                                            16
## 2534                                                             5
## 2535                                                              
## 2536                                                             5
## 2537                                                              
## 2538                                                            19
## 2539                                                            19
## 2540                                                            19
## 2541                                                              
## 2542                                                              
## 2543                                                             5
## 2544                                                              
## 2545                                                              
## 2546                                                            16
## 2547                                                            19
## 2548                                                              
## 2549                                                              
## 2550                                                            19
## 2551                                                              
## 2552                                                            19
## 2553                                                              
## 2554                                                            16
## 2555                                                              
## 2556                                                             5
## 2557                                                            19
## 2558                                                            19
## 2559                                                            16
## 2560                                                              
## 2561                                                            16
## 2562                                                              
## 2563                                                             5
## 2564                                                              
## 2565                                                              
## 2566                                                            16
## 2567                                                              
## 2568                                                              
## 2569                                                             5
## 2570                                                              
## 2571                                                             5
## 2572                                                              
## 2573                                                            19
## 2574                                                              
## 2575                                                              
## 2576                                                              
## 2577                                                              
## 2578                                                              
## 2579                                                              
## 2580                                                             5
## 2581                                                              
## 2582                                                            16
## 2583                                                            19
## 2584                                                              
## 2585                                                            19
## 2586                                                              
## 2587                                                            16
## 2588                                                            16
## 2589                                                              
## 2590                                                              
## 2591                                                             5
## 2592                                                              
## 2593                                                              
## 2594                                                            16
## 2595                                                             5
## 2596                                                            19
## 2597                                                             5
## 2598                                                              
## 2599                                                              
## 2600                                                            16
## 2601                                                              
## 2602                                                              
## 2603                                                            16
## 2604                                                              
## 2605                                                              
## 2606                                                            19
## 2607                                                            19
## 2608                                                              
## 2609                                                            19
## 2610                                                              
## 2611                                                              
## 2612                                                              
## 2613                                                              
## 2614                                                              
## 2615                                                              
## 2616                                                            16
## 2617                                                            16
## 2618                                                              
## 2619                                                              
## 2620                                                              
## 2621                                                            16
## 2622                                                              
## 2623                                                              
## 2624                                                            16
## 2625                                                            19
## 2626                                                              
## 2627                                                              
## 2628                                                              
## 2629                                                              
## 2630                                                              
## 2631                                                            19
## 2632                                                            19
## 2633                                                              
## 2634                                                              
## 2635                                                              
## 2636                                                            16
## 2637                                                              
## 2638                                                              
## 2639                                                              
## 2640                                                             5
## 2641                                                              
## 2642                                                             5
## 2643                                                              
## 2644                                                              
## 2645                                                              
## 2646                                                              
## 2647                                                              
## 2648                                                            19
## 2649                                                             5
## 2650                                                              
## 2651                                                              
## 2652                                                              
## 2653                                                            16
## 2654                                                              
## 2655                                                            19
## 2656                                                              
## 2657                                                              
## 2658                                                              
## 2659                                                              
## 2660                                                             5
## 2661                                                            19
## 2662                                                              
## 2663                                                              
## 2664                                                              
## 2665                                                              
## 2666                                                              
## 2667                                                              
## 2668                                                             5
## 2669                                                              
## 2670                                                             5
## 2671                                                              
## 2672                                                              
## 2673                                                             5
## 2674                                                              
## 2675                                                             5
## 2676                                                              
## 2677                                                              
## 2678                                                            19
## 2679                                                              
## 2680                                                              
## 2681                                                            19
## 2682                                                              
## 2683                                                            19
## 2684                                                              
## 2685                                                              
## 2686                                                              
## 2687                                                              
## 2688                                                              
## 2689                                                            19
## 2690                                                            19
## 2691                                                              
## 2692                                                              
## 2693                                                              
## 2694                                                              
## 2695                                                            16
## 2696                                                              
## 2697                                                              
## 2698                                                            19
## 2699                                                            16
## 2700                                                              
## 2701                                                              
## 2702                                                             5
## 2703                                                            19
## 2704                                                              
## 2705                                                              
## 2706                                                              
## 2707                                                              
## 2708                                                            19
## 2709                                                              
## 2710                                                             5
## 2711                                                             5
## 2712                                                            16
## 2713                                                              
## 2714                                                             5
## 2715                                                             5
## 2716                                                              
## 2717                                                            16
## 2718                                                             5
## 2719                                                              
## 2720                                                              
## 2721                                                              
## 2722                                                              
## 2723                                                              
## 2724                                                              
## 2725                                                            19
## 2726                                                              
## 2727                                                             5
## 2728                                                              
## 2729                                                            16
## 2730                                                            16
## 2731                                                             5
## 2732                                                             5
## 2733                                                              
## 2734                                                            16
## 2735                                                              
## 2736                                                              
## 2737                                                             5
## 2738                                                            16
## 2739                                                              
## 2740                                                            16
## 2741                                                              
## 2742                                                              
## 2743                                                            16
## 2744                                                            16
## 2745                                                              
## 2746                                                              
## 2747                                                            16
## 2748                                                            19
## 2749                                                              
## 2750                                                             5
## 2751                                                              
## 2752                                                              
## 2753                                                            19
## 2754                                                             5
## 2755                                                              
## 2756                                                              
## 2757                                                              
## 2758                                                              
## 2759                                                             5
## 2760                                                             5
## 2761                                                              
## 2762                                                              
## 2763                                                            19
## 2764                                                              
## 2765                                                              
## 2766                                                              
## 2767                                                              
## 2768                                                             5
## 2769                                                            16
## 2770                                                             5
## 2771                                                            16
## 2772                                                              
## 2773                                                             5
## 2774                                                              
## 2775                                                            19
## 2776                                                              
## 2777                                                              
## 2778                                                              
## 2779                                                              
## 2780                                                              
## 2781                                                              
## 2782                                                              
## 2783                                                              
## 2784                                                             5
## 2785                                                              
## 2786                                                            19
## 2787                                                              
## 2788                                                              
## 2789                                                            16
## 2790                                                              
## 2791                                                             5
## 2792                                                              
## 2793                                                              
## 2794                                                            16
## 2795                                                            16
## 2796                                                             5
## 2797                                                              
## 2798                                                              
## 2799                                                              
## 2800                                                             5
## 2801                                                              
## 2802                                                            19
## 2803                                                              
## 2804                                                              
## 2805                                                              
## 2806                                                             5
## 2807                                                              
## 2808                                                              
## 2809                                                              
## 2810                                                              
## 2811                                                              
## 2812                                                             5
## 2813                                                              
## 2814                                                            16
## 2815                                                            16
## 2816                                                              
## 2817                                                            19
## 2818                                                              
## 2819                                                              
## 2820                                                            19
## 2821                                                            19
## 2822                                                             5
## 2823                                                              
## 2824                                                             5
## 2825                                                              
## 2826                                                             5
## 2827                                                            19
## 2828                                                            19
## 2829                                                             5
## 2830                                                             5
## 2831                                                              
## 2832                                                            19
## 2833                                                              
## 2834                                                              
## 2835                                                             5
## 2836                                                              
## 2837                                                            16
## 2838                                                              
## 2839                                                              
## 2840                                                             5
## 2841                                                              
## 2842                                                              
## 2843                                                            19
## 2844                                                             5
## 2845                                                            19
## 2846                                                            19
## 2847                                                            19
## 2848                                                              
## 2849                                                            16
## 2850                                                             5
## 2851                                                            16
## 2852                                                              
## 2853                                                            16
## 2854                                                            16
## 2855                                                              
## 2856                                                            16
## 2857                                                            16
## 2858                                                              
## 2859                                                              
## 2860                                                              
## 2861                                                              
## 2862                                                            16
## 2863                                                              
## 2864                                                              
## 2865                                                              
## 2866                                                             5
## 2867                                                            16
## 2868                                                              
## 2869                                                              
## 2870                                                             5
## 2871                                                              
## 2872                                                              
## 2873                                                              
## 2874                                                            16
## 2875                                                              
## 2876                                                              
## 2877                                                              
## 2878                                                              
## 2879                                                            16
## 2880                                                            19
## 2881                                                             5
## 2882                                                            16
## 2883                                                              
## 2884                                                            19
## 2885                                                              
## 2886                                                              
## 2887                                                              
## 2888                                                             5
## 2889                                                            16
## 2890                                                              
## 2891                                                             5
## 2892                                                              
## 2893                                                              
## 2894                                                            16
## 2895                                                              
## 2896                                                              
## 2897                                                              
## 2898                                                              
## 2899                                                             5
## 2900                                                             5
## 2901                                                              
## 2902                                                            16
## 2903                                                             5
## 2904                                                             5
## 2905                                                              
## 2906                                                            16
## 2907                                                              
## 2908                                                              
## 2909                                                              
## 2910                                                             5
## 2911                                                              
## 2912                                                              
## 2913                                                              
## 2914                                                            16
## 2915                                                              
## 2916                                                              
## 2917                                                              
## 2918                                                              
## 2919                                                              
## 2920                                                              
## 2921                                                              
## 2922                                                              
## 2923                                                              
## 2924                                                              
## 2925                                                              
## 2926                                                            19
## 2927                                                            16
## 2928                                                              
## 2929                                                              
## 2930                                                              
## 2931                                                            16
## 2932                                                              
## 2933                                                              
## 2934                                                            19
## 2935                                                              
## 2936                                                              
## 2937                                                              
## 2938                                                            16
## 2939                                                              
## 2940                                                              
## 2941                                                              
## 2942                                                            16
## 2943                                                              
## 2944                                                            16
## 2945                                                              
## 2946                                                             5
## 2947                                                              
## 2948                                                              
## 2949                                                             5
## 2950                                                            19
## 2951                                                              
## 2952                                                            16
## 2953                                                              
## 2954                                                              
## 2955                                                              
## 2956                                                             5
## 2957                                                            19
## 2958                                                              
## 2959                                                            16
## 2960                                                              
## 2961                                                            16
## 2962                                                             5
## 2963                                                             5
## 2964                                                              
## 2965                                                              
## 2966                                                            19
## 2967                                                              
## 2968                                                             5
## 2969                                                             5
## 2970                                                              
## 2971                                                              
## 2972                                                             5
## 2973                                                              
## 2974                                                              
## 2975                                                            16
## 2976                                                            16
## 2977                                                              
## 2978                                                              
## 2979                                                              
## 2980                                                             5
## 2981                                                              
## 2982                                                              
## 2983                                                              
## 2984                                                              
## 2985                                                              
## 2986                                                              
## 2987                                                              
## 2988                                                             5
## 2989                                                             5
## 2990                                                              
## 2991                                                              
## 2992                                                              
## 2993                                                              
## 2994                                                              
## 2995                                                              
## 2996                                                            16
## 2997                                                            19
## 2998                                                             5
## 2999                                                              
## 3000                                                              
## 3001                                                             5
## 3002                                                              
## 3003                                                              
## 3004                                                             5
## 3005                                                              
## 3006                                                              
## 3007                                                            19
## 3008                                                              
## 3009                                                              
## 3010                                                              
## 3011                                                            16
## 3012                                                              
## 3013                                                             5
## 3014                                                              
## 3015                                                            19
## 3016                                                             5
## 3017                                                             5
## 3018                                                              
## 3019                                                              
## 3020                                                              
## 3021                                                              
## 3022                                                            19
## 3023                                                             5
## 3024                                                              
## 3025                                                              
## 3026                                                              
## 3027                                                            19
## 3028                                                              
## 3029                                                              
## 3030                                                              
## 3031                                                              
## 3032                                                              
## 3033                                                              
## 3034                                                              
## 3035                                                              
## 3036                                                              
## 3037                                                            19
## 3038                                                              
## 3039                                                            16
## 3040                                                              
## 3041                                                              
## 3042                                                              
## 3043                                                             5
## 3044                                                              
## 3045                                                            19
## 3046                                                              
## 3047                                                              
## 3048                                                              
## 3049                                                            19
## 3050                                                              
## 3051                                                              
## 3052                                                              
## 3053                                                              
## 3054                                                              
## 3055                                                              
## 3056                                                              
## 3057                                                            19
## 3058                                                              
## 3059                                                              
## 3060                                                            19
## 3061                                                            19
## 3062                                                              
## 3063                                                              
## 3064                                                              
## 3065                                                              
## 3066                                                              
## 3067                                                              
## 3068                                                            19
## 3069                                                             5
## 3070                                                              
## 3071                                                            16
## 3072                                                             5
## 3073                                                              
## 3074                                                              
## 3075                                                              
## 3076                                                              
## 3077                                                            16
## 3078                                                              
## 3079                                                             5
## 3080                                                             5
## 3081                                                              
## 3082                                                              
## 3083                                                             5
## 3084                                                            19
## 3085                                                             5
## 3086                                                              
## 3087                                                              
## 3088                                                            19
## 3089                                                             5
## 3090                                                              
## 3091                                                              
## 3092                                                              
## 3093                                                              
## 3094                                                            16
## 3095                                                              
## 3096                                                              
## 3097                                                              
## 3098                                                            16
## 3099                                                              
## 3100                                                              
## 3101                                                              
## 3102                                                              
## 3103                                                             5
## 3104                                                              
## 3105                                                            16
## 3106                                                              
## 3107                                                            16
## 3108                                                              
## 3109                                                              
## 3110                                                            19
## 3111                                                             5
## 3112                                                             5
## 3113                                                              
## 3114                                                              
## 3115                                                             5
## 3116                                                            19
## 3117                                                            19
## 3118                                                              
## 3119                                                              
## 3120                                                              
## 3121                                                              
## 3122                                                              
## 3123                                                            19
## 3124                                                              
## 3125                                                              
## 3126                                                              
## 3127                                                             5
## 3128                                                             5
## 3129                                                            16
## 3130                                                            19
## 3131                                                            19
## 3132                                                              
## 3133                                                              
## 3134                                                            16
## 3135                                                            19
## 3136                                                              
## 3137                                                            19
## 3138                                                            19
## 3139                                                            19
## 3140                                                              
## 3141                                                              
## 3142                                                              
## 3143                                                              
## 3144                                                            16
## 3145                                                              
## 3146                                                              
## 3147                                                              
## 3148                                                              
## 3149                                                             5
## 3150                                                              
## 3151                                                              
## 3152                                                              
## 3153                                                              
## 3154                                                             5
## 3155                                                            16
## 3156                                                              
## 3157                                                              
## 3158                                                              
## 3159                                                              
## 3160                                                              
## 3161                                                            23
## 3162                                                              
## 3163                                                              
## 3164                                                             5
## 3165                                                              
## 3166                                                             5
## 3167                                                              
## 3168                                                              
## 3169                                                              
## 3170                                                             5
## 3171                                                              
## 3172                                                             5
## 3173                                                              
## 3174                                                              
## 3175                                                             5
## 3176                                                              
## 3177                                                              
## 3178                                                              
## 3179                                                             5
## 3180                                                              
## 3181                                                              
## 3182                                                              
## 3183                                                            19
## 3184                                                             5
## 3185                                                              
## 3186                                                              
## 3187                                                              
## 3188                                                              
## 3189                                                            16
## 3190                                                              
## 3191                                                             5
## 3192                                                              
## 3193                                                              
## 3194                                                            16
## 3195                                                             5
## 3196                                                              
## 3197                                                            16
## 3198                                                              
## 3199                                                              
## 3200                                                              
## 3201                                                            19
## 3202                                                              
## 3203                                                              
## 3204                                                            16
## 3205                                                              
## 3206                                                             5
## 3207                                                            19
## 3208                                                              
## 3209                                                              
## 3210                                                              
## 3211                                                              
## 3212                                                              
## 3213                                                            19
## 3214                                                            19
## 3215                                                              
## 3216                                                            19
## 3217                                                              
## 3218                                                              
## 3219                                                              
## 3220                                                              
## 3221                                                            16
## 3222                                                              
## 3223                                                              
## 3224                                                              
## 3225                                                            16
## 3226                                                              
## 3227                                                              
## 3228                                                              
## 3229                                                              
## 3230                                                              
## 3231                                                              
## 3232                                                             5
## 3233                                                             5
## 3234                                                              
## 3235                                                              
## 3236                                                            16
## 3237                                                              
## 3238                                                              
## 3239                                                              
## 3240                                                              
## 3241                                                              
## 3242                                                              
## 3243                                                              
## 3244                                                              
## 3245                                                            19
## 3246                                                              
## 3247                                                              
## 3248                                                            19
## 3249                                                             5
## 3250                                                            16
## 3251                                                             5
## 3252                                                              
## 3253                                                              
## 3254                                                            16
## 3255                                                              
## 3256                                                              
## 3257                                                            19
## 3258                                                              
## 3259                                                            16
## 3260                                                              
## 3261                                                              
## 3262                                                            16
## 3263                                                             5
## 3264                                                             5
## 3265                                                            19
## 3266                                                              
## 3267                                                              
## 3268                                                            19
## 3269                                                             5
## 3270                                                            19
## 3271                                                              
## 3272                                                            16
## 3273                                                              
## 3274                                                            16
## 3275                                                              
## 3276                                                            16
## 3277                                                              
## 3278                                                            16
## 3279                                                            19
## 3280                                                              
## 3281                                                              
## 3282                                                              
## 3283                                                              
## 3284                                                              
## 3285                                                              
## 3286                                                            16
## 3287                                                            19
## 3288                                                              
## 3289                                                              
## 3290                                                              
## 3291                                                              
## 3292                                                             5
## 3293                                                              
## 3294                                                              
## 3295                                                              
## 3296                                                            19
## 3297                                                            16
## 3298                                                              
## 3299                                                              
## 3300                                                              
## 3301                                                              
## 3302                                                              
## 3303                                                            19
## 3304                                                              
## 3305                                                              
## 3306                                                             5
## 3307                                                              
## 3308                                                              
## 3309                                                            19
## 3310                                                              
## 3311                                                              
## 3312                                                              
## 3313                                                              
## 3314                                                              
## 3315                                                              
## 3316                                                            19
## 3317                                                             5
## 3318                                                             5
## 3319                                                            16
## 3320                                                              
## 3321                                                              
## 3322                                                              
## 3323                                                            16
## 3324                                                              
## 3325                                                            19
## 3326                                                             5
## 3327                                                              
## 3328                                                              
## 3329                                                              
## 3330                                                              
## 3331                                                              
## 3332                                                             5
## 3333                                                              
## 3334                                                              
## 3335                                                              
## 3336                                                              
## 3337                                                              
## 3338                                                            16
## 3339                                                             5
## 3340                                                              
## 3341                                                              
## 3342                                                              
## 3343                                                              
## 3344                                                              
## 3345                                                             5
## 3346                                                              
## 3347                                                              
## 3348                                                            19
## 3349                                                              
## 3350                                                              
## 3351                                                            19
## 3352                                                              
## 3353                                                              
## 3354                                                            16
## 3355                                                            19
## 3356                                                             5
## 3357                                                              
## 3358                                                              
## 3359                                                              
## 3360                                                            19
## 3361                                                             5
## 3362                                                              
## 3363                                                              
## 3364                                                              
## 3365                                                              
## 3366                                                            16
## 3367                                                              
## 3368                                                             5
## 3369                                                              
## 3370                                                            16
## 3371                                                              
## 3372                                                            16
## 3373                                                              
## 3374                                                             5
## 3375                                                              
## 3376                                                            19
## 3377                                                             5
## 3378                                                            16
## 3379                                                              
## 3380                                                              
## 3381                                                             5
## 3382                                                            16
## 3383                                                            19
## 3384                                                             5
## 3385                                                              
## 3386                                                              
## 3387                                                            16
## 3388                                                              
## 3389                                                              
## 3390                                                              
## 3391                                                              
## 3392                                                             5
## 3393                                                            16
## 3394                                                              
## 3395                                                             5
## 3396                                                            16
## 3397                                                             5
## 3398                                                            19
## 3399                                                              
## 3400                                                              
## 3401                                                            16
## 3402                                                            16
## 3403                                                            19
## 3404                                                              
## 3405                                                            19
## 3406                                                              
## 3407                                                              
## 3408                                                              
## 3409                                                            16
## 3410                                                             5
## 3411                                                            16
## 3412                                                             5
## 3413                                                              
## 3414                                                            16
## 3415                                                              
## 3416                                                            16
## 3417                                                              
## 3418                                                             5
## 3419                                                              
## 3420                                                              
## 3421                                                              
## 3422                                                              
## 3423                                                            16
## 3424                                                              
## 3425                                                            16
## 3426                                                            16
## 3427                                                              
## 3428                                                            16
## 3429                                                             5
## 3430                                                              
## 3431                                                              
## 3432                                                              
## 3433                                                             5
## 3434                                                              
## 3435                                                              
## 3436                                                              
## 3437                                                              
## 3438                                                              
## 3439                                                              
## 3440                                                            16
## 3441                                                             5
## 3442                                                             5
## 3443                                                            19
## 3444                                                              
## 3445                                                              
## 3446                                                            19
## 3447                                                            16
## 3448                                                            19
##                                                                                       Location
## 1                                                        AVE LUIS MUNOZ MARIN CAGUAS, PR 00725
## 2                                                            ANCORA BRANCH HAMMONTON, NJ 08037
## 3                                                   420 ALBERTSONS PARKWAY BROUSSARD, LA 70518
## 4                                                       3100 DOUGLAS RD CORAL GABLES, FL 33134
## 5                               6515 KEMP BLVD WICHITA FALLS, TX 76308 (33.840213, -98.527677)
## 6                                       300 3RD AVE SE MAGEE, MS 39111 (31.870585, -89.728389)
## 7                                   17750 CALI DRIVE HOUSTON, TX 77090 (30.024186, -95.445783)
## 8                                     413 9TH STREET BRITTON, SD 57430 (45.789215, -97.746049)
## 9                                                        3955 156TH ST NE MARYSVILLE, WA 98271
## 10                                                        ONE CHILDRENS PLAZA DAYTON, OH 45404
## 11                              9241 PARK ROYAL DR FORT MYERS, FL 33908 (26.51088, -81.909271)
## 12                                 5 PERRYRIDGE RD GREENWICH, CT 06830 (41.034395, -73.629632)
## 13                                      2001 LADBROOK KINGWOOD, TX 77339 (30.04461, -95.22854)
## 14                                                         2000 CHAMBERS, BOX A CARO, MI 48723
## 15                                   40 1ST STREET SE WAUKON, IA 52172 (43.268092, -91.474446)
## 16                                                E 65TH ST AT LAKE MICHIGAN CHICAGO, IL 60649
## 17                                                       2731 HEALTHCARE DR SYRACUSE, NE 68446
## 18                                                  300 FONT MARTELLO STREET HUMACAO, PR 00792
## 19                                 1350 EAST 750 NORTH OREM, UT 84097 (40.311262, -111.663668)
## 20                                                            WARD'S ISLAND NEW YORK, NY 10035
## 21                                 6350 E 2ND STREET CASPER, WY 82609 (42.840846, -106.231796)
## 22                                  1401 BAILEY AVE NEEDLES, CA 92363 (34.832836, -114.618317)
## 23                                                          1301 LINCOLN ROAD IDABEL, OK 74745
## 24                                   440 S MARKET SPRINGFIELD, MO 65806 (37.205988, -93.29556)
## 25                                                          CALLER BOX C268 CHEROKEE, NC 28719
## 26                                                  HIGHWAY 86, AT TOPAWA ROAD SELLS, AZ 85634
## 27                            6401 DIRECTORS PARKWAY ABILENE, TX 79606 (32.371613, -99.745009)
## 28                                909 N IOWA AVE DELL RAPIDS, SD 57022 (43.828588, -96.715344)
## 29                                            ANNA MARSH LANE PO BOX 803 BRATTLEBORO, VT 05301
## 30                                   509 WILSON AVENUE EUTAW, AL 35462 (32.844744, -87.889307)
## 31                                                     2ND & FRISCO STREET COLDWATER, KS 67029
## 32                             7000 US HIGHWAY 287 ARLINGTON, TX 76001 (32.630784, -97.175396)
## 33                                  130 HIGHWAY 252 ANDERSON, SC 29622 (34.479407, -82.568256)
## 34                                520 N RIDGEWAY AVE CHICAGO, IL 60624 (41.890512, -87.719833)
## 35                                                         FAGAALU VILLAGE PAGO PAGO, AS 96799
## 36                                                       STATE ROAD 787 KM 1 5 CIDRA, PR 00739
## 37                                 7601 FANNIN STREET HOUSTON, TX 77054 (29.692093, -95.40184)
## 38                                                            P O BOX 130 DILLINGHAM, AK 99576
## 39                       600 N SIOUX POINT ROAD DAKOTA DUNES, SD 57049 (42.504753, -96.496816)
## 40                                                    151 AVE OSVALDO MOLINA FAJARDO, PR 00738
## 41                                   366 BROADWAY AMITYVILLE, NY 11701 (40.684765, -73.418446)
## 42                                                              1611 SPUR 576 RANKIN, TX 79778
## 43                                                              2475 BROADWAY HELENA, MT 59601
## 44                                                      5445 LABRANCH STREET HOUSTON, TX 77004
## 45                                 2025 DESOTO ST SHREVEPORT, LA 71103 (32.472758, -93.771086)
## 46                                    350 FISHER ROAD BERLIN, VT 05602 (44.222213, -72.565305)
## 47                                                                55 PALM ST ARECIBO, PR 00614
## 48                                                   3550 HIGHWAY 468 WEST WHITFIELD, MS 39193
## 49                                                 3550 HWY 468 W, BLDG 60 WHITFIELD, MS 39193
## 50                                    417 S WHITLOCK ST BREMEN, IN 46506 (41.4436, -86.149957)
## 51                                 1351 ONTARIO RD GREEN BAY, WI 54311 (44.475809, -87.927735)
## 52                              2209 PINEVIEW DRIVE VALDOSTA, GA 31602 (30.859492, -83.259846)
## 53                                                 CARR 844 KM 5 CUPEY BAJO SAN JUAN, PR 00928
## 54                                  CARR 877 KM 1 6 CAMINO LAS LOMAS RR2 RIO PIEDRAS, PR 00928
## 55                                                           WADE AVENUE CATONSVILLE, MD 21228
## 56                                      1120 PINE ST STANLEY, WI 54768 (44.955311, -90.920564)
## 57                     3101 NORTH TARRANT PARKWAY FORT WORTH, TX 76177 (32.898527, -97.313814)
## 58                             3015 VETERANS PARKWAY MOULTRIE, GA 31788 (31.129247, -83.77355)
## 59                        1503 CEDAR CREST BOULEVARD ALLENTOWN, PA 18104 (40.61219, -75.53275)
## 60                                801 EASTERN BYPASS RICHMOND, KY 40475 (37.73176, -84.293078)
## 61                               815 MARKET STREET GALVESTON, TX 77550 (29.309747, -94.777187)
## 62                            1220 MONTGOMERY STREET CUSTER, SD 57730 (43.772816, -103.591173)
## 63                                     410 DENIM DRIVE ERWIN, NC 28339 (35.326962, -78.669669)
## 64                                 325 SPRING STREET RED BUD, IL 62278 (38.209605, -89.996408)
## 65                                   1401 RIVER RD GREENWOOD, MS 38935 (33.518254, -90.200189)
## 66                                    289 COUNTY ROAD WINDSOR, VT 05089 (43.487522, -72.40091)
## 67                                                        56-45 MAIN STREET FLUSHING, NY 11355
## 68                      2434 WEST BELVEDERE AVENUE BALTIMORE, MD 21209 (39.353266, -76.665024)
## 69                      3131 THOMASVILLE HWY BOX 40 MOULTRIE, GA 31768 (31.126747, -83.782918)
## 70                             11234 ANDERSON ST LOMA LINDA, CA 92354 (34.049482, -117.261122)
## 71                            2001 MEDICAL PARKWAY ANNAPOLIS, MD 21401 (38.991115, -76.536058)
## 72                       929 NORTH ST FRANCIS STREET WICHITA, KS 67214 (37.700627, -97.331694)
## 73                              100 SOUTH STREET SOUTHBRIDGE, MA 01550 (42.077182, -72.042065)
## 74                                   1400 JACKSON ST DENVER, CO 80206 (39.740019, -104.942892)
## 75                                        312 S ADAMS TERRY, MT 59349 (46.791506, -105.315997)
## 76             850 W CENTRAL TEXAS EXPRESSWAY HARKER HEIGHTS, TX 76548 (31.074292, -97.683707)
## 77                                347 MAGNOLIA DRIVE RALEIGH, MS 39153 (32.000998, -89.520667)
## 78                                720 W CENTRAL ST EL DORADO, KS 67042 (37.817438, -96.858795)
## 79                               3440 E LA PALMA AVE ANAHEIM, CA 92806 (33.854441, -117.84411)
## 80                        438 W LAS TUNAS DRIVE SAN GABRIEL, CA 91776 (34.102461, -118.105572)
## 81                              309 BELMONT STREET WORCESTER, MA 01604 (42.273985, -71.762596)
## 82                                         1013 S WELLS EDNA, TX 77957 (28.969388, -96.634839)
## 83                         201 TABERNACLE ROAD BLACK MOUNTAIN, NC 28711 (35.61144, -82.350177)
## 84                        2131 S 17TH ST BOX 9000 WILMINGTON, NC 28402 (34.206183, -77.924182)
## 85                            1715 SHARON ROAD WEST CHARLOTTE, NC 28210 (35.11773, -80.874183)
## 86                                   320 NORTH MAIN LOCKNEY, TX 79241 (34.126621, -101.441788)
## 87                       1340 HAL GREER BOULEVARD HUNTINGTON, WV 25701 (38.410022, -82.428411)
## 88                             840 PASSOVER ROAD OSAGE BEACH, MO 65065 (38.134877, -92.630156)
## 89                                         P O BOX 410, 510 NORTH GREEN ST VALENTINE, NE 69201
## 90                      1000 NORTH SHENANDOAH AVE FRONT ROYAL, VA 22630 (38.930415, -78.19893)
## 91                               501 MORRIS STREET CHARLESTON, WV 25301 (38.34712, -81.626183)
## 92                                    1 PARKLAND DRIVE DERRY, NH 03038 (42.875825, -71.317578)
## 93                                       6565 FANNIN HOUSTON, TX 77030 (29.710567, -95.400118)
## 94                             1717 ARLINGTON STREET CALDWELL, ID 83605 (43.65422, -116.69564)
## 95                                       14114 ALABAMA ST JAY, FL 32565 (30.95004, -87.151666)
## 96               1300 OAK STREET POST OFFICE BOX 100 FAULKTON, SD 57438 (45.029999, -99.13157)
## 97                                  1000 WATERMAN WAY TAVARES, FL 32778 (28.822351, -81.71021)
## 98                        595 WEST CAROLINA AVENUE VARNVILLE, SC 29944 (32.855258, -81.087692)
## 99                                  2600 65TH AVENUE OSCEOLA, WI 54020 (45.302115, -92.699804)
## 100                       1105 KALISTE SALOOM ROAD LAFAYETTE, LA 70508 (30.174933, -92.028311)
## 101                       900 HILLIGOSS BOULEVARD SE FOSSTON, MN 56542 (47.572149, -95.740607)
## 102                                   718 N MACOMB ST MONROE, MI 48162 (41.925143, -83.389075)
## 103                             30 LOCUST STREET NORTHAMPTON, MA 01060 (42.331626, -72.653372)
## 104                                3700 E SOUTH ST LAKEWOOD, CA 90712 (33.860223, -118.148749)
## 105                               140 NUTT ROAD PHOENIXVILLE, PA 19460 (40.133387, -75.538053)
## 106                              1301 SOUTH CRISMON ROAD MESA, AZ 85209 (33.3911, -111.615329)
## 107                                  405 GRAND AVENUE DAYTON, OH 45405 (39.768985, -84.202998)
## 108                              11133 DUNN ROAD SAINT LOUIS, MO 63136 (38.775759, -90.239054)
## 109                          2211 NE 139TH STREET VANCOUVER, WA 98686 (45.721823, -122.649899)
## 110                             2770 NORTH WEBB ROAD WICHITA, KS 67226 (37.732911, -97.226256)
## 111                                 1215 TIBBALS ST HOLDREGE, NE 68949 (40.447655, -99.382005)
## 112                        1020 THOMPSON STREET JERSEY SHORE, PA 17740 (41.201647, -77.267956)
## 113                               900 CATON AVENUE BALTIMORE, MD 21229 (39.272628, -76.670816)
## 114                                    14000 FIVAY RD HUDSON, FL 34667 (28.360743, -82.690148)
## 115                          900 HOSPITAL DRIVE MADISONVILLE, KY 42431 (37.339177, -87.493845)
## 116                                123 ANDOVER ROAD WESTBROOK, ME 04092 (43.653231, -70.33834)
## 117                                    2215 BURDETT AVE TROY, NY 12180 (42.733395, -73.671434)
## 118                     16420 WEST HIGHWAY 24 WOODLAND PARK, CO 80863 (38.973932, -105.074267)
## 119                            801 SEVENTH AVENUE FORT WORTH, TX 76104 (32.736488, -97.341975)
## 120                                 530 BOGACHIEL WAY FORKS, WA 98331 (47.946356, -124.393471)
## 121                            720 SOUTH SIXTH ST MONTICELLO, IN 47960 (40.734862, -86.775623)
## 122                           4619 N ROSEMEAD BLVD ROSEMEAD, CA 91770 (34.088658, -118.073556)
## 123                                 600 E DIXIE AVE LEESBURG, FL 34748 (28.806579, -81.869113)
## 124                          13111 N PORT WASHINGTON RD MEQUON, WI 53097 (43.25618, -87.92415)
## 125                              1109 NORTH 100 WEST BEAVER, UT 84713 (38.289258, -112.643204)
## 126                    1009 NORTH THOMPSON LANE MURFREESBORO, TN 37129 (35.863421, -86.428977)
## 127                         3131 UNIVERSITY DRIVE EAST BRYAN, TX 77802 (30.649585, -96.296515)
## 128                                    5454 HOHMAN AVE HAMMOND, IN 46320 (41.61449, -87.52201)
## 129                             6050 NORTH CORONA ROAD TUCSON, AZ 85704 (32.3165, -111.007918)
## 130                                   112 E FIFTH AVE ANTIGO, WI 54409 (45.140319, -89.140292)
## 131                               2701 N DECATUR ROAD DECATUR, GA 30033 (33.79216, -84.282679)
## 132                                901 JAMES AVE FARMERVILLE, LA 71241 (32.786422, -92.393092)
## 133                            427 GUY PARK AVENUE AMSTERDAM, NY 12010 (42.953648, -74.216041)
## 134                                48 WEST 1500 NORTH NEPHI, UT 84648 (39.730587, -111.837215)
## 135                              407 CINCINNATI STREET DELHI, LA 71232 (32.452864, -91.494079)
## 136                                         P O BOX 151, 723 WEST FAIRVIEW ST ALBION, NE 68620
## 137                       220 N PENNSYLVANIA AVENUE COLUMBUS, KS 66725 (37.172064, -94.843805)
## 138                          1610 8TH AVENUE EAST ALEXANDRIA, MN 56308 (45.883226, -95.353724)
## 139                                  1 MT CARMEL WAY PITTSBURG, KS 66762 (37.38153, -94.68385)
## 140                            1555 SOQUEL DRIVE SANTA CRUZ, CA 95065 (36.988341, -121.983818)
## 141                                                P O BOX 220, 2910 BETTEN DR CRETE, NE 68333
## 142                              620 MADISON STREET SYRACUSE, NY 13210 (43.045384, -76.139777)
## 143                                 2755 COLONIAL DR HELENA, MT 59601 (46.582784, -111.988347)
## 144                                 4647 ZION AVE SAN DIEGO, CA 92120 (32.792973, -117.095859)
## 145                       13677 WEST MCDOWELL ROAD GOODYEAR, AZ 85395 (33.464283, -112.354024)
## 146                           237 SOUTH LOCUST STREET NOWATA, OK 74048 (36.696514, -95.630503)
## 147                                  117 KITE ROAD SWAINSBORO, GA 30401 (32.59321, -82.346552)
## 148                      500 REMINGTON BOULEVARD BOLINGBROOK, IL 60440 (41.679388, -88.083883)
## 149                                                        PONCE BY PASS #2213 PONCE, PR 00717
## 150                                                 US HWY 191, HOSPITAL ROAD CHINLE, AZ 86503
## 151                                              ONE ST ELIZABETH BOULEVARD O FALLON, IL 62269
## 152                                   800 BARKER DRIVE OSWEGO, KS 67356 (37.159673, -95.11077)
## 153                              615 N MICHIGAN ST SOUTH BEND, IN 46601 (41.683711, -86.25057)
## 154                            323 SOUTH MINNESOTA CROOKSTON, MN 56716 (47.772083, -96.618106)
## 155                                7503 SURRATTS ROAD CLINTON, MD 20735 (38.75025, -76.874997)
## 156                            401 EAST VAUGHN AVENUE RUSTON, LA 71270 (32.515281, -92.633902)
## 157                                500 FIRST AVENUE PORTOLA, CA 96122 (39.806144, -120.463129)
## 158                            1829 COLLEGE AVENUE MANHATTAN, KS 66502 (39.202826, -96.598183)
## 159                         2380 NORTH 400 EAST NORTH LOGAN, UT 84341 (41.775714, -111.823092)
## 160                            800 COMPASSION WAY DODGEVILLE, WI 53533 (42.952635, -90.130254)
## 161                              2018 CLINCH AVE SW KNOXVILLE, TN 37916 (35.956529, -83.93792)
## 162                        3043 NE 28TH STREET LINCOLN CITY, OR 97367 (44.985179, -123.995454)
## 163                          300 NORTH HOSPITAL DRIVE PRICE, UT 84501 (39.605402, -110.831911)
## 164                                  920 CHURCH ST N CONCORD, NC 28025 (35.434313, -80.603088)
## 165                        163 VAN BUREN RD, SUITE 1 CARIBOU, ME 04736 (46.878237, -68.009639)
## 166                        3550 EAST PINCHOT AVENUE PHOENIX, AZ 85018 (33.482291, -112.005315)
## 167                          8954 HOSPITAL DRIVE DOUGLASVILLE, GA 30134 (33.738973, -84.73305)
## 168                   200 HAWTHORNE LANE BOX 33549 CHARLOTTE, NC 28233 (35.212879, -80.825614)
## 169                               721 WEST KANSAS GREENSBURG, KS 67054 (37.606167, -99.301774)
## 170                             1 SHIRCLIFF WAY JACKSONVILLE, FL 32204 (30.307891, -81.689154)
## 171                       209 NORTHWEST 8TH STREET SEMINOLE, TX 79360 (32.721319, -102.653729)
## 172                           3201 WEST HIGHWAY 22 CORSICANA, TX 75110 (32.085083, -96.503582)
## 173                                              213 S WHITACRE/PO BOX 940 YERINGTON, NV 89447
## 174                                                           ONE HURLEY PLAZA FLINT, MI 48503
## 175                                 3349 S HIGHWAY 181 KENEDY, TX 78119 (28.80425, -97.856642)
## 176                                     407 3RD ST SE MINOT, ND 58701 (48.232479, -101.288452)
## 177                           2425 GEARY BLVD SAN FRANCISCO, CA 94115 (37.782778, -122.443222)
## 178                          651 NORTH BOLTON AVE ALEXANDRIA, LA 71301 (31.315236, -92.467478)
## 179                          10 4TH AVENUE SOUTHEAST GLENWOOD, MN 56334 (45.646757, -95.38987)
## 180                             1190 WAIANUENUE AVENUE HILO, HI 96720 (19.717467, -155.113513)
## 181                                                              PO BOX 160 BELCOURT, ND 58316
## 182                                    3800 JANES RD ARCATA, CA 95521 (40.903309, -124.090847)
## 183                                    79-01 BROADWAY ELMHURST, NY 11373 (40.74434, -73.88598)
## 184                   458 HANNINGS LANE, P O BOX 1006 MARTIN, TN 38237 (36.337537, -88.871534)
## 185                         601 DUBOCE AVENUE SAN FRANCISCO, CA 94117 (37.769114, -122.434696)
## 186                             20480 MARKET STREET ONANCOCK, VA 23417 (37.699712, -75.720937)
## 187                                     801 ILLINI DR SILVIS, IL 61282 (41.493068, -90.419997)
## 188                        701 S HEALTH PARKWAY THREE RIVERS, MI 49093 (41.934946, -85.647048)
## 189                           10030 GILEAD ROAD HUNTERSVILLE, NC 28078 (35.407899, -80.860744)
## 190                            600 NORTHERN BOULEVARD ALBANY, NY 12204 (42.674685, -73.748861)
## 191                   18600 NORTH HARDY OAK BLVD SAN ANTONIO, TX 78258 (29.613207, -98.478493)
## 192                            4747 ARAPAHOE AVENUE BOULDER, CO 80303 (40.014808, -105.236337)
## 193                            132 MEADOWS DRIVE CENTRE HALL, PA 16828 (41.088328, -78.058191)
## 194                          1910 MALVERN AVENUE HOT SPRINGS, AR 71901 (34.486239, -93.033554)
## 195                      9300 VALLEY CHILDRENS PLACE MADERA, CA 93636 (36.884502, -119.800266)
## 196                             407 EAST THIRD STREET DULUTH, MN 55805 (46.792843, -92.096395)
## 197                           178 GRANDVIEW DRIVE COBLESKILL, NY 12043 (42.686224, -74.482987)
## 198                                1101 W LIBERTY FARMINGTON, MO 63640 (37.780624, -90.438195)
## 199                             295 JACKSON HWY S GROVE HILL, AL 36451 (31.694213, -87.777231)
## 200                324 MILLER MOUNTAIN DRIVE WEBSTER SPRINGS, WV 26288 (38.481868, -80.409811)
## 201                                    1850 WESLEY RD AUBURN, IN 46706 (41.371893, -85.029535)
## 202                          1221 SOUTH DRIVE MOUNT PLEASANT, MI 48858 (43.598528, -84.761389)
## 203                  1525 N RENAISSANCE BLVD NE ALBUQUERQUE, NM 87107 (35.137554, -106.607594)
## 204                 603 NORTH PROGRESS AVENUE SILOAM SPRINGS, AR 72761 (36.190377, -94.509658)
## 205                             1191 PHELPS AVENUE COALINGA, CA 93210 (36.151517, -120.342089)
## 206                                450 WEST WILLIAMS WAY MOAB, UT 84532 (38.5743, -109.560003)
## 207                                        2707 L STREET ORD, NE 68862 (41.603213, -98.942676)
## 208                        130 SOUTH BRYN MAWR AVE BRYN MAWR, PA 19010 (40.018515, -75.320482)
## 209                      1701 S SHACKLEFORD ROAD LITTLE ROCK, AR 72211 (34.739159, -92.394421)
## 210                             1101 MICHIGAN AVE LOGANSPORT, IN 46947 (40.762465, -86.361246)
## 211                           5995 SE COMMUNITY DRIVE STUART, FL 34997 (27.132067, -80.221617)
## 212                                    101 COLE AVENUE BISBEE, AZ 85603 (31.417254, -109.8826)
## 213                                   170 FORD ROAD JOHN DAY, OR 97845 (44.417651, -118.95922)
## 214                          1027 EAST CHERRY STREET CUSHING, OK 74023 (35.978942, -96.757473)
## 215                        741 NORTH MAIN STREET CEDARVILLE, CA 96104 (41.531931, -120.171899)
## 216                          3325 POCAHONTAS ROAD BAKER CITY, OR 97814 (44.79612, -117.846285)
## 217                                  2200 OSPREY BLVD BARTOW, FL 33831 (27.919146, -81.846254)
## 218                         700 NE 13TH STREET OKLAHOMA CITY, OK 73104 (35.482317, -97.501002)
## 219                             12 THIRD STREET SE HILLSBORO, ND 58045 (47.403438, -97.056645)
## 220                                    105 5TH AVE E SCOBEY, MT 59263 (48.788624, -105.418587)
## 221                         3535 OLENTANGY RIVER RD COLUMBUS, OH 43214 (40.031962, -83.031294)
## 222                                   4039 HIGHLAND ST MILAN, TN 38358 (35.913311, -88.753495)
## 223                                 2809 DENNY AV PASCAGOULA, MS 39581 (30.374871, -88.532404)
## 224                           20370 NE BURNS AVE BLOUNTSTOWN, FL 32424 (30.458128, -85.049587)
## 225                              88 WASHINGTON STREET TAUNTON, MA 02780 (41.905583, -71.09435)
## 226                                100 MEDICAL DRIVE BORGER, TX 79007 (35.653834, -101.409041)
## 227                          CALLE JAVILLA #8 AL COSTADO PARQUE DE BOMBAS SAN GERMAN, PR 00683
## 228                      1850 OLD KNOXVILLE HIGHWAY TAZEWELL, TN 37879 (36.453341, -83.571972)
## 229                                      659 BOULEVARD DOVER, OH 44622 (40.513879, -81.456583)
## 230                                                      10 NICHOLS STREET DAVENPORT, WA 99122
## 231                           901 DAVIDSON STREET NW ELKADER, IA 52043 (42.859771, -91.414536)
## 232                            801 W GORDON STREET THOMASTON, GA 30286 (32.887252, -84.336109)
## 233                             800 ALDER STREET SOUTH BEND, WA 98586 (46.662164, -123.812317)
## 234                           18300 ST JOHN DRIVE NASSAU BAY, TX 77058 (29.549771, -95.085203)
## 235                      1800 EAST VAN BUREN STREET PHOENIX, AZ 85006 (33.451436, -112.042767)
## 236                                       303 CATLIN ST BUFFALO, MN 55313 (45.1932, -93.87053)
## 237                               1825 LOGAN AVENUE WATERLOO, IA 50703 (42.525753, -92.337758)
## 238                                  1032 E SUMNER ST HARTFORD, WI 53027 (43.3176, -88.362734)
## 239                                                          ONE HOSPITAL WAY BUTLER, PA 16001
## 240                        600 CELEBRATE LIFE PARKWAY NEWNAN, GA 30265 (33.386391, -84.757419)
## 241                             2016 SOUTH MAIN ST MARYVILLE, MO 64468 (40.326053, -94.874038)
## 242                      17000 MEDICAL CENTER DR BATON ROUGE, LA 70816 (30.440994, -91.001513)
## 243                       5501 SOUTH EXPRESSWAY 77 HARLINGEN, TX 78550 (26.157323, -97.676968)
## 244              89TH AVENUE AND VAN WYCK EXPRESSWAY JAMAICA, NY 11418 (40.701412, -73.816302)
## 245                                   445 LENOX ROAD BROOKLYN, NY 11203 (40.654457, -73.94516)
## 246                                    416 E MAUMEE ST ANGOLA, IN 46703 (41.634883, -84.99552)
## 247                                  6847 N CHESTNUT RAVENNA, OH 44266 (41.176723, -81.245887)
## 248                                  9922 LOUETTA RD HOUSTON, TX 77070 (30.000839, -95.560868)
## 249                           35900 EUCLID AVENUE WILLOUGHBY, OH 44094 (41.626159, -81.433996)
## 250                            100 FALLS CANYON ROAD AVALON, CA 90704 (33.339079, -118.330477)
## 251                  15855 NINETEEN MILE RD CLINTON TOWNSHIP, MI 48038 (42.612671, -82.963405)
## 252                           189 STORRS RD MANSFIELD CENTER, CT 06250 (41.740743, -72.197319)
## 253                             2105 FOREST AVENUE SAN JOSE, CA 95128 (37.327054, -121.937154)
## 254                                139 GARAU STREET BLUFFTON, OH 45817 (40.887578, -83.898149)
## 255                             250 PROSPECT PLACE CORONADO, CA 92118 (32.694257, -117.167947)
## 256                              411 CANISTEO STREET HORNELL, NY 14843 (42.314575, -77.660142)
## 257                              651 DUNLOP LANE CLARKSVILLE, TN 37040 (36.580414, -87.268485)
## 258                           20333 WEST 151ST STREET OLATHE, KS 66061 (38.854524, -94.823673)
## 259                             360 SOUTH LOLA LANE PAHRUMP, NV 89048 (36.214376, -116.023381)
## 260                          22 SOUTH GREENE STREET BALTIMORE, MD 21201 (39.28747, -76.623577)
## 261                       6869 FIFTH AVENUE SOUTH BIRMINGHAM, AL 35212 (33.549279, -86.730597)
## 262                                                       4801 BECKNER ROAD SANTA FE, NM 87507
## 263                              501 KEYSER AVE NATCHITOCHES, LA 71457 (31.753563, -93.079253)
## 264                           2601 NORTH SPRUCE ST OGALLALA, NE 69153 (41.150177, -101.720447)
## 265                             300 HILLMONT AVENUE VENTURA, CA 93003 (34.279055, -119.254355)
## 266                       400 SOUTH CHESTNUT STREET ABERDEEN, MS 39730 (33.819942, -88.541059)
## 267                          1670 ST VINCENTS WAY MIDDLEBURG, FL 32068 (30.111135, -81.831298)
## 268                     1 HOSPITAL DRIVE, SUITE 201 JENNINGS, LA 70546 (30.240216, -92.662196)
## 269                    1100 VETERANS BOULEVARD REDWOOD CITY, CA 94063 (37.489693, -122.224682)
## 270                               859 WINTER STREET LUCEDALE, MS 39452 (30.922235, -88.592853)
## 271                                855 MANKATO AVENUE WINONA, MN 55987 (44.033016, -91.622136)
## 272                         2872 TURNPIKE STREET SUSQUEHANNA, PA 18847 (41.947372, -75.594016)
## 273                                     222 TONGASS DR SITKA, AK 99835 (57.05201, -135.356353)
## 274                                          P O BOX 118, 401 SOUTH 5TH STREET LYNCH, NE 68746
## 275                             1300 N MAIN AVENUE BIG LAKE, TX 76932 (31.201651, -101.461587)
## 276                         619 SOUTH 19TH STREET BIRMINGHAM, AL 35233 (33.506129, -86.801922)
## 277                          1101 9TH STREET SE SIOUX CENTER, IA 51250 (43.069685, -96.159287)
## 278                          1000 NORTH 15TH STREET HUMBOLDT, IA 50548 (42.731835, -94.230216)
## 279                             1401 W SEMINOLE BLVD SANFORD, FL 32771 (28.816202, -81.283577)
## 280                                  1015 UNITY ROAD CROSSETT, AR 71635 (33.137206, -91.93878)
## 281                            4200 NELSON ROAD LAKE CHARLES, LA 70605 (30.182071, -93.249348)
## 282                          9875 HOSPITAL DRIVE MAPLE GROVE, MN 55369 (45.133377, -93.479488)
## 283                              1900 TEBEAU STREET WAYCROSS, GA 31501 (31.226007, -82.349239)
## 284            13600 HORIZON STREET, SUITE 100 HORIZON CITY, TX 79928 (31.682723, -106.207348)
## 285                              1050 MCDONOUGH ROAD JACKSON, GA 30233 (33.303085, -83.977823)
## 286                          302 NORTH HOSPITAL DRIVE GIRARD, KS 66743 (37.513852, -94.858541)
## 287                    5899 WEST RIVENDELL DRIVE WEST JORDAN, UT 84088 (40.588957, -112.03392)
## 288                                    607 BEAMAN ST CLINTON, NC 28328 (35.007783, -78.323635)
## 289                                220 HOSPITAL DRIVE JACKSON, AL 36545 (31.530482, -87.89318)
## 290                             900 EIGHTH AVENUE FORT WORTH, TX 76104 (32.735481, -97.343704)
## 291                       1519 MAIN STREET HWY 33 SNEEDVILLE, TN 37869 (36.430266, -83.462766)
## 292                      5601 DE SOTO AVENUE WOODLAND HILLS, CA 91367 (34.171852, -118.588183)
## 293                   2500 BELLEVUE MEDICAL CENTER DR BELLEVUE, NE 68123 (41.13639, -95.94586)
## 294                  2633 E 27TH STREET, BUILDING B OAKLAND, CA 94601 (37.791116, -122.221867)
## 295                           900 SOUTH THIRD STREET MCGEHEE, AR 71654 (33.618285, -91.393066)
## 296                                        1000 N MAIN ST ANNA, IL 62906 (37.47601, -89.24487)
## 297                                                        44201 DEQUINDRE ROAD TROY, MI 48085
## 298                       425 WEST 5TH STREET EAST LIVERPOOL, OH 43920 (40.621409, -80.586218)
## 299                                           1 MILE EAST US HIGHWAY 270 FORT SUPPLY, OK 73841
## 300                           200 SOUTH ACADEMY ROAD GUTHRIE, OK 73044 (35.877543, -97.460491)
## 301                            49 HILLSIDE STREET FALL RIVER, MA 02720 (41.707882, -71.145552)
## 302                                 101 POSEY AVENUE CLIFTON, TX 76634 (31.777153, -97.588431)
## 303                              1205 E NORTH STREET MANTECA, CA 95336 (37.801087, -121.19691)
## 304                                1404 W BAKER ROAD BAYTOWN, TX 77521 (29.769816, -94.980193)
## 305                        13215 BROOK LANE DRIVE HAGERSTOWN, MD 21742 (39.677869, -77.609245)
## 306                     2960 SLEEPY HOLLOW ROAD FALLS CHURCH, VA 22044 (38.869957, -77.157589)
## 307                               8300 RED BUG LAKE RD OVIEDO, FL 32765 (28.65604, -81.227973)
## 308                                                           HWY 83 NORTH CHILDRESS, TX 79201
## 309                       10550 WEST MCDOWELL ROAD AVONDALE, AZ 85392 (33.464493, -112.287709)
## 310                             11217 LAKEVIEW AVENUE LENEXA, KS 66219 (38.924376, -94.769705)
## 311                      19600 EAST 39TH STREET INDEPENDENCE, MO 64057 (39.047771, -94.349313)
## 312                               1500 SW 10TH AVENUE TOPEKA, KS 66604 (39.051129, -95.695627)
## 313                                  500 W COURT ST KANKAKEE, IL 60901 (41.121113, -87.871768)
## 314                   288 SOUTH RIDGECREST AVE RUTHERFORDTON, NC 28139 (35.363396, -81.964842)
## 315                         921 SOUTH BALLANCEE AVENUE LUSK, WY 82225 (42.753278, -104.446083)
## 316                     2010 HEALTH CAMPUS DRIVE HARRISONBURG, VA 22801 (38.40614, -78.858322)
## 317                     200 JEFFERSON AVENUE SE GRAND RAPIDS, MI 49503 (42.958252, -85.664114)
## 318                                                        17065 S 71 HIGHWAY BELTON, MO 64012
## 319                              101 HOSPITAL CIRCLE LUVERNE, AL 36049 (31.692595, -86.266156)
## 320                                                  28400 MCCALL B0ULEVARD SUN CITY, CA 92585
## 321                                207 FOOTE AVENUE JAMESTOWN, NY 14701 (42.091237, -79.23295)
## 322                          701 WEST NORTH AVE MELROSE PARK, IL 60160 (41.908342, -87.841101)
## 323                               736 IRVING AVENUE SYRACUSE, NY 13210 (43.041666, -76.137853)
## 324                               1301 KS HIGHWAY 264 LARNED, KS 67550 (38.174521, -99.153423)
## 325                                150 REYNOIR STREET BILOXI, MS 39530 (30.396112, -88.890438)
## 326                                 1550 SIXTH STREET MANNING, IA 51455 (41.90665, -95.075013)
## 327                          5501 OLD YORK ROAD PHILADELPHIA, PA 19141 (40.036927, -75.144683)
## 328                                    510 W TIDWELL HOUSTON, TX 77091 (29.847222, -95.407991)
## 329                             400 NORTH MAIN STREET WARSAW, NY 14569 (42.753447, -78.132533)
## 330                           1400 NORTH WILMOT ROAD TUCSON, AZ 85712 (32.240005, -110.857792)
## 331                                 435 LEWIS AVENUE MERIDEN, CT 06450 (41.550036, -72.803878)
## 332                                 4321 FIR ST EAST CHICAGO, IN 46312 (41.634064, -87.448542)
## 333                          13001 SOUTHERN BLVD LOXAHATCHEE, FL 33470 (26.681928, -80.251439)
## 334                          1455 ST FRANCIS AVENUE SHAKOPEE, MN 55379 (44.770075, -93.503569)
## 335                  729 SOUTH EAST MAIN STREET SIMPSONVILLE, SC 29681 (34.719015, -82.249908)
## 336                                500 RUE DE SANTE LA PLACE, LA 70068 (30.071081, -90.514023)
## 337                          16251 SYLVESTER ROAD SW BURIEN, WA 98166 (47.456778, -122.341455)
## 338                             1505 N SECOND STREET MEMPHIS, TN 38107 (35.182935, -90.044966)
## 339                        1027 WASHINGTON AVE DETROIT LAKES, MN 56501 (46.815307, -95.845453)
## 340                                110 LONGWOOD AVE ROCKLEDGE, FL 32955 (28.33454, -80.723133)
## 341                         1 MEDICAL VILLAGE DRIVE EDGEWOOD, KY 41017 (39.014683, -84.561842)
## 342                                                                PO BOX 774, SALEM, MO 65560
## 343                              744 S WEBSTER AVE GREEN BAY, WI 54305 (44.502001, -88.010631)
## 344                           1451 44TH AVENUE S GRAND FORKS, ND 58201 (47.878436, -97.048158)
## 345                                 1035 RED BUD ROAD CALHOUN, GA 30701 (34.511878, -84.92537)
## 346                               1800 E LAKE SHORE DR DECATUR, IL 62521 (39.82635, -88.93191)
## 347                                    3364 KOLBE ROAD LORAIN, OH 44053 (41.43925, -82.235345)
## 348                            2001 DOCTORS DRIVE SPRINGHILL, LA 71075 (33.010622, -93.442839)
## 349                              1500 S LAKE PARK AVE HOBART, IN 46342 (41.512654, -87.258902)
## 350                                 1600 E BROADWAY COLUMBIA, MO 65201 (38.950669, -92.317039)
## 351                              508 GREEN STREET GREENSBORO, AL 36744 (32.412098, -87.018633)
## 352                           888 OLD COUNTRY ROAD PLAINVIEW, NY 11803 (40.774456, -73.478063)
## 353                                                   JUNCTION OF HWY 371 CROWNPOINT, NM 87313
## 354                              4646 N MARINE DRIVE CHICAGO, IL 60640 (41.966521, -87.648898)
## 355                       1430 COLUMBUS AVENUE WASHINGTON CH, OH 43160 (39.547778, -83.425992)
## 356                                 7 MEDICAL PARKWAY DALLAS, TX 75234 (32.914335, -96.873098)
## 357                                 6300 MAIN STREET ZACHARY, LA 70791 (30.649957, -91.136747)
## 358                          1250 S 18TH ST FERNANDINA BEACH, FL 32034 (30.653028, -81.449462)
## 359                           1800 N CALIFORNIA ST STOCKTON, CA 95204 (37.970737, -121.289251)
## 360                           301 MEMORIAL DR DONALDSONVILLE, LA 70346 (30.087951, -91.002904)
## 361                               726 MCFARLAND ST MORRISTOWN, TN 37814 (36.21464, -83.304335)
## 362                            75 BEEKMAN STREET PLATTSBURGH, NY 12901 (44.700122, -73.466647)
## 363                          8111 S EMERSON AVE INDIANAPOLIS, IN 46237 (39.648365, -86.082674)
## 364                                   200 HEMLOCK TAWAS CITY, MI 48764 (44.274911, -83.511002)
## 365                              1411 E 31ST STREET OAKLAND, CA 94602 (37.799234, -122.231199)
## 366                             901 EAST 5TH STREET WASHINGTON, MO 63090 (38.5522, -91.002023)
## 367                       2620 WEST FAIDLEY AVE GRAND ISLAND, NE 68803 (40.924267, -98.370887)
## 368                              4440 W 95TH STREET OAK LAWN, IL 60453 (41.720316, -87.732364)
## 369                           14445 OLIVE VIEW DRIVE SYLMAR, CA 91342 (34.325912, -118.445513)
## 370                          1111 W LA PALMA AVENUE ANAHEIM, CA 92801 (33.847138, -117.933934)
## 371                             1717 HWY 59 BYPASS LIVINGSTON, TX 77351 (30.35777, -95.085743)
## 372                              600 SOMERSET AVENUE WINDBER, PA 15963 (40.242123, -78.837917)
## 373                                      801 E SIOUX PIERRE, SD 57501 (44.361268, -100.342235)
## 374                           225 N JACKSON AVENUE SAN JOSE, CA 95116 (37.363787, -121.848823)
## 375                                34700 VALLEY RD OCONOMOWOC, WI 53066 (43.082832, -88.43563)
## 376                               2200 STATE ST LAWRENCEVILLE, IL 62439 (38.729518, -87.69415)
## 377                                             24276 166TH AIRPORT ROAD EAGLE BUTTE, SD 57625
## 378                       1333 SAM HOUSTON BOULEVARD HOUSTON, MO 65483 (37.315756, -91.959559)
## 379                             1700 CERRILLOS ROAD SANTA FE, NM 87501 (35.66695, -105.969665)
## 380                              335 SE 8TH AVENUE HILLSBORO, OR 97123 (45.519623, -122.97731)
## 381                                 200 HOSPITAL DRIVE GALAX, VA 24333 (36.671813, -80.923814)
## 382                            700 CHILDREN'S DRIVE COLUMBUS, OH 43205 (39.952367, -82.979124)
## 383                             11801 SOUTH FREEWAY BURLESON, TX 76028 (32.585454, -97.319102)
## 384                      11878 AVENUE OF INDUSTRY SAN DIEGO, CA 92128 (32.990584, -117.075618)
## 385                            7487 S STATE RD 121 MACCLENNY, FL 32063 (30.239876, -82.135598)
## 386                14101 PARKWAY COMMONS DRIVE OKLAHOMA CITY, OK 73134 (35.614137, -97.582124)
## 387                  10666 NORTH TORREY PINES ROAD LA JOLLA, CA 92037 (32.897124, -117.241854)
## 388                             1815 WISCONSIN AVENUE BENSON, MN 56215 (45.314757, -95.608952)
## 389                             8300 W 38TH AVE WHEAT RIDGE, CO 80033 (39.769328, -105.089291)
## 390                        1000 FIRST STREET NORTH ALABASTER, AL 35007 (33.253679, -86.814261)
## 391                             7201 N UNIVERSITY DR TAMARAC, FL 33321 (26.211385, -80.252543)
## 392                     1045 WEST STEPHENSON STREET FREEPORT, IL 61032 (42.295894, -89.637947)
## 393                                 1360 BRICKYARD RD CHIPLEY, FL 32428 (30.76457, -85.542643)
## 394                                      620 E MONROE MEXICO, MO 65265 (39.172921, -91.877238)
## 395                         19829 NORTH 27TH AVENUE PHOENIX, AZ 85027 (33.666425, -112.117188)
## 396                            4501 SAND CREEK ROAD ANTIOCH, CA 94531 (37.949469, -121.774824)
## 397                                    108 6TH AVENUE KINDER, LA 70648 (30.491453, -92.855648)
## 398                                1301 S MAIN STREET OTTAWA, KS 66067 (38.597285, -95.268759)
## 399                          711 CHESTERFIELD HIGHWAY CHERAW, SC 29520 (34.695372, -79.918096)
## 400                                      921 GESSNER HOUSTON, TX 77024 (29.781023, -95.544422)
## 401                           1407 WEST STASSNEY LANE AUSTIN, TX 78745 (30.212314, -97.791324)
## 402                                 721 E COURT STREET PARIS, IL 61944 (39.606712, -87.678311)
## 403                                                BO MONACILLO CARR NUM 22 SAN JUAN, PR 00935
## 404       4301 WEST MARKHAM STREET MAIL SLOT 612 LITTLE ROCK, AR 72205 (34.751583, -92.320998)
## 405                             6300 BEACH BLVD JACKSONVILLE, FL 32216 (30.290943, -81.596565)
## 406                             124 S MEMORIAL DR PRATTVILLE, AL 36067 (32.464423, -86.450936)
## 407                                 2611 WAYNE AVENUE DAYTON, OH 45420 (39.739253, -84.156073)
## 408                                    101 S MAJOR ST EUREKA, IL 61530 (40.721405, -89.271661)
## 409                             700 SOUTH J STREET LAKEVIEW, OR 97630 (42.181583, -120.351437)
## 410                          6501 NORTH 19TH AVENUE PHOENIX, AZ 85015 (33.531837, -112.099614)
## 411                           7600 CARROLL AVENUE TAKOMA PARK, MD 20912 (38.98373, -77.000015)
## 412                            1650 COWLES STREET FAIRBANKS, AK 99701 (64.831407, -147.736254)
## 413                             1600 HOSPITAL WAY WHITEFISH, MT 59937 (48.381032, -114.331326)
## 414                  3181 SW SAM JACKSON PARK ROAD PORTLAND, OR 97239 (45.499201, -122.687974)
## 415                            701 MCCLINTIC DRIVE GROESBECK, TX 76642 (31.531923, -96.529621)
## 416                         455 ST MICHAEL'S DRIVE SANTA FE, NM 87505 (35.657789, -105.946946)
## 417                          2200 WEST BROAD STREET COLUMBUS, OH 43223 (39.955726, -83.058562)
## 418                             610 WEST JEROME AVENUE MESA, AZ 85210 (33.381128, -111.844892)
## 419                           1001 PROVIDENCE DRIVE NEWBERG, OR 97132 (45.308552, -122.933913)
## 420                                                        371 DE DIEGO AVE SAN JUAN, PR 00923
## 421                                9201 PINECROFT SHENANDOAH, TX 77380 (30.174833, -95.456299)
## 422                1409 EAST LAKE MEAD BLVD NORTH LAS VEGAS, NV 89030 (36.195739, -115.122986)
## 423                                 500 W BROADWAY MISSOULA, MT 59806 (46.873905, -113.999891)
## 424                     5555 CONNER AVENUE, SUITE 3N DETROIT, MI 48213 (42.392516, -82.982411)
## 425                                1114 W MADISON AVE ATHENS, TN 37371 (35.440789, -84.608823)
## 426                              2520 E DUPONT RD FORT WAYNE, IN 46825 (41.178689, -85.110603)
## 427                                   349 REID ROAD JUNCTION, TX 76849 (30.499194, -99.780254)
## 428                                280 MAPLE STREET ASHLAND, OR 97520 (42.206445, -122.725129)
## 429                          1002 EAST MADISON STREET HOUSTON, MS 38851 (33.89479, -88.985085)
## 430                    400 NE MOTHER JOSEPH PLACE VANCOUVER, WA 98668 (45.623486, -122.580636)
## 431                        4800 FRIENDSHIP AVENUE PITTSBURGH, PA 15224 (40.462419, -79.946435)
## 432                             200 HEALTH CARE DR GREENVILLE, IL 62246 (38.90188, -89.408677)
## 433                                 100 KENYON AVE WAKEFIELD, RI 02879 (41.431883, -71.495882)
## 434                     101 E VALENCIA MESA DRIVE FULLERTON, CA 92835 (33.893503, -117.927952)
## 435                             215 E 8TH STREET MINNEAPOLIS, KS 67467 (39.128797, -97.704255)
## 436                                   1100 ALLIED DRIVE PLANO, TX 75093 (33.015252, -96.79012)
## 437                           603 SOUTH CHESTNUT ELLENSBURG, WA 98926 (46.987688, -120.536761)
## 438                  3600 WEST CUMBERLAND AVENUE MIDDLESBORO, KY 40965 (36.605199, -83.740056)
## 439                             1541 KINGS HIGHWAY SHREVEPORT, LA 71103 (32.481791, -93.76159)
## 440                                  656 STATE STREET BANGOR, ME 04401 (44.812156, -68.741695)
## 441                                209 HEALTH PARK DR LIBBY, MT 59923 (48.392621, -115.546271)
## 442                               1001 E JOHNSON ST HOLYOKE, CO 80734 (40.578428, -102.290249)
## 443                            10 JOHN KISSINGER DRIVE WABASH, IN 46992 (40.81877, -85.829126)
## 444                              1700 MEDICAL WAY SNELLVILLE, GA 30078 (33.877259, -84.019645)
## 445                       214 PEACH ORCHARD ROAD MCCONNELLSBURG, PA 17233 (39.936716, -78.009)
## 446                         2700 WAYNE MEMORIAL DR GOLDSBORO, NC 27534 (35.400831, -77.953342)
## 447                                   5801 BREMO RD RICHMOND, VA 23226 (37.584405, -77.513262)
## 448                          4075 OLD WESTERN ROW ROAD MASON, OH 45040 (39.336786, -84.293721)
## 449                        801 WEST MAPLE STREET FARMINGTON, NM 87401 (36.724323, -108.215501)
## 450                                211 4TH STREET ALEXANDRIA, LA 71301 (31.315021, -92.450481)
## 451                             44 VERSAILLES BLVD ALEXANDRIA, LA 71303 (31.29265, -92.503853)
## 452                   1101 MOULTON AND PARSONS DRIVE ST JAMES, MN 56081 (43.96949, -94.621515)
## 453                       900 NORTH WASHINGTON STREET DU QUOIN, IL 62832 (38.024441, -89.2368)
## 454                             147 GETTYS STREET GETTYSBURG, PA 17325 (39.823317, -77.234044)
## 455                                 6901 NORTH 72ND ST OMAHA, NE 68122 (41.321839, -96.023788)
## 456                          1509 E WILSON TERRACE GLENDALE, CA 91206 (34.149161, -118.230354)
## 457                                        708 8TH ST ARMOUR, SD 57313 (43.324825, -98.344824)
## 458                              4315 DIPLOMACY DR ANCHORAGE, AK 99508 (61.18189, -149.800578)
## 459                     1555 N BARRINGTON RD HOFFMAN ESTATES, IL 60169 (42.052409, -88.144445)
## 460                           750 EAST ADAMS STREET SYRACUSE, NY 13210 (43.042677, -76.139323)
## 461                                 1910 SOUTH AVE LA CROSSE, WI 54601 (43.794748, -91.246219)
## 462                       1301 WONDER WORLD DRIVE SAN MARCOS, TX 78666 (29.852359, -97.947738)
## 463                                 200 MEMORIAL DRIVE LURAY, VA 22835 (38.662482, -78.469864)
## 464                                   5515 PEACH STREET ERIE, PA 16509 (42.074141, -80.093735)
## 465                                  444 BRUCE STREET YREKA, CA 96097 (41.718579, -122.645457)
## 466                 1018 SIXTH AVENUE PO BOX 997 WORTHINGTON, MN 56187 (43.621858, -95.599179)
## 467                              110 IRVING ST NW WASHINGTON, DC 20010 (38.929157, -77.012268)
## 468                               214 KING STREET OGDENSBURG, NY 13669 (44.692091, -75.499934)
## 469                            407 S WHITE ST MOUNT PLEASANT, IA 52641 (40.963116, -91.558018)
## 470                         1600 WEST 40TH AVENUE PINE BLUFF, AR 71603 (34.189066, -92.018453)
## 471                             333 BORTHWICK AVE PORTSMOUTH, NH 03801 (43.064093, -70.787774)
## 472                                                         1280 CHANDLER DR SPOONER, WI 54801
## 473                                   6200 W PARKER RD PLANO, TX 75093 (33.045125, -96.837073)
## 474                            171 FAIRVIEW ROAD MOORESVILLE, NC 28117 (35.547748, -80.852939)
## 475                          3160 GENEVA STREET LOS ANGELES, CA 90020 (34.067708, -118.286387)
## 476                   106 PARK DRIVE- PO DRAWER Z HOT SPRINGS, VA 24445 (37.99389, -79.830959)
## 477                          100 SENTARA CIRCLE WILLIAMSBURG, VA 23188 (37.335033, -76.742161)
## 478                                   1401 W 5TH ST SHERIDAN, WY 82801 (44.807425, -106.97557)
## 479                                   726 4TH ST MARYSVILLE, CA 95901 (39.138832, -121.593622)
## 480                          5255 LOUGHBORO RD NW WASHINGTON, DC 20016 (38.935747, -77.109889)
## 481                                600 S PINE STREET DERIDDER, LA 70634 (30.84195, -93.289056)
## 482                           900 ILLINOIS AVE STEVENS POINT, WI 54481 (44.526825, -89.566203)
## 483                               300 PINELLAS ST CLEARWATER, FL 33756 (27.951912, -82.803874)
## 484                           230 EAST RIDGEWOOD AVE PARAMUS, NJ 07652 (40.958602, -74.062151)
## 485                      2121 SANTA MONICA BLVD SANTA MONICA, CA 90404 (34.03007, -118.478305)
## 486                                1001 WEST STREET CARTHAGE, NY 13619 (43.986162, -75.594861)
## 487                          819 NORTH FIRST STREET DENNISON, OH 44621 (40.401464, -81.335874)
## 488                               1575 BEAM AVENUE MAPLEWOOD, MN 55109 (45.028131, -93.033508)
## 489                            350 WEST THOMAS ROAD PHOENIX, AZ 85013 (33.480294, -112.079208)
## 490                               1421 OAKDALE ROAD MODESTO, CA 95355 (37.664558, -120.957516)
## 491                                 900 E BROADWAY BISMARCK, ND 58501 (46.806369, -100.777075)
## 492                        9100 BABCOCK BOULEVARD PITTSBURGH, PA 15237 (40.568235, -80.016518)
## 493                            500 E MARKET STREET IOWA CITY, IA 52245 (41.663541, -91.528653)
## 494                                2375 E PRATER WAY SPARKS, NV 89434 (39.542488, -119.697974)
## 495                       301 UNIVERSITY BOULEVARD GALVESTON, TX 77555 (29.311443, -94.776261)
## 496                              101 HOSPITAL ROAD PATCHOGUE, NY 11772 (40.779337, -72.978147)
## 497                             255 LAFAYETTE AVENUE SUFFERN, NY 10901 (41.112389, -74.136248)
## 498                              101 WEST 8TH AVENUE SPOKANE, WA 99204 (47.64831, -117.412168)
## 499                                224 PARK AVENUE FRANKFORT, MI 49635 (44.637376, -86.242913)
## 500                          709 NORTH LINCOLN AVENUE JEROME, ID 83338 (42.730293, -114.51849)
## 501                        51 NORTH ROUTE 9W WEST HAVERSTRAW, NY 10993 (41.212779, -73.985768)
## 502                                 4502 HIGHWAY 951 JACKSON, LA 70748 (30.832812, -91.209666)
## 503                                  2905 3RD AVE SE ABERDEEN, SD 57402 (45.46214, -98.447237)
## 504                                5 GARRETT AVENUE LA PLATA, MD 20646 (38.529266, -76.970818)
## 505                               200 FAIRMAN STREET WATSEKA, IL 60970 (40.765541, -87.732666)
## 506                       2170 EAST HARMON AVENUE LAS VEGAS, NV 89119 (36.107369, -115.121992)
## 507                  17720 CORPORATE WOODS DRIVE SAN ANTONIO, TX 78259 (29.603377, -98.439387)
## 508                                   901 WEST HAMILTON OLNEY, TX 76374 (33.369669, -98.76463)
## 509                                   525 OREGON ST VALLEJO, CA 94590 (38.118327, -122.249099)
## 510                         1950 MOUNTAIN VIEW AVE LONGMONT, CO 80501 (40.181324, -105.126382)
## 511                                    915 4TH ST NW CHOTEAU, MT 59422 (47.81342, -112.192457)
## 512                              300 PASTEUR DRIVE STANFORD, CA 94305 (37.433138, -122.176664)
## 513                         10123 SE MARKET STREET PORTLAND, OR 97216 (45.511537, -122.559093)
## 514                      400 NORTH PLEASANT AVENUE CENTRALIA, IL 62801 (38.530809, -89.115999)
## 515                            501 VAN BUREN STREET FOSTORIA, OH 44830 (41.163218, -83.424059)
## 516                            464 LINDEN AVENUE HARRODSBURG, KY 40330 (37.756448, -84.848212)
## 517                            201 GREENBRIAR BLVD COVINGTON, LA 70433 (30.456713, -90.136647)
## 518                                 300 MAIN STREET LEWISTON, ME 04240 (44.100976, -70.214557)
## 519                           97 WEST PARKWAY POMPTON PLAINS, NJ 07444 (40.959237, -74.308102)
## 520                                       1015 BOWLES FENTON, MO 63026 (38.529043, -90.473625)
## 521                                    130 HAYS STREET LULING, TX 78648 (29.67253, -97.654254)
## 522                               517 NORTH MAIN STREET ANNA, IL 62906 (37.465305, -89.245019)
## 523                            18 EAST LAUREL ROAD STRATFORD, NJ 08084 (39.828853, -75.008799)
## 524                         742 MIDDLECREEK ROAD SEVIERVILLE, TN 37862 (35.853855, -83.536965)
## 525                                      P O BOX 948/427 HIGHWAY 51 NORTH BROOKHAVEN, MS 39601
## 526                             500 UNIVERSITY DRIVE HERSHEY, PA 17033 (40.265932, -76.674557)
## 527                             3214 EAST RACE AVENUE SEARCY, AR 72143 (35.250446, -91.696758)
## 528                               1950 ASPEN AVENUE LUBBOCK, TX 79408 (33.574104, -101.807408)
## 529                                 3601 CALAIS DRIVE SHERMAN, TX 75090 (33.67686, -96.602527)
## 530                                                       1035-116TH AVE NE BELLEVUE, WA 98004
## 531                                                        CHEYENNE & APACHE SATANTA, KS 67870
## 532                               415 N MAIN STREET ULYSSES, KS 67880 (37.583992, -101.358013)
## 533                             W3985 COUNTY ROAD NN ELKHORN, WI 53121 (42.662615, -88.496322)
## 534                          509 BRIGHT LEAF BLVD SMITHFIELD, NC 27577 (35.513161, -78.333659)
## 535                      238 SOUTH CONGRESS STREET RUSHVILLE, IL 62681 (40.117944, -90.563587)
## 536                                      350 BOULEVARD PASSAIC, NJ 07055 (40.85828, -74.13721)
## 537                 355 NEW SHACKLE ISLAND RD HENDERSONVILLE, TN 37075 (36.324156, -86.620198)
## 538                      11130 PARKVIEW CIRCLE DR FORT WAYNE, IN 46845 (41.188662, -85.103292)
## 539                                3330 LOMITA BLVD TORRANCE, CA 90509 (33.812644, -118.34375)
## 540                                    1000 S MAIN ST TIPTON, IN 46072 (40.272216, -86.041102)
## 541                           3865 JACKSON STREET RIVERSIDE, CA 92503 (33.925697, -117.440052)
## 542                                      300 W 5TH ST MILLER, SD 57362 (44.520623, -98.992044)
## 543                           135 LAFAYETTE AVENUE PALMERTON, PA 18071 (40.802315, -75.614851)
## 544                               1133 W SYCAMORE ST WILLOWS, CA 95988 (39.520467, -122.20812)
## 545                         1601 WEST ST MARY'S ROAD TUCSON, AZ 85745 (32.228923, -111.000032)
## 546                                            27700 MEDICAL CENTER RD MISSION VIEJO, CA 92691
## 547                       3001 BROADMOOR BLVD NE RIO RANCHO, NM 87144 (35.307351, -106.677003)
## 548                                            LAUREL AVE SANTA JUANITA #100 BAYAMON, PR 00956
## 549                               1701 S CREASY LN LAFAYETTE, IN 47905 (40.393845, -86.838378)
## 550                            207 WEST LEGION ROAD BRAWLEY, CA 92227 (32.959947, -115.552723)
## 551                                                       ONE CAPITAL WAY PENNINGTON, NJ 08534
## 552                     110 MEMORIAL HOSPITAL DRIVE HUNTSVILLE, TX 77340 (30.69849, -95.55799)
## 553                                 27700 MEDICAL CENTER RD, 5TH FLOOR MISSION VIEJO, CA 92691
## 554                         1003 US HIGHWAY 64 NORTH BUFFALO, OK 73834 (36.844966, -99.629302)
## 555                           4500 SAN PABLO RD JACKSONVILLE, FL 32224 (30.263702, -81.437533)
## 556                               413 LILLY ROAD NE OLYMPIA, WA 98506 (47.052791, -122.844369)
## 557                               415 SIXTH STREET LEWISTON, ID 83501 (46.417121, -117.024997)
## 558             525 BRANSON LANDING BLVD, PO BOX 650 BRANSON, MO 65615 (36.650541, -93.220376)
## 559                        555 E CHEVES ST BOX 8700 FLORENCE, SC 29506 (34.195931, -79.758784)
## 560                                                ONE GUSTAVE L LEVY PLACE NEW YORK, NY 10029
## 561                         3001 SILLECT AVENUE BAKERSFIELD, CA 93308 (35.386106, -119.040847)
## 562                       1125 MARGUERITE STREET MORGAN CITY, LA 70380 (29.708471, -91.200157)
## 563                               601 EAST SECOND ST OAKLAND, NE 68045 (41.834571, -96.459197)
## 564                     1011 BALDWIN PARK BLVD BALDWIN PARK, CA 91706 (34.064642, -117.984646)
## 565                           904 WOLLARD BOULEVARD RICHMOND, MO 64085 (39.264394, -93.956173)
## 566                       2901 SQUALICUM PARKWAY BELLINGHAM, WA 98225 (48.772278, -122.474878)
## 567                              300 CANAL STREET KING CITY, CA 93930 (36.206819, -121.132137)
## 568                          3741 WEST 12600 SOUTH RIVERTON, UT 84065 (40.522238, -111.979725)
## 569                            60 EASTER AVENUE WEAVERVILLE, CA 96093 (40.737579, -122.939444)
## 570                                       707 GRANT ST ATWOOD, KS 67730 (39.813264, -101.0385)
## 571                            2700 E BROAD STREET MANSFIELD, TX 76063 (32.569228, -97.095641)
## 572                                 4250 HOSPITAL DR MARIANNA, FL 32446 (30.78748, -85.240932)
## 573                        4050 COON RAPIDS BLVD COON RAPIDS, MN 55433 (45.183842, -93.368221)
## 574                      200 EAST CHESTNUT STREET LOUISVILLE, KY 40202 (38.248213, -85.751133)
## 575                                  115 MILL STREET BELMONT, MA 02478 (42.394424, -71.195698)
## 576                                 601 E 15TH STREET AUSTIN, TX 78701 (30.275055, -97.732977)
## 577                                        2175 ROSALINE AVE, CLAIRMONT HGTS REDDING, CA 96001
## 578                                4002 VISTA WAY OCEANSIDE, CA 92056 (33.183783, -117.290918)
## 579                         2777 SPEISSEGGER DRIVE CHARLESTON, SC 29405 (32.84027, -79.969729)
## 580                             3800 RESERVOIR RD WASHINGTON, DC 20007 (38.912599, -77.074388)
## 581                             911 WEST 5TH AVENUE SPOKANE, WA 99204 (47.651398, -117.425957)
## 582                     11116 MEDICAL CAMPUS ROAD HAGERSTOWN, MD 21742 (39.623764, -77.683344)
## 583                                 5755 CEDAR LANE COLUMBIA, MD 21044 (39.214405, -76.887198)
## 584                           9300 WEST SUNSET RD LAS VEGAS, NV 89148 (36.070256, -115.295512)
## 585                               835 S BISHOP BLVD PULLMAN, WA 99163 (46.713462, -117.169846)
## 586                                      1102 N PINE ROAD OLLA, LA 71465 (31.85976, -92.27602)
## 587                              158 HOSPITAL DRIVE CARTHAGE, TN 37030 (36.263607, -85.948556)
## 588                           179 NORTH BROAD STREET NORWICH, NY 13815 (42.542038, -75.524724)
## 589                              49 OLD HICKORY BLVD JACKSON, TN 38305 (35.654784, -88.831291)
## 590                        435 EAST HENRIETTA ROAD ROCHESTER, NY 14620 (43.111856, -77.616078)
## 591                             1000 SOUTH BECKHAM AVE TYLER, TX 75701 (32.338102, -95.291862)
## 592                             610 N OHIO AVE APPLETON CITY, MO 64724 (38.192787, -94.020389)
## 593                          220 WEST SECOND STREET GOODLAND, KS 67735 (39.35759, -101.713256)
## 594                         1451 HILLSIDE DRIVE CLARKS SUMMIT, PA 18411 (41.484494, -75.73559)
## 595                                 640 S STATE STREET DOVER, DE 19901 (39.150687, -75.522327)
## 596                                     501 AIRPORT RD RIFLE, CO 81650 (39.522587, -107.77201)
## 597                  2095 HENRY TECKLENBURG DRIVE CHARLESTON, SC 29414 (32.810751, -80.042264)
## 598                     1100 GRAMPIAN BOULEVARD WILLIAMSPORT, PA 17701 (41.260658, -76.984857)
## 599                                164 W 13TH STREET GRAFTON, ND 58237 (48.411484, -97.413829)
## 600                             350 HAWTHORNE AVENUE OAKLAND, CA 94609 (37.820784, -122.26328)
## 601                          202-206 MILBY STREET GREENSBURG, KY 42743 (37.242124, -85.496302)
## 602                           6019 WALNUT GROVE ROAD MEMPHIS, TN 38120 (35.130758, -89.861022)
## 603                              1441 FLORIDA AVENUE MODESTO, CA 95350 (37.665666, -120.99625)
## 604                           5215 HOLY CROSS PKWY MISHAWAKA, IN 46545 (41.704501, -86.174459)
## 605                                   801 SENECA ST VENTURA, CA 93001 (34.307544, -119.283349)
## 606                                 1560 SUMRALL RD COLUMBIA, MS 39429 (31.256354, -89.806273)
## 607                              1500 SAND POINT RD MUNISING, MI 49862 (46.423849, -86.625716)
## 608                               15615 POMERADO ROAD POWAY, CA 92064 (32.996802, -117.057852)
## 609               2600 REDONDO AVENUE, SUITE 500 LONG BEACH, CA 90806 (33.805598, -118.151361)
## 610                                                      1100 S 10TH AVE ROCK RAPIDS, IA 51246
## 611                     225 PENN AVENUE 2ND FLOOR PITTSBURGH, PA 15221 (40.446253, -79.892489)
## 612                                     401 N HOOPER ST CARO, MI 48723 (43.493151, -83.407157)
## 613                       5000 KENTUCKY ROUTE 321 PRESTONSBURG, KY 41653 (37.71054, -82.77025)
## 614                                1141 HOSPITAL DR NW CORYDON, IN 47112 (38.23898, -86.14774)
## 615                       5400 SOUTH RAINBOW BLVD LAS VEGAS, NV 89118 (36.089714, -115.242882)
## 616                                 520 E 6TH STREET ODESSA, TX 79761 (31.851458, -102.366027)
## 617                          1120 CYPRESS STATION DR HOUSTON, TX 77090 (30.023779, -95.439216)
## 618                         300 1ST CAPITOL DR SAINT CHARLES, MO 63301 (38.780377, -90.484508)
## 619                                221 N E GLEN OAK AVE PEORIA, IL 61636 (40.700181, -89.5946)
## 620                                            P O BOX 1990, 10 EAST 31ST ST KEARNEY, NE 68848
## 621                                      946 EAST REED HAYTI, MO 63851 (36.236855, -89.739975)
## 622                                 309 JACKSON STREET MONROE, LA 71201 (32.499732, -92.11479)
## 623                                 30901 PALMER RD WESTLAND, MI 48185 (42.296493, -83.344765)
## 624                                150 NORTH 200 WEST MALAD, ID 83252 (42.189638, -112.250759)
## 625                                 2020 59TH ST W BRADENTON, FL 34209 (27.482176, -82.620468)
## 626                                2131 W 3RD ST LOS ANGELES, CA 90057 (34.06319, -118.273665)
## 627                               306 STANAFORD ROAD BECKLEY, WV 25801 (37.798718, -81.169502)
## 628                            4620 EAST BASELINE ROAD MESA, AZ 85206 (33.379206, -111.734695)
## 629                                 601 E ROLLINS ST ORLANDO, FL 32803 (28.573457, -81.370328)
## 630                 400 WEST INTERSTATE 635 SUITE 101 IRVING, TX 75063 (32.912317, -96.951522)
## 631                            200 NORTH 400 EAST PANGUITCH, UT 84759 (37.828772, -112.435476)
## 632                             221 MAHALANI STREET WAILUKU, HI 96793 (20.884455, -156.488087)
## 633                           2 COULTER ROAD CLIFTON SPRINGS, NY 14432 (42.960473, -77.139252)
## 634                        2500 SOUTH WOODWORTH LOOP PALMER, AK 99645 (61.561217, -149.258718)
## 635                            3500 ARENDELL ST MOREHEAD CITY, NC 28557 (34.724814, -76.75413)
## 636                              208 PIERSON AVE CENTREVILLE, AL 35042 (32.951101, -87.147865)
## 637                             610 SPARTA ROAD SANDERSVILLE, GA 31082 (32.996817, -82.805042)
## 638                             110 WEST 4TH STREET DEQUINCY, LA 70633 (30.451803, -93.437191)
## 639                       347 NORTH KUAKINI STREET HONOLULU, HI 96817 (21.322211, -157.856211)
## 640                                  2525 HOLLY HALL HOUSTON, TX 77054 (29.685422, -95.387094)
## 641                                 326 ASBURY AVENUE RIPLEY, TN 38063 (35.746554, -89.548949)
## 642                        500 E POTTAWATAMIE STREET TECUMSEH, MI 49286 (42.002909, -83.93755)
## 643                                    65 JAMES STREET EDISON, NJ 08818 (40.55787, -74.349499)
## 644                             1822 MULBERRY STREET SCRANTON, PA 18510 (41.400717, -75.64589)
## 645                        600 N WASHINGTON ST COUNCIL GROVE, KS 66846 (38.665115, -96.500129)
## 646                      8311 WEST ROOSEVELT ROAD FOREST PARK, IL 60130 (41.864556, -87.82862)
## 647                               900 11TH STREET SE BANDON, OR 97411 (43.113244, -124.402426)
## 648                                  2321 STOUT RD MENOMONIE, WI 54751 (44.882566, -91.900468)
## 649                                           600 E INTERSTATE 20 PO BOX 640 STANTON, TX 79782
## 650                          3421 WEST NINTH STREET WATERLOO, IA 50702 (42.463867, -92.345787)
## 651                           5500 VERULAM AVENUE CINCINNATI, OH 45213 (39.173401, -84.430634)
## 652                          425 NORTH ELM STREET SAUK CENTRE, MN 56378 (45.74589, -94.954567)
## 653                                680 CENTER STREET BROCKTON, MA 02302 (42.08621, -70.991083)
## 654                                   80 HIGHLAND ST LACONIA, NH 03246 (43.528103, -71.460771)
## 655                       2000 DAN PROCTOR DRIVE SAINT MARYS, GA 31558 (30.781226, -81.616234)
## 656                            2875 NW STUCKI AVE HILLSBORO, OR 97124 (45.539713, -122.875667)
## 657                             110 WEST SIXTH STREET OSWEGO, NY 13126 (43.454141, -76.516001)
## 658                                                       W 800 FIFTH AVENUE SPOKANE, WA 99210
## 659                        1117 SPRING STREET FRIDAY HARBOR, WA 98250 (48.529857, -123.028171)
## 660                          4445 MAGNOLIA AVENUE RIVERSIDE, CA 92501 (33.975677, -117.380374)
## 661                          10 ALICE PECK DAY DRIVE LEBANON, NH 03766 (43.640293, -72.264366)
## 662                             1210 S OLD DIXIE HWY JUPITER, FL 33458 (26.922824, -80.094539)
## 663                                18500 KATY FREEWAY HOUSTON, TX 77094 (29.785531, -95.69724)
## 664                           315 NORTH 14TH AVENUE OTHELLO, WA 99344 (46.830363, -119.154363)
## 665                                  2900 EUREKA WAY REDDING, CA 96001 (40.58549, -122.416264)
## 666                               901 WESTLAKE DRIVE COLUMBIA, KY 42728 (37.096289, -85.29494)
## 667                             1801 HICKMAN ROAD DES MOINES, IA 50314 (41.615097, -93.641155)
## 668                5680 FRISCO SQUARE BLVD, SUITE 3000 FRISCO, TX 75034 (33.15042, -96.837442)
## 669                             363 SUNRISE BOULEVARD ROMNEY, WV 26757 (39.332057, -78.699913)
## 670                          757 WESTWOOD PLAZA LOS ANGELES, CA 90095 (34.063939, -118.445411)
## 671                   1024 CENTRAL PARK DR STEAMBOAT SPRINGS, CO 80487 (40.462413, -106.81442)
## 672                             7031 SW 62ND AVE SOUTH MIAMI, FL 33143 (25.705493, -80.293469)
## 673                                520 ROSE LANE WICKENBURG, AZ 85390 (33.978056, -112.738825)
## 674                               115 PORTER DRIVE MIDDLEBURY, VT 05753 (43.99947, -73.169803)
## 675                        1304 W BOBO NEWSOM HWY HARTSVILLE, SC 29550 (34.348675, -80.105767)
## 676                                    540 THE RIALTO VENICE, FL 34285 (27.089683, -82.444445)
## 677                      300 KINGWOOD MEDICAL DRIVE KINGWOOD, TX 77339 (30.047198, -95.257949)
## 678                        1324 LAKELAND HILLS BLVD LAKELAND, FL 33805 (28.059671, -81.953248)
## 679                          201 - 16TH AVENUE EAST SEATTLE, WA 98112 (47.619731, -122.311413)
## 680                           850 RIVERVIEW AVENUE PINEVILLE, KY 40977 (36.763077, -83.708574)
## 681                               1000 GREENLEY ROAD SONORA, CA 95370 (37.976728, -120.369442)
## 682                              8401 MARKET STREET BOARDMAN, OH 44512 (40.994956, -80.662744)
## 683                                   1423 SEVENTH ST AURORA, NE 68818 (40.871812, -98.009531)
## 684                             840 WALNUT STREET PHILADELPHIA, PA 19107 (39.948271, -75.1557)
## 685                                   2901 W SWANN AVE TAMPA, FL 33609 (27.937443, -82.489816)
## 686                                    525 N FOSTER MITCHELL, SD 57301 (43.713842, -98.007325)
## 687                                    703 N MCEWAN ST CLARE, MI 48617 (43.820724, -84.768349)
## 688                  13101 MEMORIAL SPRINGS CT OKLAHOMA CITY, OK 73114 (35.602272, -97.527808)
## 689                              870 WEST MAIN STREET GENEVA, OH 44041 (41.800233, -80.962277)
## 690                               159 HARTLEY WAY PEARISBURG, VA 24134 (37.332697, -80.710747)
## 691                            2111 EXCHANGE STREET ASTORIA, OR 97103 (46.188503, -123.818502)
## 692                          801 SOUTH WASHINGTON NAPERVILLE, IL 60540 (41.761426, -88.149239)
## 693                          1400 BRADEN STREET JACKSONVILLE, AR 72076 (34.872381, -92.124697)
## 694                              6900 N DURANGO DR LAS VEGAS, NV 89149 (36.286014, -115.28773)
## 695                         320 EAST NORTH AVENUE PITTSBURGH, PA 15212 (40.456149, -80.003249)
## 696                  5656 BEE CAVES ROAD, SUITE M-302 AUSTIN, TX 78746 (30.294735, -97.824938)
## 697                                   105 WALL STREET POTEAU, OK 74953 (35.043979, -94.612834)
## 698                                 2770 MAIN STREET MARLETTE, MI 48453 (43.332579, -83.08016)
## 699                                211 PARK STREET ATTLEBORO, MA 02703 (41.942695, -71.275279)
## 700                                     777 AVENUE H POWELL, WY 82435 (44.756622, -108.770547)
## 701                           1301 NORTH MAIN STREET SANDWICH, IL 60548 (41.657133, -88.62192)
## 702                                300 56TH ST SE CHARLESTON, WV 25304 (38.314977, -81.569367)
## 703                                  1 KAMANI STREET PAHALA, HI 96777 (19.200571, -155.472097)
## 704                              10000 TELEGRAPH ROAD TAYLOR, MI 48180 (42.233501, -83.269667)
## 705                                    924 HOWE ST SOUTHPORT, NC 28461 (33.929038, -78.022194)
## 706                             880 GREENLAWN AVENUE COLUMBUS, OH 43223 (39.93977, -83.017782)
## 707                                5001 W HARDY ST HATTIESBURG, MS 39402 (31.323058, -89.3669)
## 708                         224 EAST MAIN STREET SPRINGVILLE, NY 14141 (42.508484, -78.659235)
## 709                    3200 NORTH TARRANT PARKWAY FORT WORTH, TX 76177 (32.897434, -97.312299)
## 710                      509 NORTH MADISON STREET BLOOMFIELD, IA 52537 (40.759223, -92.414987)
## 711                        6640 KANIKSU STREET BONNERS FERRY, ID 83805 (48.70257, -116.322084)
## 712                         13855 E 14TH STREET SAN LEANDRO, CA 94578 (37.714632, -122.141973)
## 713                       2305 WEST GEORGIA STREET LOUISIANA, MO 63353 (39.441679, -91.065383)
## 714                                                         700 NORTH HUSER SYRACUSE, KS 67878
## 715                                                      56 FRANKLIN STEET WATERBURY, CT 06706
## 716                                   916 MYRTLE AVE STURGIS, MI 49091 (41.794193, -85.407308)
## 717                 118 SOUTH MOUNTAIN AVENUE SPRINGERVILLE, AZ 85938 (34.132136, -109.286545)
## 718                           8201 W BROWARD BLVD PLANTATION, FL 33324 (26.120882, -80.258429)
## 719     800 STE GENEVIEVE DRIVE, PO BOX 468 SAINTE GENEVIEVE, MO 63670 (37.968347, -90.053968)
## 720                          430 NORTH MONITOR ST WEST POINT, NE 68788 (41.842945, -96.706763)
## 721                                  420 N CENTER ST HICKORY, NC 28601 (35.737175, -81.337778)
## 722                                    800 CLAY ST DARLINGTON, WI 53530 (42.68397, -90.110419)
## 723                       1310 SOUTHERN AVENUE SE WASHINGTON, DC 20032 (38.834155, -76.984698)
## 724                                 115 CASS AVENUE WOONSOCKET, RI 02895 (42.00532, -71.49621)
## 725                      1001 EAST SECOND STREET COUDERSPORT, PA 16915 (41.770667, -77.979741)
## 726                                    5200 NE 2ND AVE MIAMI, FL 33137 (25.822972, -80.191767)
## 727                    2735 SILVER CREEK ROAD BULLHEAD CITY, AZ 86442 (35.109853, -114.555146)
## 728                               2701 US HWY 271 N PITTSBURG, TX 75686 (33.02843, -94.962966)
## 729               2222 NORTH NEVADA AVENUE COLORADO SPRINGS, CO 80907 (38.865568, -104.820123)
## 730                                 6020 W PARKER ROAD PLANO, TX 75093 (33.045103, -96.832226)
## 731                             300 HALKET STREET PITTSBURGH, PA 15213 (40.437077, -79.959546)
## 732                        801 EAST WHEELER ROAD MOSES LAKE, WA 98837 (47.131115, -119.264735)
## 733                     201 WEST AVALON AVENUE MUSCLE SHOALS, AL 35661 (34.744941, -87.676511)
## 734                          3520 WEST OXFORD AVENUE DENVER, CO 80236 (39.642267, -105.033441)
## 735                  163 SOUTH TALLAHASSEE STREET HAZLEHURST, GA 31539 (31.857893, -82.607397)
## 736                            805 FRIENDSHIP ROAD TALLASSEE, AL 36078 (32.535293, -85.911996)
## 737                            315 WEST 15TH STREET LIBERAL, KS 67901 (37.054216, -100.926569)
## 738                               515 QUARTER STREET GLADWIN, MI 48624 (43.975731, -84.495354)
## 739                               1224 TROTWOOD AVE COLUMBIA, TN 38401 (35.605855, -87.065844)
## 740                         140 OLD ORANGEBURG RD ORANGEBURG, NY 10962 (41.044479, -73.969781)
## 741                           6262 SOUTH SHERIDAN ROAD TULSA, OK 74133 (36.072662, -95.904308)
## 742                   631 NORTH BROAD STREET EXT. GROVE CITY, PA 16127 (41.170709, -80.083156)
## 743                11234 ANDERSON STREET SUITE A LOMA LINDA, CA 92354 (34.049482, -117.261122)
## 744                                2463 SOUTH M-30 WEST BRANCH, MI 48661 (44.26283, -84.24623)
## 745                        5351 DELMAR BOULEVARD SAINT LOUIS, MO 63112 (38.653273, -90.276991)
## 746                            2025 MORSE AVENUE SACRAMENTO, CA 95825 (38.602162, -121.392238)
## 747                            100 MCGREGOR STREET MANCHESTER, NH 03102 (42.991211, -71.47379)
## 748                            1001 SOUTH GEORGE STREET YORK, PA 17403 (39.946668, -76.720535)
## 749                                   1200 S FIRST AVE HINES, IL 60141 (41.877233, -87.833909)
## 750                                     300 HEALTH WAY POTOSI, MO 63664 (37.92599, -90.773133)
## 751                  350 POPLAR DRIVE PO BOX 3060 PETERSBURG, VA 23805 (37.188489, -77.359825)
## 752                             3000 ARLINGTON AVENUE TOLEDO, OH 43699 (41.621215, -83.615382)
## 753                                   1135 CARTHAGE ST SANFORD, NC 27330 (35.469093, -79.1888)
## 754                                212 S SULLIVAN ST FREMONT, MI 49412 (43.464383, -85.950763)
## 755                         400 SOUTH SANTA FE AVENUE SALINA, KS 67401 (38.833271, -97.610525)
## 756                       384 SE COMBS FLAT ROAD PRINEVILLE, OR 97754 (44.298093, -120.826968)
## 757                              23845 MCBEAN PKWY VALENCIA, CA 91355 (34.396342, -118.553143)
## 758                           1800 BYPASS ROAD HEBER SPRINGS, AR 72543 (35.506578, -92.001319)
## 759                             201 SOUTH GARNETT ROAD TULSA, OK 74128 (36.158032, -95.851194)
## 760                                 2015 JACKSON ST ANDERSON, IN 46016 (40.096257, -85.680467)
## 761                                  707 ROLAND ST SPEARMAN, TX 79081 (36.190475, -101.200127)
## 762                      10 WAYMAN LANE, PO BOX 8 BAR HARBOR, ME 04609 (44.384369, -68.202331)
## 763                           345 BLACKSTONE BLVD PROVIDENCE, RI 02906 (41.846281, -71.386787)
## 764                              324 DOOLITTLE ROAD WOODBURY, TN 37190 (35.832865, -86.072943)
## 765                                1225 LAKE ST MELROSE PARK, IL 60160 (41.891794, -87.848963)
## 766                        2718 SQUIRREL HOLLOW DRIVE LINDEN, TN 37096 (35.591854, -87.862909)
## 767                            169 RIVERSIDE DRIVE BINGHAMTON, NY 13905 (42.09264, -75.935558)
## 768                           4715 NORTH 15 STREET ARLINGTON, VA 22205 (38.887941, -77.121669)
## 769                                   #4007 EST DIAMOND RUBY, CHRISTIANSTED ST CROIX, VI 00820
## 770        353 FAIRMONT BLVD POST OFFICE BOX 6000 RAPID CITY, SD 57701 (44.05861, -103.224964)
## 771                             1015 MICHIGAN AVE LOGANSPORT, IN 46947 (40.761945, -86.361581)
## 772                       361 ALEXANDER SPRING ROAD CARLISLE, PA 17015 (40.184767, -77.223007)
## 773                                   100 AIRPORT RD KINSTON, NC 28501 (35.290955, -77.581407)
## 774                             2701 HOSPITAL DRIVE VICTORIA, TX 77901 (28.813157, -96.976759)
## 775                               4500 W 69TH ST SIOUX FALLS, SD 57108 (43.489922, -96.780906)
## 776                              330 BROOKLINE AVENUE BOSTON, MA 02215 (42.340575, -71.105504)
## 777                                   900 LINCOLN AVE GRANT, NE 69140 (40.848268, -101.727182)
## 778                             1420 S CENTRAL AVE GLENDALE, CA 91204 (34.127789, -118.257795)
## 779              5555 WEST LAS POSITAS BOULEVARD PLEASANTON, CA 94588 (37.692133, -121.880027)
## 780                                1230 BAXTER STREET ATHENS, GA 30606 (33.945929, -83.404467)
## 781                                700 W. 7TH STREET BRISTOW, OK 74010 (35.833838, -96.400714)
## 782                                                     611 ST JOSEPH AVE MARSHFIELD, WI 54449
## 783                              427 EVERGREEN STREET BUNKIE, LA 71322 (30.952426, -92.176647)
## 784                              2701 DEKALB PIKE NORRISTOWN, PA 19401 (40.138961, -75.315289)
## 785                                 243 ELM STREET CLAREMONT, NH 03743 (43.385143, -72.342465)
## 786                             325 SOUTH BELMONT STREET YORK, PA 17403 (39.967056, -76.69378)
## 787                          1000 LINCOLN STREET FORT MORGAN, CO 80701 (40.259344, -103.79621)
## 788                                 295 VARNUM AVENUE LOWELL, MA 01854 (42.646307, -71.341323)
## 789                1800 EAST FLORENCE BOULEVARD CASA GRANDE, AZ 85122 (32.879608, -111.709253)
## 790                 1100 SOUTH MEDICAL DRIVE MOUNT PLEASANT, UT 84647 (39.531803, -111.461194)
## 791                               105 MARY'S AVENUE KINGSTON, NY 12401 (41.922453, -73.999335)
## 792                              100 SOUTH ELLIS BOISE CITY, OK 73933 (36.729055, -102.517537)
## 793                                     3501 MILLS AVE AUSTIN, TX 78731 (30.305913, -97.74907)
## 794                             401 EAST SPRUCE GARDEN CITY, KS 67846 (37.968871, -100.868615)
## 795                  24451 HEALTH CENTER DRIVE LAGUNA HILLS, CA 92653 (33.607762, -117.708258)
## 796                        7700 UNIVERSITY DRIVE WEST CHESTER, OH 45069 (39.358248, -84.36717)
## 797                    2408 EAST 81ST STREET, SUITE 300 TULSA, OK 74137 (36.046322, -95.95518)
## 798                              613 VICTORIA LANE HARLINGEN, TX 78550 (26.161988, -97.672134)
## 799                           2500 GRANT ROAD MOUNTAIN VIEW, CA 94040 (37.369341, -122.077933)
## 800                            400 EAST 10TH STREET ANNISTON, AL 36207 (33.657123, -85.823353)
## 801                          200 MEMORIAL AVENUE WESTMINSTER, MD 21157 (39.556135, -76.991655)
## 802                               1315 ROBERTS STREET CAMDEN, SC 29020 (34.253164, -80.589579)
## 803                    315 CAMINO DEL REMEDIO SANTA BARBARA, CA 93110 (34.444315, -119.779381)
## 804                             267 NORTH CANYON DR GOODING, ID 83330 (42.921869, -114.711128)
## 805                                  2100 HWY 61 N VICKSBURG, MS 39183 (32.374802, -90.827497)
## 806                           258 N RON MCNAIR BLVD LAKE CITY, SC 29560 (33.88037, -79.759089)
## 807                             681 CLARKSON AVENUE BROOKLYN, NY 11203 (40.656266, -73.936177)
## 808                                630 EATON AVENUE HAMILTON, OH 45013 (39.415153, -84.573822)
## 809                             100 S BLISS AVENUE TAHLEQUAH, OK 74464 (35.912387, -94.949698)
## 810                             1401 10TH AVE WEST MOBRIDGE, SD 57601 (45.546136, -100.448152)
## 811                                36500 AURORA DRIVE SUMMIT, WI 53066 (43.063611, -88.467732)
## 812                      575 NORTH RIVER STREET WILKES-BARRE, PA 18764 (41.258261, -75.868165)
## 813                            303 N JACKSON STREET MORRISON, IL 61270 (41.809131, -89.956574)
## 814                          367 CLEAR CREEK PARKWAY LAVONIA, GA 30553 (34.439485, -83.130855)
## 815                               101 DUDLEY STREET PROVIDENCE, RI 02905 (41.8102, -71.411562)
## 816                   1081 NORTH CHINA LAKE BLVD RIDGECREST, CA 93555 (35.640802, -117.669852)
## 817                            601 ROXBURY ROAD SHIPPENSBURG, PA 17257 (40.054045, -77.538185)
## 818                             100 GRAND STREET NEW BRITAIN, CT 06050 (41.662015, -72.787799)
## 819                              98-1079 MOANALUA ROAD AIEA, HI 96701 (21.383988, -157.937675)
## 820                           311 SOUTH CLARK STREET CARROLL, IA 51401 (42.056982, -94.867981)
## 821                         115 WEST SILVER STREET WESTFIELD, MA 01085 (42.117789, -72.760397)
## 822                    501 SOUTH POPLAR STREET ELIZABETHTOWN, NC 28337 (34.623474, -78.608298)
## 823                                     109 PLUM ST DONIPHAN, MO 63935 (36.620805, -90.826054)
## 824                               1600 SOUTH 48TH ST LINCOLN, NE 68506 (40.796598, -96.653661)
## 825                           602 N 6TH W ST CHEYENNE WELLS, CO 80810 (38.825887, -102.355583)
## 826                            465 W PUTNAM AVE PORTERVILLE, CA 93257 (36.069573, -119.027274)
## 827                         269 SOUTH CANDY LANE COTTONWOOD, AZ 86326 (34.736201, -112.031784)
## 828                                                   1200 S COLUMBIA RD GRAND FORKS, ND 58201
## 829                         2430 WEST PIERCE STREET CARLSBAD, NM 88220 (32.44184, -104.258642)
## 830                            400 HIGHLAND AVENUE LEWISTOWN, PA 17044 (40.617853, -77.567402)
## 831                                58 CARROLL STREET LEBANON, VA 24266 (36.899027, -82.078105)
## 832                 1401 SOUTH PARK STREET EL DORADO SPRINGS, MO 64744 (37.860674, -94.018505)
## 833                              1007 GOODYEAR AVENUE GADSDEN, AL 35903 (34.009389, -85.96752)
## 834                                     1600 23RD ST BEDFORD, IN 47421 (38.853488, -86.493194)
## 835                       16 W MAIN ST WHITE SULPHUR SPRING, MT 59645 (46.548207, -110.904216)
## 836                           380 WOODS COVE ROAD SCOTTSBORO, AL 35768 (34.661254, -86.047116)
## 837                                    BLDG 29, 30 BARRETT BLDG, 100 H STREET BUTNER, NC 27509
## 838                                82-68 164TH STREET JAMAICA, NY 11432 (40.71698, -73.803431)
## 839                              2845 GREENBRIER RD GREEN BAY, WI 54311 (44.47335, -87.941091)
## 840                          9301 CONNECTICUT DR CROWN POINT, IN 46307 (41.449118, -87.330069)
## 841                            225 FALCON DRIVE MOUNT STERLING, KY 40353 (38.07591, -83.94692)
## 842                           3400 LINCOLN AVENUE EVANSVILLE, IN 47714 (37.969726, -87.508723)
## 843                                  710 N 11TH ST COLUMBUS, MT 59019 (45.642686, -109.243178)
## 844                                4300 ALTON RD MIAMI BEACH, FL 33140 (25.815045, -80.137939)
## 845                                130 N HOSPITAL DR OAKDALE, LA 71463 (30.816264, -92.644545)
## 846                              406 EAST ELM ST CARSON CITY, MI 48811 (43.175989, -84.843788)
## 847                              810 12TH STREET HOOD RIVER, OR 97031 (45.704561, -121.523224)
## 848                          1200 E TREMONT STREET HILLSBORO, IL 62049 (39.153672, -89.481508)
## 849                        2026 WEST UNIVERSITY DRIVE DENTON, TX 76201 (33.229662, -97.156825)
## 850                     2850 E STATE HIGHWAY 114 TROPHY CLUB, TX 76262 (32.987984, -97.175031)
## 851                             900 SOUTH BRYAN ROAD MISSION, TX 78572 (26.196599, -98.312668)
## 852                          1000 BOWER HILL ROAD PITTSBURGH, PA 15243 (40.376775, -80.066966)
## 853                             1338 PHAY AVENUE CANON CITY, CO 81212 (38.455747, -105.230264)
## 854                            908 W 4TH NORTH ST MORRISTOWN, TN 37814 (36.211948, -83.304345)
## 855                     501 SOUTH UNION AVENUE HAVRE DE GRACE, MD 21078 (39.54348, -76.091528)
## 856                           2975 N SYCAMORE DR SIMI VALLEY, CA 93065 (34.288837, -118.74396)
## 857                                             1 NORTH AVENUE N PO BOX 1117 HASKELL, TX 79521
## 858                             3500 W WHEATLAND ROAD DALLAS, TX 75237 (32.647444, -96.876265)
## 859                           651 CATHEDRAL DRIVE RAPID CITY, SD 57701 (44.05919, -103.229102)
## 860                           7531 S STONY ISLAND AVE CHICAGO, IL 60649 (41.757332, -87.58571)
## 861                            1400 WEST MAIN STREET BELLEVUE, OH 44811 (41.28508, -82.882559)
## 862                                 603 ROSARY DRIVE CORNING, IA 50841 (40.988375, -94.747914)
## 863                                401 N MAIN ST KENANSVILLE, NC 28349 (34.964769, -77.960479)
## 864                          7808 CLODUS FIELDS DRIVE DALLAS, TX 75251 (32.913541, -96.772259)
## 865                                                         2255 STURGIS ROAD CONWAY, AR 72034
## 866                            809 82ND PARKWAY MYRTLE BEACH, SC 29572 (33.754763, -78.817079)
## 867                              254 EASTON AVE NEW BRUNSWICK, NJ 08901 (40.501846, -74.45913)
## 868                             1101 NOTT STREET SCHENECTADY, NY 12308 (42.819818, -73.918883)
## 869                                 1316 E SEVENTH ST AUBURN, IN 46706 (41.367669, -85.035573)
## 870                           4500 MEMORIAL DRIVE BELLEVILLE, IL 62226 (38.550533, -90.021168)
## 871                             810 W HIGHWAY 71 MARBLE FALLS, TX 78654 (30.11074, -97.359381)
## 872                                   1000 E MAIN ST DANVILLE, IN 46122 (39.76071, -86.500995)
## 873                         551 HILL COUNTRY DRIVE KERRVILLE, TX 78028 (30.044944, -99.151857)
## 874         601 DR MARTIN LUTHER KING JR AVE NE ALBUQUERQUE, NM 87102 (35.085622, -106.639765)
## 875                          18101 PRINCE PHILIP DRIVE OLNEY, MD 20832 (39.153858, -77.056819)
## 876                 250 BON AIR ROAD, PO BOX 8010 GREENBRAE, CA 94904 (37.948884, -122.535897)
## 877                                 16303 GRANT ROAD CYPRESS, TX 77429 (30.024483, -95.664015)
## 878                            451 WEST LOCKE STREET ASHDOWN, AR 71822 (33.669572, -94.135025)
## 879                                150 BROAD STREET HAMILTON, NY 13346 (42.813906, -75.541908)
## 880                                                23625 W R HOLMAN HIGHWAY MONTEREY, CA 93940
## 881                            636 DEL PRADO BLVD CAPE CORAL, FL 33990 (26.639321, -81.940946)
## 882                         1001 STERIGERE STREET NORRISTOWN, PA 19401 (40.129411, -75.348612)
## 883                     15225 HEALTHCOTE BOULEVARD HAYMARKET, VA 20169 (38.822174, -77.641889)
## 884                        1395 S PINELLAS AVE TARPON SPRINGS, FL 34689 (28.13314, -82.758576)
## 885                      60 MEMORIAL MEDICAL PKWY PALM COAST, FL 32164 (29.478987, -81.190089)
## 886                     2801 MEDICAL CENTER DRIVE POCAHONTAS, AR 72455 (36.289911, -90.996334)
## 887                              1501 S COULTER ST AMARILLO, TX 79106 (35.199765, -101.921881)
## 888                         2204 WILBORN AVENUE SOUTH BOSTON, VA 24592 (36.713485, -78.913198)
## 889                      1201 PLEASANT VALLEY ROAD OWENSBORO, KY 42303 (37.777296, -87.069958)
## 890                     535 SOUTH HUMBOLDT STREET BATTE MTN, NV 89820 (40.640652, -116.938821)
## 891                          801 EAST WILLIAMS AVENUE FALLON, NV 89406 (39.474876, -118.76518)
## 892                       26520 CACTUS AVENUE MORENO VALLEY, CA 92555 (33.910054, -117.195824)
## 893                             250 HOSPITAL PLACE SOLDOTNA, AK 99669 (60.493865, -151.077658)
## 894                              1700 S TAMIAMI TRL SARASOTA, FL 34239 (27.318268, -82.529687)
## 895                     2211 LOMAS BOULEVARD NE ALBUQUERQUE, NM 87106 (35.087483, -106.618148)
## 896                              161 RIVER OAKS DRIVE CANTON, MS 39046 (32.582157, -90.081677)
## 897                               200 FLEETWOOD DRIVE EASLEY, SC 29640 (34.839651, -82.607064)
## 898                              302 GOBBLERS KNOB RD LUFKIN, TX 75904 (31.306558, -94.745631)
## 899                                    122 PINNELL ST RIPLEY, WV 25271 (38.823541, -81.728325)
## 900                                 2530 DEBARR RD ANCHORAGE, AK 99508 (61.20808, -149.834246)
## 901                             615 N BONITA AVE PANAMA CITY, FL 32401 (30.159681, -85.647067)
## 902                         2350 HOSPITAL DRIVE WEBSTER CITY, IA 50595 (42.452963, -93.813485)
## 903                                    10201 HWY 16 COMANCHE, TX 76442 (31.984614, -98.563264)
## 904                          1418 COLLEGE DRIVE MOUNT CARMEL, IL 62863 (38.421625, -87.768772)
## 905                             451 CLARKSON AVENUE BROOKLYN, NY 11203 (40.655773, -73.944039)
## 906                         910 EAST 20TH STREET SIOUX FALLS, SD 57105 (43.534829, -96.714388)
## 907                          15790 PAUL VEGA MD DRIVE HAMMOND, LA 70403 (30.466698, -90.45758)
## 908                             23500 US HWY 160 WALSENBURG, CO 81089 (37.607688, -104.819786)
## 909                               2800 MACGREGOR WAY HOUSTON, TX 77021 (29.712554, -95.375593)
## 910                     102 WEST CONECUH AVENUE UNION SPRINGS, AL 36089 (32.146182, -85.71638)
## 911                        1911 JOHNSON AVE SAN LUIS OBISPO, CA 93401 (35.278663, -120.650212)
## 912                                      CARRETERA 129 KM.1 AVENIDA SAN LUIS ARECIBO, PR 00613
## 913                              2525 KINGS HIGHWAY BROOKLYN, NY 11229 (40.613783, -73.948321)
## 914                                 910 COOK ROAD ORANGEBURG, SC 29118 (33.535009, -80.823203)
## 915                     417 FIRST AVENUE, PO BOX 365 SEWARD, AK 99664 (60.105046, -149.445383)
## 916                        29101 HOSPITAL ROAD LAKE ARROWHEAD, CA 92352 (34.2659, -117.167092)
## 917                             204 GROVE AVENUE CEDAR GROVE, NJ 07009 (40.851205, -74.233594)
## 918                                  23900 KATY FREEWAY KATY, TX 77494 (29.785918, -95.785657)
## 919                         1601 NEWCASTLE ROAD FORREST CITY, AR 72335 (35.039275, -90.771894)
## 920                                   7601 PRESTON ROAD PLANO, TX 75024 (33.079899, -96.79824)
## 921                             215 CHISHOLM TRAIL JACKSBORO, TX 76458 (33.230386, -98.166732)
## 922                           1300 EAST FIFTH AVENUE WINFIELD, KS 67156 (37.244649, -96.98247)
## 923                    1000 MEDICAL CENTER DRIVE HARDEEVILLE, SC 29927 (32.314817, -81.055429)
## 924                                    50 N PERRY ST PONTIAC, MI 48342 (42.638394, -83.291095)
## 925                               7050 GALL BLVD ZEPHYRHILLS, FL 33541 (28.260937, -82.188041)
## 926                         3100 OAK GROVE ROAD POPLAR BLUFF, MO 63901 (36.788987, -90.443287)
## 927                                 7101 JAHNKE ROAD RICHMOND, VA 23235 (37.515832, -77.52488)
## 928                        100 HEALTH PARK DRIVE LOUISVILLE, CO 80027 (39.950847, -105.149154)
## 929                               2525 N BROADWAY RED LODGE, MT 59068 (45.211697, -109.243045)
## 930                          7500 HOSPITAL DRIVE SACRAMENTO, CA 95823 (38.464232, -121.416333)
## 931                                                            14TH & OREGON SABETHA, KS 66534
## 932                           6350 SOUTH MAPLE AVENUE TEMPE, AZ 85283 (33.364568, -111.938436)
## 933                               6621 FANNIN STREET HOUSTON, TX 77030 (29.708762, -95.401532)
## 934                                3001 AVENUE A DODGE CITY, KS 67801 (37.785487, -100.014975)
## 935                                     3 ERIE COURT OAK PARK, IL 60302 (41.89184, -87.777471)
## 936                           23700 CAMINO DEL SOL TORRANCE, CA 90505 (33.810205, -118.343947)
## 937                        18901 LAKE SHORE BOULEVARD EUCLID, OH 44119 (41.596734, -81.547421)
## 938                            5757 N DIXIE HWY OAKLAND PARK, FL 33334 (26.197882, -80.132487)
## 939                                10101 DOUBLE R BLVD RENO, NV 89521 (39.435894, -119.758393)
## 940                                    400 S 43RD ST RENTON, WA 98055 (47.441094, -122.214251)
## 941                4600 AMBASSADOR CAFFERY PARKWAY LAFAYETTE, LA 70508 (30.153523, -92.044812)
## 942                       1600 PRAIRIE CENTER PKWY BRIGHTON, CO 80601 (39.965441, -104.770924)
## 943                         5483 MOORETOWN ROAD WILLIAMSBURG, VA 23188 (37.315214, -76.730691)
## 944                          701 10TH STREET SE CEDAR RAPIDS, IA 52403 (41.978904, -91.654798)
## 945                      1101 VAN NESS AVENUE SAN FRANCISCO, CA 94109 (37.786152, -122.421544)
## 946                                101 HARRIS ROAD KILMARNOCK, VA 22482 (37.70029, -76.389778)
## 947                                   801 EAST THIRD HEREFORD, TX 79045 (34.821162, -102.3902)
## 948                                                     15 DR BASORA STREET MAYAGUEZ, PR 00681
## 949                            1310 PUNAHOU STREET HONOLULU, HI 96826 (21.300233, -157.834365)
## 950                             9500 EUCLID AVENUE CLEVELAND, OH 44195 (41.503438, -81.621528)
## 951                             800 WASHINGTON STREET NORWOOD, MA 02062 (42.189462, -71.20264)
## 952                          404 SOUTH BRADLEY STREET WARREN, AR 71671 (33.610538, -92.058665)
## 953                            501 NORTH STATE STREET WASECA, MN 56093 (44.081525, -93.507297)
## 954                                   805 W CEDAR ST STANDISH, MI 48658 (43.98283, -83.969352)
## 955                                 1850 CHADWICK DR JACKSON, MS 39204 (32.286929, -90.255755)
## 956                              602 N ACADIA ROAD THIBODAUX, LA 70301 (29.780546, -90.806819)
## 957                                1 AMALIA DRIVE BUCKHANNON, WV 26201 (38.991275, -80.236824)
## 958                             205 S HANOVER STREET HANOVER, KS 66945 (39.891047, -96.874771)
## 959                                8383 N DAVIS HWY PENSACOLA, FL 32514 (30.515161, -87.21692)
## 960                            250 PARK STREET BOWLING GREEN, KY 42101 (36.996366, -86.430232)
## 961                                  9400 NO NAME UNO GILROY, CA 95020 (37.03511, -121.573038)
## 962                          1200 COLLEGE DRIVE ROCK SPRINGS, WY 82901 (41.58406, -109.233578)
## 963                                102 E HOLME STREET NORTON, KS 67654 (39.838529, -99.888742)
## 964                                 107 SWIFT STREET REFUGIO, TX 78377 (28.306487, -97.279439)
## 965                                900 23RD ST NW WASHINGTON, DC 20037 (38.901169, -77.050119)
## 966                        1800 W CHARLESTON BLVD LAS VEGAS, NV 89102 (36.158941, -115.165945)
## 967                     16000 JOHNSTON MEMORIAL DRIVE ABINGDON, VA 24211 (36.72067, -81.90856)
## 968                          1730 WEST 25TH STREET CLEVELAND, OH 44113 (41.487243, -81.705834)
## 969             2010 BROOKWOOD MEDICAL CENTER DRIVE BIRMINGHAM, AL 35209 (33.46291, -86.77685)
## 970                          1600 EAST HIGH STREET POTTSTOWN, PA 19464 (40.243941, -75.611502)
## 971                          300 SOUTH PRESTON STREET RANSON, WV 25438 (39.295971, -77.858265)
## 972                                1155 5TH STREET, SE CAIRO, GA 39828 (30.863393, -84.200261)
## 973                         3136 SOUTH ST LANDRY ROAD GONZALES, LA 70737 (30.20388, -90.95371)
## 974                                11937 US HIGHWAY 271 TYLER, TX 75708 (32.42369, -95.209291)
## 975                      2106 EAST MAIN STREET MOUNTAIN VIEW, AR 72560 (35.855598, -92.082727)
## 976                              2200 KERNAN DRIVE BALTIMORE, MD 21207 (39.312864, -76.711712)
## 977                                230 HOSPITAL PLAZA WESTON, WV 26452 (39.048285, -80.492743)
## 978                                5974 PENTZ ROAD PARADISE, CA 95969 (39.756161, -121.572305)
## 979                                809 NE HIGHWAY 60 SEILING, OK 73663 (36.157459, -98.920715)
## 980                              23515 HIGHWAY 190 MANDEVILLE, LA 70448 (30.345064, -90.02169)
## 981                                     747 BROADWAY SEATTLE, WA 98122 (47.60924, -122.320767)
## 982                           2310 HIGHLAND AVENUE BETHLEHEM, PA 18017 (40.673762, -75.365401)
## 983                              501 EAST MAIN ST WAYNESBORO, PA 17268 (39.751806, -77.570581)
## 984                                  1000 36TH ST VERO BEACH, FL 32960 (27.658443, -80.396876)
## 985                      6780 MAYFIELD ROAD MAYFIELD HEIGHTS, OH 44124 (41.520133, -81.434345)
## 986                           3229 BURNETT AVENUE CINCINNATI, OH 45229 (39.137695, -84.500755)
## 987                        995 9TH AVENUE SOUTHWEST BESSEMER, AL 35021 (33.373086, -86.991709)
## 988                              199 WEST MAIN STREET SHELBY, OH 44875 (40.881214, -82.674035)
## 989                               1401 MORRIS DRIVE OKMULGEE, OK 74447 (35.610523, -95.952546)
## 990                                 322 COLEMAN STREET MARLIN, TX 76661 (31.30747, -96.893901)
## 991                            939 CAROLINE ST PORT ANGELES, WA 98362 (48.114635, -123.414084)
## 992                              372 SOUTH 9TH ST DAVID CITY, NE 68632 (41.246471, -97.123038)
## 993                           7401 SOUTH MAIN STREET HOUSTON, TX 77030 (29.700315, -95.409675)
## 994                                            4220 HARDING RD, PO BOX 380 NASHVILLE, TN 37205
## 995                               1200 MEMORIAL DRIVE DALTON, GA 30720 (34.788884, -84.983657)
## 996                               6501 COYLE AVE CARMICHAEL, CA 95608 (38.668048, -121.312964)
## 997                      CARR ESTATAL 14 INTERIOR SARGENTO GERARDO SANTIAGO AIBONITO, PR 00705
## 998                            200 LOTHROP STREET PITTSBURGH, PA 15213 (40.441824, -79.960769)
## 999                             8200 WALNUT HILL LANE DALLAS, TX 75231 (32.883139, -96.763574)
## 1000                              709 BREEDLOVE DRIVE MONROE, GA 30655 (33.782872, -83.719759)
## 1001 5400 GIBSON BOULEVARD SE, 4TH FLOOR BOX# 8 ALBUQUERQUE, NM 87108 (35.058248, -106.581048)
## 1002                                   P O BOX 626, 1313 NORTH CHEYENNE ST BENKELMAN, NE 69021
## 1003                           2800 W 95TH ST EVERGREEN PARK, IL 60805 (41.720902, -87.691966)
## 1004                                115 VIVIAN ST PARK RIVER, ND 58270 (48.399262, -97.743679)
## 1005                        621 SOUTH FOURTH STREET LE SUEUR, MN 56058 (44.454198, -93.916267)
## 1006                    2105 EAST SOUTH BOULEVARD MONTGOMERY, AL 36116 (32.327144, -86.276764)
## 1007                             601 W SECOND ST BLOOMINGTON, IN 47403 (39.161402, -86.540528)
## 1008                     1211 MEDICAL CENTER DRIVE NASHVILLE, TN 37232 (36.142832, -86.800174)
## 1009                        10102 COUNTRY CLUB ROAD, POST OFFICE BOX 1722 CUMBERLAND, MD 21502
## 1010               701 PRINCETON AVENUE SOUTHWEST BIRMINGHAM, AL 35211 (33.499133, -86.846016)
## 1011               2900 CLAY EDWARDS DRIVE NORTH KANSAS CITY, MO 64116 (39.150956, -94.551464)
## 1012                              4200 N OAK PARK AVE CHICAGO, IL 60634 (41.95612, -87.797265)
## 1013                                   300 RANDALL RD GENEVA, IL 60134 (41.886345, -88.340414)
## 1014                        2615 CHESTER AVENUE BAKERSFIELD, CA 93301 (35.383056, -119.018857)
## 1015                                325 E BREWSTER ST HARVEY, ND 58341 (47.767687, -99.933089)
## 1016                                 100 W 16TH STREET EUREKA, KS 67045 (37.835315, -96.29418)
## 1017                              127 SOUTH BROADWAY YONKERS, NY 10701 (40.929614, -73.897003)
## 1018                        2801 ATLANTIC AVENUE LONG BEACH, CA 90806 (33.807107, -118.185098)
## 1019                              2408 BROADMOOR BLVD MONROE, LA 71201 (32.536771, -92.102204)
## 1020                    3873 NORTH PARKVIEW DRIVE FAYETTEVILLE, AR 72703 (36.12133, -94.13373)
## 1021                              3300 TILLMAN DRIVE BENSALEM, PA 19020 (40.11435, -74.962093)
## 1022                                1265 E COLLEGE ST PULASKI, TN 38478 (35.19129, -87.004322)
## 1023                   3801 SOUTH NATIONAL AVENUE SPRINGFIELD, MO 65807 (37.144966, -93.27808)
## 1024                        1111 EAST MCDOWELL ROAD PHOENIX, AZ 85006 (33.465724, -112.058127)
## 1025                              4701 WEST PARK AVENUE HOUMA, LA 70364 (29.664625, -90.77179)
## 1026                        630 SOUTH MAIN STREET WATER VALLEY, MS 38965 (34.1307, -89.641013)
## 1027                             900 JOHNSON STREET TALLULAH, LA 71282 (32.403734, -91.185503)
## 1028                                 4023 REAS LN NEW ALBANY, IN 47150 (38.340032, -85.827064)
## 1029                      1711 W WHEELER AVENUE ARANSAS PASS, TX 78336 (27.915921, -97.161829)
## 1030                                  303 S MAIN ST BLUFFTON, IN 46714 (40.737645, -85.171494)
## 1031                                                         1100 MAGELLAN TEHACHAPI, CA 93561
## 1032                             1530 N LIMESTONE ST GAFFNEY, SC 29340 (35.090092, -81.635753)
## 1033                         999 SAN BERNARDINO ROAD UPLAND, CA 91786 (34.101079, -117.636862)
## 1034                                620 SKYLINE DRIVE JACKSON, TN 38301 (35.63954, -88.831973)
## 1035                             212 EAST 8TH STREET BEAVER, OK 73932 (36.810195, -100.516424)
## 1036            10105 PARK ROW CIRCLE, SUITE 250 BATON ROUGE, LA 70810 (30.380304, -91.094453)
## 1037                                         #3 EAST BENJAMIN DRIVE NEW MARTINSVILLE, WV 26155
## 1038                         1202 EAST LOCUST STREET EMMETT, ID 83617 (43.879078, -116.485255)
## 1039                               AVE. PEDRO ALBIZU CAMPOS URB. LA HACIENDA GUAYAMA, PR 00785
## 1040                                  1100 REID PKWY RICHMOND, IN 47374 (39.86303, -84.887765)
## 1041                              1500 S SUNSET LITTLEFIELD, TX 79339 (33.911625, -102.345439)
## 1042                815 SOUTHEAST SECOND STREET LITTLE FALLS, MN 56345 (45.967711, -94.362651)
## 1043                               1105 EARL FRYE BLVD AMORY, MS 38821 (33.977551, -88.477625)
## 1044                          840 NORTH OAK AVENUE RULEVILLE, MS 38771 (33.734839, -90.546823)
## 1045                            2201 S STERLING ST MORGANTON, NC 28655 (35.723793, -81.658223)
## 1046                     5665 PEACHTREE DUNWOODY ROAD ATLANTA, GA 30342 (33.908634, -84.35182)
## 1047                                2000 NEUSE BLVD NEW BERN, NC 28560 (35.111893, -77.066216)
## 1048                         2545 WEST QUAIL AVENUE PHOENIX, AZ 85027 (33.678464, -112.113815)
## 1049                                     1800 E COPLIN OKEMAH, OK 74859 (35.420667, -96.30429)
## 1050                           3150 GERSHWIN DRIVE GREEN BAY, WI 54311 (44.523812, -87.926171)
## 1051                     2927 DEMERE ROAD SAINT SIMONS ISLAND, GA 31522 (31.16454, -81.401555)
## 1052                                                              870 S MAIN FAYETTE, MS 39069
## 1053                         1000 MONTAUK HIGHWAY WEST ISLIP, NY 11795 (40.696807, -73.286321)
## 1054                       1102 ST MARY'S ROAD JUNCTION CITY, KS 66441 (39.013979, -96.849798)
## 1055                         3186 S MARYLAND PKWY LAS VEGAS, NV 89109 (36.134586, -115.136883)
## 1056                                    160 ALLEN ST RUTLAND, VT 05701 (43.599188, -72.956195)
## 1057                          1400 PELHAM PARKWAY SOUTH BRONX, NY 10461 (40.857455, -73.84721)
## 1058                             2525 S MICHIGAN AVE CHICAGO, IL 60616 (41.847053, -87.623583)
## 1059                   12601 GARDEN GROVE BLVD GARDEN GROVE, CA 92843 (33.774471, -117.913645)
## 1060                                 1020 S 4TH ST CANADIAN, TX 79014 (35.903792, -100.387399)
## 1061                                  497 WEST LOTT BUFFALO, WY 82834 (44.349788, -106.707248)
## 1062                      210 MARIE LANGDON DRIVE MANCHESTER, KY 40962 (37.162154, -83.761356)
## 1063                          2400 ROUND ROCK AVE ROUND ROCK, TX 78681 (30.509336, -97.712361)
## 1064                             4101 TORRANCE BLVD TORRANCE, CA 90503 (33.837577, -118.35708)
## 1065                           55 LAKE AVENUE NORTH WORCESTER, MA 01655 (42.27851, -71.759079)
## 1066                         6600 MADISON ST NEW PORT RICHEY, FL 34652 (28.253933, -82.715478)
## 1067                   275 WEST MACARTHUR BOULEVARD OAKLAND, CA 94611 (37.823857, -122.257589)
## 1068                            606 EAST GARFIELD GETTYSBURG, SD 57442 (45.013551, -99.948128)
## 1069                                                     ONE ATWELL ROAD COOPERSTOWN, NY 13326
## 1070                               2100 BAPTISTE DRIVE PAOLA, KS 66071 (38.568591, -94.850849)
## 1071                        530 NEW BRUNSWICK AVE PERTH AMBOY, NJ 08861 (40.518346, -74.28075)
## 1072                      1636 HUNTERS GLEN ROAD SAN ANGELO, TX 76901 (31.447038, -100.511315)
## 1073                             631 RB WILSON DR HUNTINGDON, TN 38344 (36.023041, -88.413492)
## 1074                        7850 VISTA HILL AVENUE SAN DIEGO, CA 92123 (32.794899, -117.15529)
## 1075                                304 S DAUGHERTY EASTLAND, TX 76448 (32.400439, -98.821636)
## 1076                                                 321 BYPASS PO BOX 620 WINNSBORO, SC 29180
## 1077                             28062 BAXTER ROAD MURRIETA, CA 92563 (33.613435, -117.168923)
## 1078                                                1320 MAPLEWOOD AVENUE RONCEVERTE, WV 24970
## 1079                                  1155 MILL STREET RENO, NV 89502 (39.524747, -119.796721)
## 1080                                800 S FILLMORE ST OSCEOLA, IA 50213 (41.02571, -93.767533)
## 1081                               200 AVE F NE WINTER HAVEN, FL 33881 (28.027669, -81.726746)
## 1082                       120 EAST HARRIS AVENUE SAN ANGELO, TX 76903 (31.464485, -100.43509)
## 1083            1000 HEALTH CENTER DRIVE P O BOX 372 MATTOON, IL 61938 (39.488543, -88.275793)
## 1084                                   801 S MAIN ST CLINTON, IN 47842 (39.652926, -87.398213)
## 1085                              274 E CHICAGO ST COLDWATER, MI 49036 (41.938969, -84.990585)
## 1086                                  1 MEDICAL PLAZA PAMPA, TX 79065 (35.656991, -101.407964)
## 1087                                            P O BOX 836, 717 NORTH BROWN ST ALMA, NE 68920
## 1088                               3401 LUDINGTON ST ESCANABA, MI 49829 (45.74576, -87.094853)
## 1089                             15 MAPLE AVENUE -19 WARWICK, NY 10990 (41.261094, -74.356945)
## 1090                     3802 SOUTH 700 EAST SALT LAKE CITY, UT 84106 (40.687904, -111.871388)
## 1091                     230 NORTH BROAD STREET PHILADELPHIA, PA 19102 (39.957334, -75.162597)
## 1092                         4500 UTICA RIDGE ROAD BETTENDORF, IA 52722 (41.566105, -90.51736)
## 1093                 133 OLD ROAD TO 9 ACRE CORNER W CONCORD, MA 01742 (42.452628, -71.377231)
## 1094                               805 S OAKLAND SAINT JOHNS, MI 48879 (42.993435, -84.555808)
## 1095                              66755 STATE STREET CAMBRIDGE, OH 43725 (40.03278, -81.59015)
## 1096                                175 HOSPITAL DRIVE CAMDEN, TN 38320 (36.05578, -88.107517)
## 1097                         240 SOUTH MAIN STREET WOLFEBORO, NH 03894 (43.580944, -71.201575)
## 1098                               222 PERRY HWY HAWKINSVILLE, GA 31036 (32.295625, -83.48581)
## 1099                             1144 N ROAD ST ELIZABETH CITY, NC 27909 (36.32153, -76.22002)
## 1100                            1500 N. 28TH STREET RICHMOND, VA 23223 (37.540264, -77.406271)
## 1101                               976 NORTH BROADWAY YONKERS, NY 10701 (40.96784, -73.885107)
## 1102                              104 LEGION DRIVE LAS VEGAS, NM 87701 (35.62215, -105.209851)
## 1103                                      307 N MAIN WINDSOR, MO 65360 (38.534221, -93.519116)
## 1104                         759 CHESTNUT STREET SPRINGFIELD, MA 01199 (42.121712, -72.605956)
## 1105                    800 E WASHINGTON BLVD CRESCENT CITY, CA 95531 (41.772698, -124.194144)
## 1106                              823 GRAND AVENUE YAZOO CITY, MS 39194 (32.85873, -90.403321)
## 1107                                       AVE LAS CUMBRES ST 199KM 1 2 ALT DE SANTA, PR 00969
## 1108                                100 15TH NW STREET NORTON, VA 24273 (36.932031, -82.64338)
## 1109                2727 EAST LEMMON AVENUE BUILDING I DALLAS, TX 75204 (32.80453, -96.794757)
## 1110                     2201 HEMPSTEAD TURNPIKE EAST MEADOW, NY 11554 (40.725298, -73.554413)
## 1111                         570 CHAUTAUQUA BLVD VALLEY CITY, ND 58072 (46.928492, -97.994908)
## 1112                               2801 GESSNER ROAD HOUSTON, TX 77080 (29.823842, -95.545351)
## 1113                    24440 STONE SPRINGS BOULEVARD DULLES, VA 20166 (38.941185, -77.544301)
## 1114                     1593 EAST POLSTON AVENUE POST FALLS, ID 83854 (47.71441, -116.924455)
## 1115                           11111 SOUTH 84TH ST PAPILLION, NE 68046 (41.136866, -96.042825)
## 1116                               13500 N MERIDIAN ST CARMEL, IN 46032 (39.983065, -86.14716)
## 1117                                4015 22ND PLACE LUBBOCK, TX 79410 (33.574141, -101.900426)
## 1118                           280 MIDDLETOWN ROAD LANGHORNE, PA 19047 (40.181801, -74.884542)
## 1119                         310 SOUTH FALLS BOULEVARD WYNNE, AR 72396 (35.220353, -90.787421)
## 1120                                               HIGHWAY 264, MILEPOST 388 POLACCA, AZ 86042
## 1121                          600 WEST RIDGE ROAD WYTHEVILLE, VA 24382 (36.953297, -81.095069)
## 1122                             272 BENEDICT AVENUE NORWALK, OH 44857 (41.226034, -82.602008)
## 1123                                   520 S 7TH ST VINCENNES, IN 47591 (38.67292, -87.534213)
## 1124                                  3130 SW 27TH AVE OCALA, FL 34474 (29.155476, -82.168972)
## 1125                     3625 UNIVERSITY BLVD S JACKSONVILLE, FL 32216 (30.287633, -81.602405)
## 1126                                  955 RIBAUT RD BEAUFORT, SC 29902 (32.417244, -80.688546)
## 1127                               1907 W SYCAMORE ST KOKOMO, IN 46904 (40.487218, -86.155487)
## 1128                          11815 EDUCATION STREET AUBURN, CA 95603 (38.944317, -121.099423)
## 1129                         1200 JD ANDERSON DRIVE MORGANTOWN, WV 26505 (39.66262, -79.94639)
## 1130                       1221 E MCPHERSON AVENUE NASHVILLE, GA 31639 (31.203629, -83.238337)
## 1131                      3500 HIGHWAY 17 NORTH MOUNT PLEASANT, SC 29466 (32.877082, -79.7679)
## 1132                            176 PALISADE AVE JERSEY CITY, NJ 07306 (40.734876, -74.050142)
## 1133                     855 6TH STREET/PO BOX 661 LOVELOCK, NV 89419 (40.176624, -118.482087)
## 1134                          9200 W WISCONSIN AVE MILWAUKEE, WI 53226 (43.038407, -88.027316)
## 1135                           4700 ALLIANCE BOULEVARD PLANO, TX 75093 (33.014361, -96.791185)
## 1136                      5700 EAST HIGHWAY 90 SIERRA VISTA, AZ 85635 (31.554635, -110.230726)
## 1137                             562 WYOMING AVENUE KINGSTON, PA 18704 (41.269474, -75.888789)
## 1138                                 8900 N KENDALL DR MIAMI, FL 33176 (25.687781, -80.339086)
## 1139                               4500 COLLEGE AVENUE ALTON, IL 62002 (38.909042, -90.116239)
## 1140                         3130 NORTH COUNTY ROAD 25A TROY, OH 45373 (40.087789, -84.223537)
## 1141                          112 ST OLAF AVENUE SOUTH CANBY, MN 56220 (44.707899, -96.277555)
## 1142                                                        100 WELLNESS WAY MILFORD, DE 19963
## 1143                             1600 EUREKA ROAD ROSEVILLE, CA 95661 (38.746698, -121.247166)
## 1144                                                               PO BOX 287 BETHEL, AK 99559
## 1145                                  609 SE KENT GREENFIELD, IA 50849 (41.303103, -94.451927)
## 1146                   6818 AUSTIN CTR BLVD SUITE 100 AUSTIN, TX 78731 (30.350316, -97.751026)
## 1147                         203 4TH STREET NORTHWEST BAGLEY, MN 56621 (47.525837, -95.401676)
## 1148                                                               PO BOX 550 VALDEZ, AK 99686
## 1149                                  989 ROBERT BLVD SLIDELL, LA 70458 (30.29078, -89.769402)
## 1150                 900 EAST DUBLIN GRANVILLE ROAD COLUMBUS, OH 43229 (40.088094, -82.993801)
## 1151                               4815 ALAMEDA AVE EL PASO, TX 79905 (31.771291, -106.436022)
## 1152                           1350 W COVINA BLVD SAN DIMAS, CA 91773 (34.099423, -117.835006)
## 1153                       11820 DESTINATION DRIVE BROOMFIELD, CO 80021 (39.9105, -105.093207)
## 1154                            1200 CARL RAMERT DRIVE YOAKUM, TX 77995 (29.30662, -97.130306)
## 1155                       710 CYPRESS CREEK PARKWAY HOUSTON, TX 77090 (30.018099, -95.439796)
## 1156                        600 SOUTH AUSTIN ROAD EAGLE LAKE, TX 77434 (29.588066, -96.345941)
## 1157                    5555 WEST THUNDERBIRD ROAD GLENDALE, AZ 85306 (33.610731, -112.178698)
## 1158                           29 L V STABLER DRIVE GREENVILLE, AL 36037 (31.82945, -86.64586)
## 1159         2831 E PRESIDENT GEORGE BUSH HIGHWAY RICHARDSON, TX 75082 (32.996143, -96.669176)
## 1160                    701 EAST MARSHALL STREET WEST CHESTER, PA 19380 (39.97186, -75.600924)
## 1161                         6161 W CHARLESTON BLVD LAS VEGAS, NV 89146 (36.15912, -115.22622)
## 1162                                 555 NORTH 30TH ST OMAHA, NE 68131 (41.264512, -95.956514)
## 1163                          1900 SULLIVAN AVENUE DALY CITY, CA 94015 (37.680315, -122.47291)
## 1164                                                 MEDICAL CENTER DRIVE MORGANTOWN, WV 26506
## 1165                       909 EAST SNYDER AVENUE MONTPELIER, OH 43543 (41.589321, -84.595516)
## 1166                           403 BURKARTH ROAD WARRENSBURG, MO 64093 (38.766474, -93.723701)
## 1167                     ONE HOSPITAL ROAD, FIRST FL, WING 5, PO BOX 1477 OAK BLUFFS, MA 02557
## 1168                          160 EAST ERIE AVE PHILADELPHIA, PA 19134 (40.007493, -75.125535)
## 1169                            1207 S BAILEY STREET ELECTRA, TX 76360 (34.018455, -98.923874)
## 1170                        2825 PARKLAWN DRIVE MIDWEST CITY, OK 73110 (35.466527, -97.392925)
## 1171                    710 NORTH 12TH STREET GUTHRIE CENTER, IA 50115 (41.683666, -94.494399)
## 1172        401 9TH AVENUE NW POST OFFICE BOX 1210 WATERTOWN, SD 57201 (44.910837, -97.120812)
## 1173                        17400 ST LUKES WAY THE WOODLANDS, TX 77384 (30.203132, -95.459482)
## 1174                      17772 BEACH BLVD HUNTINGTON BEACH, CA 92647 (33.703889, -117.989065)
## 1175                                  511 NE 10TH ST ABILENE, KS 67410 (38.924961, -97.206483)
## 1176                          2 PROGRESS POINT PKWY O FALLON, MO 63368 (38.715097, -90.696597)
## 1177                           1400 LOCUST STREET PITTSBURGH, PA 15219 (40.436831, -79.985623)
## 1178                           14241 GRAND OAKS DRIVE BAXTER, MN 56425 (46.359679, -94.256975)
## 1179                        1960 HIGHWAY 247 CONNECTOR BYRON, GA 31008 (32.606568, -83.758449)
## 1180                                                 1750 E. KEN PRATT BLVD LONGMONT, CO 80504
## 1181                              600 9TH AVENUE NORTH SIBLEY, IA 51249 (43.41008, -95.741727)
## 1182                            1100 WEST STEWART DR ORANGE, CA 92868 (33.782399, -117.866093)
## 1183                               106 BLANCA AVENUE ALAMOSA, CO 81101 (37.47236, -105.883712)
## 1184                             1000 ROLLING HILLS LANE ADA, OK 74820 (34.783525, -96.627722)
## 1185              800 BEMIDJI AVENUE NORTH SUITE 200 BEMIDJI, MN 56601 (47.476067, -94.879684)
## 1186                                                       FRIENDSHIP STREET NEWPORT, RI 02840
## 1187                                         201 CHESTNUT HILL ROAD STAFFORD SPRINGS, CT 06076
## 1188                              201 CLIFTON STREET FORDYCE, AR 71742 (33.811158, -92.425058)
## 1189                              1978 INDUSTRIAL BLVD HOUMA, LA 70363 (29.571318, -90.687625)
## 1190                                 8700 SUDLEY RD MANASSAS, VA 20110 (38.767458, -77.484936)
## 1191                            2525 DESALES AVE CHATTANOOGA, TN 37404 (35.040037, -85.261129)
## 1192                           640 JACKSON STREET SAINT PAUL, MN 55101 (44.955338, -93.096277)
## 1193                             150 MEMORIAL DRIVE KINGWOOD, WV 26537 (39.465641, -79.676398)
## 1194                                  1201 RICKER DRIVE SALEM, IL 62881 (38.64083, -88.948337)
## 1195                          6901 SOUTH OLYMPIA AVENUE TULSA, OK 74132 (36.06376, -96.004542)
## 1196                             1200 OLD YORK ROAD ABINGTON, PA 19001 (40.118945, -75.119382)
## 1197           615 NORTH PROMENADE STREET,P O BOX 530 HAVANA, IL 62644 (40.305713, -90.056111)
## 1198                               110 REHILL AVE SOMERVILLE, NJ 08876 (40.568854, -74.595695)
## 1199                                           8001 W 5TH POST OFFICE BOX 556 BOWDLE, SD 57428
## 1200                       1011 NORTH COOPER STREET ARLINGTON, TX 76011 (32.75124, -97.113632)
## 1201                     5315 MILLENIUM DRIVE, NW HUNTSVILLE, AL 35806 (34.753942, -86.665857)
## 1202                                  7400 ROPER LANE DAPHNE, AL 36526 (30.635289, -87.897483)
## 1203                        67 & 100 TER HEUN DRIVE FALMOUTH, MA 02540 (41.564962, -70.621126)
## 1204                              945 EAST ZERO ST AINSWORTH, NE 69210 (42.544934, -99.850045)
## 1205               1000 EAST MOUNTAIN BOULEVARD WILKES BARRE, PA 18711 (41.256997, -75.811717)
## 1206                       17550 EAST MAIN STREET LOUISVILLE, MS 39339 (33.124291, -89.036671)
## 1207                             1002 SOUTH 4TH STREET KIOWA, KS 67070 (37.008547, -98.489795)
## 1208                              75 NEW SCOTLAND AVE ALBANY, NY 12208 (42.652557, -73.777893)
## 1209                                 250 PLEASANT ST CONCORD, NH 03301 (43.196329, -71.562366)
## 1210                              129 N WASHINGTON ST SUMTER, SC 29150 (33.923496, -80.344356)
## 1211                              1823 COLLEGE AVE MANHATTAN, KS 66502 (39.203114, -96.598186)
## 1212                 14200 WEST CELEBRATE LIFE WAY GOODYEAR, AZ 85338 (33.452804, -112.362571)
## 1213                                    1000 GREG KRUSCHEK AVENUE (P O BOX 966) NOME, AK 99762
## 1214                            1901 N MACARTHUR BLVD IRVING, TX 75061 (32.835496, -96.959226)
## 1215                              1 KISH HOSPITAL DRIVE DEKALB, IL 60115 (41.96188, -88.72226)
## 1216                        101 NORTH MAIN STREET COUPEVILLE, WA 98239 (48.21424, -122.686122)
## 1217                           1941 VIRGINIA AVE CONNERSVILLE, IN 47331 (39.65592, -85.131984)
## 1218                                 3237 S 16TH ST MILWAUKEE, WI 53215 (42.98536, -87.933837)
## 1219                       1900 NORTH SUNRISE DRIVE ST PETER, MN 56082 (44.347846, -93.970875)
## 1220                             4700 WATERS AVENUE SAVANNAH, GA 31404 (32.031785, -81.091827)
## 1221                                       1331 S A ST ELWOOD, IN 46036 (40.27602, -85.844005)
## 1222                             1253 NW CANAL BLVD REDMOND, OR 97756 (44.288703, -121.168558)
## 1223                                    100 PARK ROAD NOCONA, TX 76255 (33.777559, -97.731564)
## 1224                      1000 HARRINGTON BLVD MOUNT CLEMENS, MI 48043 (42.586795, -82.896918)
## 1225                                                      178 HIGHWAY 24 CENTREVILLE, MS 39631
## 1226                        8835 GERMANTOWN AVE PHILADELPHIA, PA 19118 (40.078791, -75.212752)
## 1227                         759 SOUTH MAIN STREET WOODSTOCK, VA 22664 (38.871586, -78.513936)
## 1228                    200 KENNEDY MEMORIAL DRIVE WATERVILLE, ME 04901 (44.54269, -69.661405)
## 1229                          260 26TH STREET PRAIRIE DU SAC, WI 53578 (43.287718, -89.756072)
## 1230                                     10 SE FIFTH ST COOK, MN 55723 (47.853468, -92.680032)
## 1231                           9522 HUEBNER ROAD SAN ANTONIO, TX 78240 (29.531035, -98.592554)
## 1232                         1310 WEST SEVENTH STREET KAPLAN, LA 70548 (30.007591, -92.297337)
## 1233                             72 SOUTH STATE STREET SHELBY, MI 49455 (43.607053, -86.36515)
## 1234                      916 4TH AVENUE SOUTHWEST PIPESTONE, MN 56164 (43.991082, -96.322107)
## 1235                       1 ABRAHMS BOULEVARD WEST HARTFORD, CT 06117 (41.802774, -72.728931)
## 1236                  3555 CESAR CHAVEZ STREET SAN FRANCISCO, CA 94110 (37.74805, -122.420987)
## 1237                            55 MEADOWLANDS PKWY SECAUCUS, NJ 07094 (40.791805, -74.072099)
## 1238                  17201 INTERSTATE 45 SOUTH THE WOODLANDS, TX 77385 (30.204697, -95.45551)
## 1239                             982 EAST COLUMBIA COLVILLE, WA 99114 (48.541303, -117.892385)
## 1240                           300 COMMUNITY DRIVE MANHASSET, NY 11030 (40.779269, -73.703029)
## 1241                            199 E WEBSTER STREET COLUSA, CA 95932 (39.207286, -121.999974)
## 1242                              2471 LOUISIANA AVE LUTCHER, LA 70071 (30.046639, -90.699598)
## 1243                      4777 EAST GALBRAITH ROAD CINCINNATI, OH 45236 (39.20677, -84.380372)
## 1244                         1401 FOUCHER STREET NEW ORLEANS, LA 70115 (29.925391, -90.092915)
## 1245                        1225 WARM SPRINGS AVE HUNTINGDON, PA 16652 (40.493656, -78.013908)
## 1246                          1401 EAST STATE STREET ROCKFORD, IL 61104 (42.266943, -89.07355)
## 1247                        2202 FALSE RIVER DRIVE NEW ROADS, LA 70760 (30.682516, -91.461372)
## 1248                              595 COUNTY AVENUE SECAUCUS, NJ 07094 (40.784251, -74.056644)
## 1249                         100 MICHIGAN ST NE GRAND RAPIDS, MI 49503 (42.970527, -85.665319)
## 1250                         21298 OLEAN BLVD PORT CHARLOTTE, FL 33952 (26.987872, -82.097729)
## 1251                            227 MOUNTAIN DRIVE DAHLONEGA, GA 30533 (34.523492, -83.976073)
## 1252                          1919 EAST THOMAS ROAD PHOENIX, AZ 85016 (33.480216, -112.041193)
## 1253                  8100 SOUTH WALKER BLDG C OKLAHOMA CITY, OK 73139 (35.385689, -97.521271)
## 1254                          905 SOUTH MAIN STREET SHATTUCK, OK 73858 (36.268132, -99.881538)
## 1255                    42084 STATE HIGHWAY 28 MARGARETVILLE, NY 12455 (42.147654, -74.642629)
## 1256                           111 COLCHESTER AVE BURLINGTON, VT 05401 (44.480991, -73.195518)
## 1257                           800 SOUTH MAIN STREET CORONA, CA 92882 (33.873327, -117.566768)
## 1258                            1900 DON WICKHAM DR CLERMONT, FL 34711 (28.551178, -81.723415)
## 1259                    6401 PATTERSON PARKWAY ARKANSAS CITY, KS 67005 (37.134534, -97.036568)
## 1260                            3600 S HIGHLANDS AVE SEBRING, FL 33870 (27.465045, -81.433761)
## 1261                         2000 N OLD HICKORY TRAIL DESOTO, TX 75115 (32.627697, -96.865685)
## 1262                    1010 WEST COLUMBIA STREET FARMINGTON, MO 63640 (37.775501, -90.434904)
## 1263                                  1010 COLLEGE ST OXFORD, NC 27565 (36.326338, -78.594407)
## 1264                              1200 E BRIN STREET TERRELL, TX 75160 (32.738473, -96.263124)
## 1265                            506 E SAN ANTONIO ST VICTORIA, TX 77902 (28.807549, -97.00021)
## 1266                                 605 HOLDERRIETH TOMBALL, TX 77375 (30.088703, -95.623985)
## 1267                               800 CROSS RIVER RD KATONAH, NY 10536 (41.26335, -73.621768)
## 1268                                                ONE SAINT JOSEPH DRIVE LEXINGTON, KY 40504
## 1269                             228 W MCDOWELL AVE ALTURAS, CA 96101 (41.479949, -120.545503)
## 1270                                1102 W MACARTHUR SHAWNEE, OK 74804 (35.361768, -96.937587)
## 1271                                1120 15TH STREET AUGUSTA, GA 30912 (33.471029, -81.991453)
## 1272                 211 HIGHLAND AVENUE PO BOX 217 SAC CITY, IA 50583 (42.418706, -94.977991)
## 1273                                                    196 -198 NORTH STREET GENEVA, NY 14456
## 1274                          3316 HIGHWAY 280 ALEXANDER CITY, AL 35010 (32.93103, -85.968394)
## 1275                                   400 W 16TH ST PUEBLO, CO 81003 (38.281678, -104.612123)
## 1276                             23019 HIGHWAY 149 SIGOURNEY, IA 52591 (41.322489, -92.205125)
## 1277                               601 PARK STREET HONESDALE, PA 18431 (41.576284, -75.259796)
## 1278                          1068 WEST BALTIMORE PIKE MEDIA, PA 19063 (39.914319, -75.429889)
## 1279                              191 IOWA BOULEVARD TRENTON, MO 64683 (40.068275, -93.579936)
## 1280                                 1 BROOKDALE PLAZA BROOKLYN, NY 11212 (40.6545, -73.91275)
## 1281                                 911 BYPASS ROAD PIKEVILLE, KY 41501 (37.47251, -82.52395)
## 1282                  1700 SKYLYN DR PO BOX 3217 SPARTANBURG, SC 29307 (34.978285, -81.893659)
## 1283                               201 14TH STREET WHEATLAND, WY 82201 (42.04981, -104.960221)
## 1284                                                   TWO CRESCENT PARK WEST WARREN, PA 16365
## 1285                             800 RIVERSIDE DRIVE WAUPACA, WI 54981 (44.345333, -89.075825)
## 1286                                   6161 SOUTH YALE TULSA, OK 74136 (36.073442, -95.922118)
## 1287                  1650 FOURTH STREET SOUTHEAST ROCHESTER, MN 55904 (44.020994, -92.439958)
## 1288                        701 THIRD AVENUE SOUTH CLEAR LAKE, SD 57226 (44.752678, -96.68256)
## 1289                            1100 EAST NORRIS DRIVE OTTAWA, IL 61350 (41.356417, -88.82536)
## 1290                            130 BRENTWOOD DRIVE CHESTER, CA 96020 (40.305302, -121.234018)
## 1291                 3333 SPRINGHILL DRIVE NORTH LITTLE ROCK, AR 72117 (34.784075, -92.218633)
## 1292                          2201 S CLEAR CREEK ROAD KILLEEN, TX 76542 (31.11335, -97.799519)
## 1293                       2 SOUTH HOSPITAL DRIVE MURPHYSBORO, IL 62966 (37.773205, -89.32635)
## 1294                         4201 WOODLAND DRIVE NEW ORLEANS, LA 70131 (29.912629, -89.993103)
## 1295                               187 HOSPITAL DRIVE TYRONE, PA 16686 (40.674843, -78.252302)
## 1296                    9000 FRANKLIN SQUARE DRIVE BALTIMORE, MD 21237 (39.350335, -76.481012)
## 1297                                 13861 OLIO ROAD FISHERS, IN 46037 (39.988852, -85.918844)
## 1298                         1401 MEDICAL PARKWAY CEDAR PARK, TX 78613 (30.531124, -97.812824)
## 1299                      100 WEST CROSS STREET MADISONVILLE, TX 77864 (30.942046, -95.909956)
## 1300                      1500 SAN PABLO STREET LOS ANGELES, CA 90033 (34.062168, -118.203234)
## 1301                                  330 LAKEVIEW DR GOSHEN, IN 46527 (41.603953, -85.839087)
## 1302                                         HEALTH SCIENCES CENTER SUNY STONY BROOK, NY 11794
## 1303                             325 ELEVENTH AVE TWO HARBORS, MN 55616 (47.02965, -91.667157)
## 1304                        27300 IRIS AVENUE MORENO VALLEY, CA 92555 (33.895697, -117.187121)
## 1305                           2525 GLENN HENDREN DR LIBERTY, MO 64069 (39.276757, -94.424343)
## 1306                               2911 BRUNSWICK RD MEMPHIS, TN 38133 (35.205927, -89.773169)
## 1307                                 2101 PEASE ST HARLINGEN, TX 78550 (26.173414, -97.670666)
## 1308                     34515 9TH AVENUE SOUTH FEDERAL WAY, WA 98003 (47.292106, -122.322951)
## 1309                         1501 EAST TENTH STREET ATLANTIC, IA 50022 (41.401712, -94.992608)
## 1310                                     6720 BERTNER HOUSTON, TX 77030 (29.707116, -95.39918)
## 1311                      3916 BEN FRANKLIN BOULEVARD DURHAM, NC 27704 (36.042865, -78.897548)
## 1312                       1925 PACIFIC AVENUE ATLANTIC CITY, NJ 08401 (39.357791, -74.433942)
## 1313                                189 PROUTY DRIVE NEWPORT, VT 05855 (44.954614, -72.200339)
## 1314                           430 E DIVISION ST FOND DU LAC, WI 54935 (43.778691, -88.431179)
## 1315                         81 HILLCREST DRIVE PUNXSUTAWNEY, PA 15767 (40.960153, -79.000359)
## 1316                             420 FRANKLIN STREET RUMFORD, ME 04276 (44.551721, -70.557171)
## 1317                       751 SOUTH BASCOM AVENUE SAN JOSE, CA 95128 (37.313702, -121.931888)
## 1318                                163 HOSPITAL DRIVE TOCCOA, GA 30577 (34.59302, -83.347172)
## 1319                      3401 NORTH BROAD STREET PHILADELPHIA, PA 19140 (40.004667, -75.1522)
## 1320                         5100 WEST BROAD STREET COLUMBUS, OH 43228 (39.951968, -83.136709)
## 1321                               811 S WASHINGTON MARSHALL, TX 75670 (32.536552, -94.367872)
## 1322                              4300 E FLAMINGO AVE NAMPA, ID 83687 (43.596332, -116.519174)
## 1323                                  2033 MAIN STREET ATHOL, MA 01331 (42.586273, -72.208748)
## 1324                             181 WEST MEADOW DRIVE VAIL, CO 81657 (39.642949, -106.382866)
## 1325                              1000 BLYTHE BLVD CHARLOTTE, NC 28203 (35.204983, -80.839845)
## 1326                                                     ONE GENERAL STREET LAWRENCE, MA 01842
## 1327                        602 SOUTHWEST 38TH STREET LAWTON, OK 73505 (34.603392, -98.439735)
## 1328                         2351 EAST 22ND STREET CLEVELAND, OH 44115 (41.495695, -81.674275)
## 1329                                1233 N 30TH ST BILLINGS, MT 59101 (45.793166, -108.520281)
## 1330                      17872 LINCOLN HIGHWAY MIDDLE POINT, OH 45863 (40.878547, -84.478653)
## 1331                  10501 GOLF COURSE ROAD NW ALBUQUERQUE, NM 87114 (35.207508, -106.675974)
## 1332                                    9440 POPPY DR DALLAS, TX 75218 (32.835521, -96.705001)
## 1333                  28 CHICK STREET, PO BOX 850 METROPOLIS, IL 62960 (37.166836, -88.739578)
## 1334                                 617 LIBERTY CLAY CENTER, KS 67432 (39.391681, -97.124196)
## 1335                      FIRST AVENUE AT 16TH STREET NEW YORK, NY 10003 (40.732665, -73.9816)
## 1336                        1275 NORTH HIGH STREET HILLSBORO, OH 45133 (39.221576, -83.608771)
## 1337                          2301 HOLMES STREET KANSAS CITY, MO 64108 (39.084815, -94.575799)
## 1338                         115 SUMMERS HOSPITAL ROAD HINTON, WV 25951 (37.674714, -80.89145)
## 1339                             1313 E 32ND ST SILVER CITY, NM 88061 (32.795524, -108.260908)
## 1340                      12850 METCALF AVENUE OVERLAND PARK, KS 66213 (38.896301, -94.667876)
## 1341                          7911 DILEY ROAD CANAL WINCHESTER, OH 43110 (39.850053, -82.7811)
## 1342                            99 MONTECILLO RD SAN RAFAEL, CA 94903 (38.004335, -122.553881)
## 1343                                               136 W DIAMOND STREET PHILADELPHIA, PA 19122
## 1344                            4400 CLAYTON AVE SAINT LOUIS, MO 63110 (38.632989, -90.257821)
## 1345                             1505 W SHERMAN AVE VINELAND, NJ 08360 (39.447444, -75.057329)
## 1346                           301 N ALEXANDER ST PLANT CITY, FL 33563 (28.016163, -82.138002)
## 1347                                     7000 UULA ST BARROW, AK 99723 (71.298135, -156.72732)
## 1348                          800 WEST MAIN STREET COLDWATER, OH 45828 (40.479782, -84.638243)
## 1349                                 506 3RD STREET TRIBUNE, KS 67879 (38.470477, -101.749762)
## 1350                          1300 MICCOSUKEE RD TALLAHASSEE, FL 32308 (30.455849, -84.261757)
## 1351                                55 HOSPITAL DRIVE ATHENS, OH 45701 (39.327741, -82.114189)
## 1352                              1304 FRANKLIN AVENUE NORMAL, IL 61761 (40.496332, -88.99096)
## 1353                                             414 W JEFFERSON PO BOX 396 MAHNOMEN, MN 56557
## 1354                                     317 MARTIN LUTHER KING JR W BOX 5299 TACOMA, WA 98415
## 1355                          250 EAST DUNLAP AVENUE PHOENIX, AZ 85020 (33.567754, -112.07063)
## 1356                               29910 SR 56 WESLEY CHAPEL, FL 33543 (28.201538, -82.324367)
## 1357                              1300 SOUTH DRIVE WINNEBAGO, WI 54985 (44.074211, -88.518181)
## 1358                       900 ROUND VALLEY DRIVE PARK CITY, UT 84060 (40.687697, -111.468952)
## 1359                                  400 NORTHWOOD DR CENTRE, AL 35960 (34.162761, -85.65142)
## 1360                          2500 FAIRWAY STREET DICKINSON, ND 58601 (46.887267, -102.820598)
## 1361                                 2400 E 17TH ST COLUMBUS, IN 47201 (39.215872, -85.896854)
## 1362                               70 DUBOIS STREET NEWBURGH, NY 12550 (41.503744, -74.015176)
## 1363                         10800 MAGNOLIA AVENUE RIVERSIDE, CA 92505 (33.906505, -117.47071)
## 1364                 304 TURNER MCCALL BLVD P O BOX 233 ROME, GA 30162 (34.260454, -85.179957)
## 1365                                                    821 NORTH BROADWAY ASPERMONT, TX 79502
## 1366                         705 EAST FELT STREET BROWNFIELD, TX 79316 (33.187102, -102.26775)
## 1367                        111 CLARA BARTON STREET DANSVILLE, NY 14437 (42.55213, -77.700356)
## 1368                    5121 SOUTH COTTONWOOD STREET MURRAY, UT 84107 (40.658731, -111.894491)
## 1369                           940 EAST 5TH STREET COQUILLE, OR 97423 (43.178982, -124.179143)
## 1370                      1163 COUNTRY CLUB ROAD MONONGAHELA, PA 15063 (40.181578, -79.916276)
## 1371                         140 BURWELL STREET LITTLE FALLS, NY 13365 (43.043946, -74.847733)
## 1372                              130 HIGHLAND PKWY PICAYUNE, MS 39466 (30.552471, -89.665422)
## 1373                                3301 OVERSEAS HWY MARATHON, FL 33050 (24.71113, -81.09472)
## 1374                       300 MED TECH PARKWAY JOHNSON CITY, TN 37604 (36.337945, -82.401047)
## 1375                       3333 RIVERBEND DRIVE SPRINGFIELD, OR 97477 (44.081312, -123.028655)
## 1376                                 275 HOSPITAL DRIVE UKIAH, CA 95482 (39.153019, -123.2038)
## 1377                            901 OLIVE DRIVE BAKERSFIELD, CA 93308 (35.412258, -119.039498)
## 1378                            118 NORTH 7TH AVENUE SHELDON, IA 51201 (43.186387, -95.847268)
## 1379                                   300 NORTH STREET SEDAN, KS 67361 (37.17144, -95.103054)
## 1380                3100 SOUTHWEST 89TH STREET OKLAHOMA CITY, OK 73159 (35.377113, -97.570453)
## 1381                         710 WEST MAIN STREET CROSBYTON, TX 79322 (33.659945, -101.246135)
## 1382                                   1000 TRANCAS ST NAPA, CA 94558 (38.323554, -122.295968)
## 1383                                                      CARR 2 BO SABALOS MAYAGUEZ, PR 00682
## 1384                          1316 SOUTH MAIN STREET CLARION, IA 50525 (42.721625, -93.732628)
## 1385                   11711 LIVINGSTON ROAD FORT WASHINGTON, MD 20744 (38.728813, -76.991588)
## 1386                                                   2055 NORTH MAIN STREET TOOELE, UT 84074
## 1387                               6901 MEDICAL PARKWAY WACO, TX 76712 (31.513243, -97.198431)
## 1388                       100 EAST CARROLL AVENUE SALISBURY, MD 21801 (38.363068, -75.599489)
## 1389                              1900 COLUMBUS AVE BAY CITY, MI 48708 (43.589392, -83.868089)
## 1390                         1220 JEFFERSON ST BOX 607 LAUREL, MS 39440 (31.685911, -89.14135)
## 1391                                2420 G STREET BELLEVILLE, KS 66935 (39.818087, -97.636926)
## 1392                                    55 FRUIT STREET BOSTON, MA 02114 (42.3624, -71.068777)
## 1393                            218A SUNSET ROAD WILLINGBORO, NJ 08046 (40.048632, -74.881982)
## 1394                           1100 KENTUCKY AVE WEST PLAINS, MO 65775 (36.737992, -91.875552)
## 1395                                 5445 AVE O FORT MADISON, IA 52627 (40.624167, -91.382067)
## 1396                              2601 E CHAPMAN AVE ORANGE, CA 92869 (33.787878, -117.827058)
## 1397                          1165 MONTGOMERY DR SANTA ROSA, CA 95405 (38.442954, -122.701112)
## 1398                                         3001 W MARTIN LUTHER KING JR BLVD TAMPA, FL 33677
## 1399                                 750 HOSPITAL LOOP CRAIG, CO 81625 (40.518288, -107.57863)
## 1400                                    800 SHARE DRIVE ALVA, OK 73717 (36.786969, -98.670023)
## 1401                       1341 NORTH CLARK STREET CAMBRIDGE, OH 43725 (40.040272, -81.576734)
## 1402                             1255 HILYARD STREET EUGENE, OR 97401 (44.046056, -123.082105)
## 1403                           707 N WALDRIP ST GRAND SALINE, TX 75140 (32.679193, -95.721737)
## 1404                          2500 HARBOR BLVD PORT CHARLOTTE, FL 33952 (26.98984, -82.096682)
## 1405                           2600 HIGHWAY 118 NORTH ALPINE, TX 79830 (30.383811, -103.67214)
## 1406                               330 N BROAD STREET FOREST, MS 39074 (32.365907, -89.470963)
## 1407                        763 JOHNSONBURG ROAD SAINT MARYS, PA 15857 (41.426857, -78.576794)
## 1408                      2101 N WATERMAN AVE SAN BERNARDINO, CA 92404 (34.134331, -117.27876)
## 1409                            5016 S US HIGHWAY 75 DENISON, TX 75020 (33.711133, -96.586956)
## 1410                                 1615 MAPLE LANE ASHLAND, WI 54806 (46.566887, -90.887978)
## 1411                                  745 POPLAR ROAD NEWNAN, GA 30265 (33.359363, -84.754062)
## 1412                               4900 HOUSTON ROAD FLORENCE, KY 41042 (39.017615, -84.63279)
## 1413                             1001 EAST 18TH STREET GROVE, OK 74344 (36.580086, -94.757259)
## 1414                             322 WEST SOUTH STREET UNION, SC 29379 (34.711438, -81.628668)
## 1415                               250 S GRAND AVE GLENDORA, CA 91740 (34.133196, -117.872534)
## 1416                                521 ADAMS STREET MORTON, WA 98356 (46.555953, -122.279878)
## 1417                    2000 WEST BETHANY HOME ROAD PHOENIX, AZ 85015 (33.524116, -112.101934)
## 1418                  201 EAST NICOLLET BOULEVARD BURNSVILLE, MN 55337 (44.749947, -93.274858)
## 1419                              173 MIDDLE STREET LANCASTER, NH 03584 (44.48699, -71.554156)
## 1420                                                          FERRELL ROAD ROSICLARE, IL 62982
## 1421                           1901 S SHADY ST MOUNTAIN CITY, TN 37683 (36.453783, -81.798722)
## 1422                            360 W RUDDLE STREET COALDALE, PA 18218 (40.821619, -75.914152)
## 1423                               85 HERRICK STREET BEVERLY, MA 01915 (42.567592, -70.876201)
## 1424                          725 SOUTH SHOOP AVENUE WAUSEON, OH 43567 (41.539193, -84.134283)
## 1425                           2900 W OKLAHOMA AVE MILWAUKEE, WI 53215 (42.988612, -87.949346)
## 1426                                    800 S MAIN AVE RUGBY, ND 58368 (48.363511, -99.996111)
## 1427                                        P O BOX 810, 2101 BOX BUTTE AVE ALLIANCE, NE 69301
## 1428                        14850 ROSCOE BLVD PANORAMA CITY, CA 91402 (34.221494, -118.456802)
## 1429                           2635 N 7TH ST GRAND JUNCTION, CO 81502 (39.090604, -108.561439)
## 1430                      4413 US HWY 331 S DEFUNIAK SPRINGS, FL 32435 (30.658742, -86.119188)
## 1431                               1116 MILLIS AVE BOONVILLE, IN 47601 (38.041356, -87.263374)
## 1432                     1256 MILITARY STREET SOUTH HAMILTON, AL 35570 (34.125852, -87.989806)
## 1433                                   2401 W MAIN HENRYETTA, OK 74437 (35.439738, -96.015496)
## 1434                          832 SOUTH MAIN STREET ORRVILLE, OH 44667 (40.832081, -81.764578)
## 1435                        333 NORTH SMITH AVENUE SAINT PAUL, MN 55102 (44.94185, -93.108302)
## 1436                        1000 SOUTH MAIN STREET SHAMROCK, TX 79079 (35.199149, -100.249189)
## 1437                    120 RIVERVIEW ST PO BOX 1209 FRANKLIN, NC 28734 (35.184634, -83.37764)
## 1438                                               3500 FRANCISCAN WAY MICHIGAN CITY, IN 46360
## 1439                           1545 ATLANTIC AVENUE BROOKLYN, NY 11213 (40.677866, -73.937154)
## 1440                                                    11401 S NORWALK BLVD NORWALK, CA 90650
## 1441                                3019 FALSTAFF RD RALEIGH, NC 27610 (35.782178, -78.583928)
## 1442                         134 EAST REBOUND ROAD LANCASTER, SC 29720 (34.865361, -80.802787)
## 1443                          160 NORTH MIDLAND AVENUE NYACK, NY 10960 (41.095251, -73.925253)
## 1444                               433 PLAZA STREET BOGALUSA, LA 70427 (30.778263, -89.868455)
## 1445                                               6511 SPRINGBROOK AVENUE RHINEBECK, NY 12572
## 1446                      211 CHURCH STREET SARATOGA SPRINGS, NY 12866 (43.084794, -73.796223)
## 1447                           700 WEST OAK STREET KISSIMMEE, FL 34741 (28.300923, -81.410854)
## 1448                          1629 E DIVISION ST RIVER FALLS, WI 54022 (44.862859, -92.602829)
## 1449                               120 WEST 8TH STREET ONAGA, KS 66521 (39.495155, -96.170861)
## 1450                        112 MANSFIELD AVENUE WILLIMANTIC, CT 06226 (41.716569, -72.224068)
## 1451                           335 GLESSNER AVENUE MANSFIELD, OH 44903 (40.753365, -82.529517)
## 1452                   50 MEDICAL PARK EAST DRIVE BIRMINGHAM, AL 35235 (33.595351, -86.665182)
## 1453                     3501 KNICKERBOCKER ROAD SAN ANGELO, TX 76904 (31.420076, -100.470132)
## 1454                                   2520 ELISHA AVENUE ZION, IL 60099 (42.44897, -87.82684)
## 1455                         400 W MINERAL KING AVE VISALIA, CA 93291 (36.327415, -119.294172)
## 1456                                 300 EAST 8TH ST GORDON, NE 69343 (42.811839, -102.199653)
## 1457                                  600 MARY ST EVANSVILLE, IN 47747 (37.983147, -87.570729)
## 1458                            1025 EAST 32ND STREET AUSTIN, TX 78705 (30.289494, -97.723847)
## 1459                                                   511 HOSPITAL ST SAN AUGUSTINE, TX 75972
## 1460                                     308 HUDSPETH SONORA, TX 76950 (30.563758, -100.63487)
## 1461                            3020 CHILDRENS WAY SAN DIEGO, CA 92123 (32.79826, -117.150821)
## 1462                                      13025 8TH ST OSSEO, WI 54758 (44.577911, -91.216351)
## 1463                            2600 LOCKWOOD STREET TAHOKA, TX 79373 (33.166539, -101.815507)
## 1464                                                        22999 US HWY 59 KINGWOOD, TX 77325
## 1465                          500 NELSON BOULEVARD KINGSTREE, SC 29556 (33.660666, -79.820239)
## 1466                          6401 FRANCE AVENUE SOUTH EDINA, MN 55435 (44.886279, -93.328857)
## 1467                           476 LIBERTY ROAD WEST LIBERTY, KY 41472 (37.920137, -83.266276)
## 1468                             5301 S CONGRESS AVE ATLANTIS, FL 33462 (26.598548, -80.09031)
## 1469                       223 MEDICAL CENTER DRIVE RIVERDALE, GA 30274 (33.581378, -84.39032)
## 1470                 907 E LAMAR ALEXANDER PARKWAY MARYVILLE, TN 37804 (35.754975, -83.958602)
## 1471                            2451 FILLINGIM STREET MOBILE, AL 36617 (30.708121, -88.099441)
## 1472                        724 PERSHING STREET ELLWOOD CITY, PA 16117 (40.869349, -80.274479)
## 1473                                530 3RD ST NW HARLOWTON, MT 59036 (46.437001, -109.840505)
## 1474                          4 FULLER STREET ALEXANDRIA BAY, NY 13607 (44.337217, -75.920022)
## 1475                 2905 WEST WARNER ROAD, SUITE 1 CHANDLER, AZ 85224 (33.33484, -111.891133)
## 1476                                   501 SUMMIT ST YANKTON, SD 57078 (42.872573, -97.406945)
## 1477                       200 SECOND AVENUE SOUTHWEST MIAMI, OK 74355 (36.872154, -94.879772)
## 1478                                                  AVE PONCE DE LEON 435 HATO REY, PR 00919
## 1479                              7301 ROGERS AVE FORT SMITH, AR 72917 (35.353647, -94.352964)
## 1480                          503 E LINCOLN STREET HENDRICKS, MN 56136 (44.506299, -96.418768)
## 1481                                500 S ACADEMY ST AHOSKIE, NC 27910 (36.285149, -76.993924)
## 1482                     1000 MEDICAL CENTER DRIVE MONTICELLO, IL 61856 (40.060163, -88.56377)
## 1483                         951 N WASHINGTON AVE TITUSVILLE, FL 32796 (28.629068, -80.824943)
## 1484               4000 MIAMISBURG-CENTERVILLE ROAD MIAMISBURG, OH 45342 (39.63982, -84.25126)
## 1485          1011 VETERANS MEMORIAL PARKWAY EAST PROVIDENCE, RI 02915 (41.792537, -71.365838)
## 1486                                 7590 AUBURN ROAD CONCORD, OH 44077 (41.664251, -81.24466)
## 1487                  2150 HOSPITAL DRIVE, PO BOX 339 WINDOM, MN 56101 (43.878587, -95.113659)
## 1488                       4650 LINCOLN BLVD MARINA DEL REY, CA 90291 (33.981732, -118.440154)
## 1489                        92 BRICK ROAD, 3RD FLOOR MARLTON, NJ 08053 (39.880588, -74.919209)
## 1490                                   515 MAIN STREET OLEAN, NY 14760 (42.089448, -78.426977)
## 1491                             401 MATTHEW STREET MARIETTA, OH 45750 (39.431621, -81.464717)
## 1492                                 901 NORTH PORTER NORMAN, OK 73070 (35.230257, -97.441117)
## 1493                          66 NORTH SIXTH STREET POMEROY, WA 99347 (46.475183, -117.602551)
## 1494                                  225 ELYRIA STREET LODI, OH 44254 (41.036087, -82.013516)
## 1495                                   1201 W 38TH ST AUSTIN, TX 78705 (30.306154, -97.745218)
## 1496                             7300 NORTH FRESNO ST FRESNO, CA 93720 (36.84278, -119.783436)
## 1497                                                   215 MARION AV BOX 1307 MCCOMB, MS 39649
## 1498                               600 EAST 5TH STREET FULTON, MO 65251 (38.84709, -91.939546)
## 1499                                   500 E 51ST ST CHICAGO, IL 60615 (41.802158, -87.614193)
## 1500                     1801 N JACKSON ST BOX 460 TULLAHOMA, TN 37388 (35.382921, -86.230533)
## 1501                                 500 CHERRY ST BLUEFIELD, WV 24701 (37.257517, -81.234129)
## 1502                       3751 KATELLA AVENUE LOS ALAMITOS, CA 90720 (33.803175, -118.067413)
## 1503                             1805 27TH STREET PORTSMOUTH, OH 45662 (38.753913, -82.977832)
## 1504                                 4077 5TH AVE SAN DIEGO, CA 92103 (32.751211, -117.161024)
## 1505                               701 W PLYMOUTH AVE DELAND, FL 32720 (29.042613, -81.317205)
## 1506                          2100 STANTONSBURG RD GREENVILLE, NC 27834 (35.60581, -77.400952)
## 1507                       810 ST VINCENT'S DRIVE BIRMINGHAM, AL 35205 (33.508015, -86.788755)
## 1508                           4867 SUNSET BLVD LOS ANGELES, CA 90027 (34.098141, -118.294825)
## 1509               625 JAMES S TRIMBLE BOULEVARD PAINTSVILLE, KY 41240 (37.815015, -82.812803)
## 1510                    241 ROBERT K WILSON DRIVE CARROLLTON, AL 35447 (33.274807, -88.089673)
## 1511                                  201 BAILEY LANE BENTON, IL 62812 (38.009137, -88.917142)
## 1512                        1301 GRUNDMAN BLVD NEBRASKA CITY, NE 68410 (40.658152, -95.862109)
## 1513                        3125 DR RUSSELL SMITH WAY CARTHAGE, MO 64836 (37.1367, -94.320872)
## 1514                                  2020 TALLY RD LEESBURG, FL 34748 (28.835882, -81.895437)
## 1515                      1100 CENTRAL AVENUE SE ALBUQUERQUE, NM 87106 (35.082295, -106.63453)
## 1516                            395 WESTFIELD RD NOBLESVILLE, IN 46060 (40.047026, -86.024081)
## 1517                             433 MCALISTER RD LINCOLNTON, NC 28092 (35.488387, -81.201314)
## 1518                            1815 HAND AVENUE BAY MINETTE, AL 36507 (30.902492, -87.783318)
## 1519                       711 NORTH TAYLOR STREET GUNNISON, CO 81230 (38.551089, -106.924321)
## 1520                            163 E TOLLISON STREET BAXLEY, GA 31513 (31.768768, -82.349351)
## 1521                      308 NORTH MAPLE AVENUE NEW HAMPTON, IA 50659 (43.062677, -92.320425)
## 1522                        6500 38TH AVE N SAINT PETERSBURG, FL 33710 (27.806299, -82.727297)
## 1523                            1795 HIGHWAY 64 EAST ANAMOSA, IA 52205 (42.102231, -91.261919)
## 1524                                1000 OAKLEAF WAY ALTOONA, WI 54720 (44.815002, -91.451764)
## 1525                       651 WEST MARION ROAD MOUNT GILEAD, OH 43338 (40.549238, -82.849274)
## 1526                               5901 MONCLOVA ROAD MAUMEE, OH 43537 (41.558756, -83.681608)
## 1527                             5324 PENN AVENUE PITTSBURGH, PA 15224 (40.464637, -79.937642)
## 1528                               1514 VERNON ROAD LAGRANGE, GA 30240 (33.031301, -85.056671)
## 1529                          1301 NORTH RACE STREET GLASGOW, KY 42141 (37.011566, -85.903862)
## 1530                              1700 S 23RD ST FORT PIERCE, FL 34950 (27.431942, -80.347352)
## 1531                             211 SUDDERTH DRIVE RUIDOSO, NM 88345 (33.323052, -105.631136)
## 1532                             830 S GLOSTER STREET TUPELO, MS 38801 (34.242203, -88.717758)
## 1533                               5475 SOUTH 500 EAST OGDEN, UT 84405 (41.163502, -111.96862)
## 1534                                                   2801 ST ANTHONY WAY PENDLETON, OR 97801
## 1535                           450 EAST MAIN STREET REXBURG, ID 83440 (43.826051, -111.773148)
## 1536                                 800 E MAIN VILLE PLATTE, LA 70586 (30.684931, -92.265973)
## 1537                     3555 SOUTH VAL VISTA DRIVE GILBERT, AZ 85297 (33.286661, -111.755311)
## 1538                                      150 BERGEN ST NEWARK, NJ 07101 (40.74095, -74.19213)
## 1539                            1200 RALSTON AVENUE DEFIANCE, OH 43512 (41.299392, -84.373469)
## 1540                                 20 HOSPITAL DRIVE LOGAN, WV 25601 (37.846318, -81.994284)
## 1541                       3700 SOUTH MAIN STREET BLACKSBURG, VA 24060 (37.185621, -80.408612)
## 1542                                          20201 S CRAWFORD AVENUE OLYMPIA FIELDS, IL 60461
## 1543                      500 UPPER CHESAPEAKE DRIVE BEL AIR, MD 21014 (39.519469, -76.348354)
## 1544                          200 INDUSTRIAL BOULEVARD DUBLIN, GA 31021 (32.53429, -82.950571)
## 1545                      6001 NORRIS CANYON ROAD SAN RAMON, CA 94583 (37.775988, -121.959274)
## 1546                         2700 SE STRATUS AVE. MCMINNVILLE, OR 97128 (45.20031, -123.16523)
## 1547                       1800 PARK PLACE AVENUE FORT WORTH, TX 76110 (32.725778, -97.346185)
## 1548                                      810 N WELO ST TIOGA, ND 58852 (48.4017, -102.934649)
## 1549                                 825 DELBON AVE TURLOCK, CA 95382 (37.510487, -120.837491)
## 1550                            1590 WEST LIBERTY ROAD ATOKA, OK 74525 (34.395262, -96.159488)
## 1551                                     300 VEAZY RD BUTNER, NC 27509 (36.142882, -78.772589)
## 1552                            157 UNION STREET MARLBOROUGH, MA 01752 (42.354317, -71.553864)
## 1553                    1601 YGNACIO VALLEY RD WALNUT CREEK, CA 94598 (37.914297, -122.042071)
## 1554                                 332 LEAVITT AVE JORDAN, MT 59337 (47.318524, -106.911328)
## 1555                                  220 FAISON DR COLUMBIA, SC 29203 (34.084139, -80.980762)
## 1556                          4212 NORTH 16TH STREET PHOENIX, AZ 85016 (33.49701, -112.047613)
## 1557                        5401 OLD COURT ROAD RANDALLSTOWN, MD 21133 (39.359208, -76.782944)
## 1558                                507 S MONROE ST LANCASTER, WI 53813 (42.84434, -90.708393)
## 1559                              30 PROSPECT AVE HACKENSACK, NJ 07601 (40.884032, -74.057954)
## 1560                            1530 U S HIGHWAY 43 WINFIELD, AL 35594 (33.929316, -87.824507)
## 1561                       4363 CONVENTION STREET BATON ROUGE, LA 70806 (30.44941, -91.145101)
## 1562                24429 TOMBALL PARKWAY, SUITE 100 TOMBALL, TX 77375 (30.037176, -95.605323)
## 1563                    2500 ROCKY MOUNTAIN AVENUE LOVELAND, CO 80538 (40.415194, -105.001451)
## 1564                              14 PROSPECT STREET MILFORD, MA 01757 (42.132835, -71.529014)
## 1565                          910 WALLACE AVENUE LEITCHFIELD, KY 42754 (37.471947, -86.287038)
## 1566                                    240 MAPLE ST WOODRUFF, WI 54568 (45.89437, -89.701837)
## 1567                                    615 RIDGE RD ROXBORO, NC 27573 (36.407549, -78.984763)
## 1568                                                   ROUTE 301 NORTH B STREET ZUNI, NM 87327
## 1569                    46 FAIRVIEW AVE PO BOX 468 SKOWHEGAN, ME 04976 (44.758336, -69.713495)
## 1570                                                       ONE HEALTHY WAY OCEANSIDE, NY 11572
## 1571                                711 ONYX STREET KEMMERER, WY 83101 (41.78958, -110.540607)
## 1572                              1301 15TH AVE W WILLISTON, ND 58801 (48.154332, -103.645437)
## 1573                                333 LAIDLEY ST CHARLESTON, WV 25301 (38.353364, -81.63258)
## 1574                                  826 18TH STREET HOXIE, KS 67740 (39.354188, -100.432735)
## 1575                      1601 WATSON BOULEVARD WARNER ROBINS, GA 31093 (32.618198, -83.62941)
## 1576                          214 EAST 23RD STREET CHEYENNE, WY 82001 (41.139789, -104.817036)
## 1577                                 24 HOSPITAL LANE CALAIS, ME 04619 (45.180639, -67.270521)
## 1578                          2000 SOUTH PALESTINE ST ATHENS, TX 75751 (32.171435, -95.844022)
## 1579                           1425 NORTH RANDALL ROAD ELGIN, IL 60123 (42.070221, -88.331468)
## 1580                                                  ONE N ATKINSON DRIVE LUDINGTON, MI 49431
## 1581                 2601 DIMMITT ROAD, SUITE 400 PLAINVIEW, TX 79072 (34.207214, -101.731626)
## 1582                              3401 WEST GORE BLVD LAWTON, OK 73505 (34.608969, -98.434497)
## 1583                                 1600 COMMUNITY DR SENECA, KS 66538 (39.837849, -96.07789)
## 1584                         1777 WEST YOSEMITE AVE MANTECA, CA 95337 (37.797371, -121.246183)
## 1585                                501 SUNSET LANE CULPEPER, VA 22701 (38.454848, -78.011305)
## 1586                             2301 HIGHWAY 71 SPIRIT LAKE, IA 51360 (43.418396, -95.126312)
## 1587                              695 N KELLOGG ST GALESBURG, IL 61401 (40.955483, -90.366199)
## 1588                             100 MEDICAL PARKWAY DENISON, IA 51442 (42.023257, -95.377086)
## 1589                                                33300 CLEVELAND CLINIC BLVD AVON, OH 44011
## 1590                         1701 OAK PARK BLVD LAKE CHARLES, LA 70601 (30.203461, -93.197295)
## 1591                           3901 S SEVENTH ST TERRE HAUTE, IN 47802 (39.419624, -87.406837)
## 1592                                 3701 E MAIN WEATHERFORD, OK 73096 (35.536869, -98.661556)
## 1593                              701 N FIRST ST SPRINGFIELD, IL 62702 (39.808778, -89.654586)
## 1594                             2600 ST MICHAEL DR TEXARKANA, TX 75504 (33.46249, -94.074448)
## 1595                510 E 8TH ST POST OFFICE BOX 370 FREEMAN, SD 57029 (43.347543, -97.431046)
## 1596                                242 GREEN STREET GARDNER, MA 01440 (42.586565, -71.986165)
## 1597                               1761 BEALL AVENUE WOOSTER, OH 44691 (40.820713, -81.934247)
## 1598                                      909 2ND ST LANGDON, ND 58249 (48.761243, -98.366661)
## 1599                         1300 N VERMONT AVE LOS ANGELES, CA 90027 (34.096116, -118.291753)
## 1600                              2601 OCEAN PARKWAY BROOKLYN, NY 11235 (40.58494, -73.966285)
## 1601                               449 W 23RD ST PANAMA CITY, FL 32405 (30.189682, -85.666124)
## 1602                                  722 EAST BUTLER PIKE AMBLER, PA 19002 (40.185, -75.1871)
## 1603                           17240 CORTEZ BLVD BROOKSVILLE, FL 34601 (28.541115, -82.443386)
## 1604                               500 GYPSY LANE YOUNGSTOWN, OH 44501 (41.133639, -80.659424)
## 1605                          200 HENRY CLAY AVE NEW ORLEANS, LA 70118 (29.917396, -90.127131)
## 1606                             2000 BROOKSIDE DR KINGSPORT, TN 37660 (36.550686, -82.517916)
## 1607                            4770 LARIMER PKWY JOHNSTOWN, CO 80534 (40.404469, -104.973886)
## 1608                                                  6051 US HIGHWAY 49 HATTIESBURG, MS 39404
## 1609                         4343 NORTH JOSEY LANE CARROLLTON, TX 75010 (33.028966, -96.88395)
## 1610                              22 MASONIC AVE WALLINGFORD, CT 06492 (41.460698, -72.836586)
## 1611                       1808 WEST MAIN STREET RUSSELLVILLE, AR 72801 (35.28286, -93.149908)
## 1612                        1000 FOURTH STREET SW MASON CITY, IA 50401 (43.148377, -93.216102)
## 1613                              2255 S 88TH ST LOUISVILLE, CO 80027 (39.951111, -105.147859)
## 1614                        101 LAKE OCONEE PARKWAY EATONTON, GA 31024 (33.335519, -83.370844)
## 1615                            303 PARKWAY DRIVE, NE ATLANTA, GA 30312 (33.76327, -84.373986)
## 1616                            6412 LAUREL AVE LAKE ISABELLA, CA 93240 (35.635351, -118.4063)
## 1617                                1100 E LOOP 304 CROCKETT, TX 75835 (31.323699, -95.437257)
## 1618                              425 ROBINSON ST BINGHAMTON, NY 13901 (42.107984, -75.866583)
## 1619               524 DR MICHAEL DEBAKEY STREET LAKE CHARLES, LA 70601 (30.215437, -93.22767)
## 1620               11200 NORTH PORTLAND AVENUE OKLAHOMA CITY, OK 73120 (35.583651, -97.585019)
## 1621                                  2500 N STATE ST JACKSON, MS 39216 (32.328783, -90.17558)
## 1622                                       960 JOE FRANK HARRIS PARKWAY CARTERSVILLE, GA 30120
## 1623                             720 N LINCOLN ST GREENSBURG, IN 47240 (39.344116, -85.479404)
## 1624                                                     16750 RED OAK DRIVE HOUSTON, TX 77090
## 1625                       2500 WEST REYNOLDS STREET PONTIAC, IL 61764 (40.873402, -88.678583)
## 1626                                   2829 E HWY 76 MULLINS, SC 29574 (34.189232, -79.321945)
## 1627                             645 EAST 5TH STREET WEISER, ID 83672 (44.248761, -116.961735)
## 1628                               1650 W COLLEGE ST GRAPEVINE, TX 76051 (32.9356, -97.093897)
## 1629                                 810 NORTH 22ND ST BLAIR, NE 68008 (41.551152, -96.145519)
## 1630                                                    5151 HARRY HINES BLVD DALLAS, TX 75390
## 1631                      18697 BAGLEY ROAD MIDDLEBURG HEIGHTS, OH 44130 (41.37208, -81.83291)
## 1632                            1234 NAPIER AVENUE ST JOSEPH, MI 49085 (42.089742, -86.477194)
## 1633                               200 MISSION BLVD JACKSON, CA 95642 (38.349561, -120.765905)
## 1634                    10502 NORTH 110TH EAST AVENUE OWASSO, OK 74055 (36.304717, -95.851684)
## 1635                                3000 MACK ROAD FAIRFIELD, OH 45014 (39.310902, -84.519501)
## 1636                    2190 NORTH GRACE BOULEVARD CHANDLER, AZ 85225 (33.339037, -111.847133)
## 1637                  1216 SECOND STREET SOUTHWEST ROCHESTER, MN 55902 (44.021643, -92.481355)
## 1638                           502 W HIGHLAND BLVD INVERNESS, FL 34452 (28.832242, -82.335335)
## 1639                                                     50 KIRKBRIDE DRIVE DANVILLE, PA 17821
## 1640               1805 MEDICAL CENTER DRIVE SAN BERNARDINO, CA 92411 (34.131238, -117.322559)
## 1641                                                         301 FLYNN DRIVE MILBANK, SD 57252
## 1642                     1400 HIGHWAY 71 INTERNATIONAL FALLS, MN 56649 (48.593984, -93.430774)
## 1643                        3840 HOMESTEAD ROAD SANTA CLARA, CA 95051 (37.337716, -122.000546)
## 1644                           303 N W 11TH STREET FAIRFIELD, IL 62837 (38.381637, -88.374422)
## 1645                                    419 S CORAL KALKASKA, MI 49646 (44.730897, -85.183837)
## 1646                           502 EAST SECOND STREET DULUTH, MN 55805 (46.793074, -92.094155)
## 1647                          310 SOUTH PECOS STREET COLEMAN, TX 76834 (31.828626, -99.425238)
## 1648                       402 LAKE CASCADE PARKWAY CASCADE, ID 83611 (44.517921, -116.048938)
## 1649                             200 NORTH ELM STREET ONAMIA, MN 56359 (46.072467, -93.661823)
## 1650                               316 CALHOUN ST CHARLESTON, SC 29401 (32.782372, -79.948734)
## 1651                                    202 HIGH ST TECUMSEH, NE 68450 (40.379192, -96.197342)
## 1652                         2300 PATTERSON STREET NASHVILLE, TN 37203 (36.152907, -86.807646)
## 1653                                                      200 HWY 30 WEST NEW ALBANY, MS 38652
## 1654                              515 PACIFIC AVENUE AUDUBON, IA 50025 (41.715423, -94.937044)
## 1655                                   2000 S MAIN FAIRFIELD, IA 52556 (40.985635, -91.963118)
## 1656                   90 HOSPITAL DRIVE PO BOX 1116 BREVARD, NC 28712 (35.256324, -82.715196)
## 1657                          850 NORTH MAIN STREET MILFORD, UT 84751 (38.407308, -113.009543)
## 1658                           269 PORTLAND WAY SOUTH GALION, OH 44833 (40.731143, -82.803296)
## 1659                              1530 LONE OAK ROAD PADUCAH, KY 42003 (37.052989, -88.647857)
## 1660                            401 15TH AVENUE SE PUYALLUP, WA 98372 (47.177411, -122.289468)
## 1661                            19021 US HIGHWAY 285 LA JARA, CO 81140 (37.26375, -105.964095)
## 1662                                 4300 BARTLETT ST HOMER, AK 99603 (59.652133, -151.550296)
## 1663                         500 MEDICAL CENTER BLVD WEBSTER, TX 77598 (29.541062, -95.126274)
## 1664                           1600 SW ARCHER RD GAINESVILLE, FL 32610 (29.639223, -82.343325)
## 1665                      1317 LAKE POINTE PARKWAY SUGAR LAND, TX 77478 (29.60496, -95.621328)
## 1666                      315 SOUTH MANNING BOULEVARD ALBANY, NY 12208 (42.660176, -73.802382)
## 1667                            101 CITY DRIVE SOUTH ORANGE, CA 92868 (33.780111, -117.894303)
## 1668                             723 MEMORIAL STREET PROSSER, WA 99350 (46.20763, -119.763502)
## 1669                                        34TH ST & CIVIC CENTER BLVD PHILADELPHIA, PA 19104
## 1670                            650 RANCOCAS ROAD WESTAMPTON, NJ 08060 (40.009597, -74.846072)
## 1671                                    520 ALLEN STREET TROY, NC 27371 (35.36443, -79.891557)
## 1672                            4250 AUBURN BLVD SACRAMENTO, CA 95841 (38.643745, -121.365078)
## 1673                              3655 MITCHELL STREET LORIS, SC 29569 (34.057697, -78.897796)
## 1674                        1600 WEST ANTELOPE DRIVE LAYTON, UT 84041 (41.089242, -111.995471)
## 1675                         585 SCHENECTADY AVENUE BROOKLYN, NY 11203 (40.658929, -73.934072)
## 1676                             9330 SR 54, STE 401 TRINITY, FL 34655 (28.206014, -82.660964)
## 1677                         11500 BROOKSHIRE AVENUE DOWNEY, CA 90241 (33.935563, -118.131703)
## 1678                        600 NORTH WOLFE STREET BALTIMORE, MD 21287 (39.297502, -76.590807)
## 1679                            1800 EAST VAN BUREN PHOENIX, AZ 85006 (33.451436, -112.042767)
## 1680                           54 HOSPITAL DRIVE OSAGE BEACH, MO 65065 (38.118486, -92.681085)
## 1681                         1600 SOUTH 20TH AVENUE SAFFORD, AZ 85546 (32.821883, -109.732994)
## 1682                      1625 NASHVILLE STREET RUSSELLVILLE, KY 42276 (36.815437, -86.882593)
## 1683                       11365 DORSETT ROAD MARYLAND HEIGHTS, MO 63043 (38.7095, -90.415893)
## 1684                                 111 HOSPITAL DR TARBORO, NC 27886 (35.921885, -77.556994)
## 1685                              5620 READ BLVD NEW ORLEANS, LA 70127 (30.030738, -89.971583)
## 1686                                  204 N 4TH AVE E NEWTON, IA 50208 (41.702413, -93.051177)
## 1687                                 3000 GETWELL RD MEMPHIS, TN 38118 (35.067788, -89.932213)
## 1688                         7785 NORTH STATE STREET LOWVILLE, NY 13367 (43.79583, -75.498152)
## 1689                                  1611 NW 12TH AVE MIAMI, FL 33136 (25.790612, -80.214945)
## 1690                              1401 WEST PAWNEE CLEVELAND, OK 74020 (36.309882, -96.481121)
## 1691                             725 S WAHANNA ROAD SEASIDE, OR 97138 (45.989367, -123.914805)
## 1692                                 70 MEDICAL PLAZA EUPORA, MS 39744 (33.534736, -89.266943)
## 1693                            600 HIGHWAY 349 NORTH IRAAN, TX 79744 (30.914189, -101.906673)
## 1694                               211 HOSPITAL ROAD RED BAY, AL 35582 (34.457425, -88.146934)
## 1695                             1619 EAST 13TH STREET TULSA, OK 74120 (36.144241, -95.969188)
## 1696                         12401 WASHINGTON BLVD WHITTIER, CA 90602 (33.967433, -118.048143)
## 1697                            210 NORTH MAIN STREET LONDON, OH 43140 (39.892001, -83.455175)
## 1698                         601 MEDICAL PARKWAY ENTERPRISE, OR 97828 (45.431755, -117.281385)
## 1699                                575 BEECH STREET HOLYOKE, MA 01040 (42.199616, -72.627087)
## 1700                            117 WINNSBORO STREET QUITMAN, TX 75783 (32.796155, -95.445296)
## 1701                            2000 CANAL STREET NEW ORLEANS, LA 70112 (29.961092, -90.08091)
## 1702                           1111 3RD STREET SW DYERSVILLE, IA 52040 (42.475924, -91.129632)
## 1703                             3500 S LAFOUNTAIN ST KOKOMO, IN 46902 (40.446835, -86.127103)
## 1704                                 620 8TH AVE TERRE HAUTE, IN 47804 (39.484793, -87.409793)
## 1705                            9938 AIRLINE HWY BATON ROUGE, LA 70809 (30.427958, -91.078131)
## 1706                       525 N GARFIELD AVE MONTEREY PARK, CA 91754 (34.067864, -118.122906)
## 1707                                 411 W TIPTON ST SEYMOUR, IN 47274 (38.956734, -85.891356)
## 1708                                                          PO BOX 1129 GREENVILLE, ME 04441
## 1709                            1215 FRANCISCAN DR LITCHFIELD, IL 62056 (39.18081, -89.639636)
## 1710                            715 N ST JOSEPH AVE HASTINGS, NE 68901 (40.592416, -98.387474)
## 1711                                 441 N WABASH AVE MARION, IN 46952 (40.563853, -85.665139)
## 1712               4801 AMBASSADOR CAFFERY PARKWAY LAFAYETTE, LA 70508 (30.150001, -92.040447)
## 1713                          5000 HIGHWAY 39 NORTH MERIDIAN, MS 39301 (32.409988, -88.678811)
## 1714                            3200 WATERFIELD DRIVE GARNER, NC 27529 (35.680334, -78.560684)
## 1715                                    703 MAIN ST PATERSON, NJ 07503 (40.902456, -74.166751)
## 1716                                   130 DIVISION ST DERBY, CT 06418 (41.335978, -73.088689)
## 1717                             981 WOOSTER ROAD MILLERSBURG, OH 44654 (40.56432, -81.920492)
## 1718                             3909 S WILSON ROAD RADCLIFF, KY 40160 (37.788788, -85.912719)
## 1719                           1923 SOUTH UTICA AVENUE TULSA, OK 74104 (36.134928, -95.967243)
## 1720                                  540 JETT DRIVE JACKSON, KY 41339 (37.565434, -83.370111)
## 1721                         1502 NORTH JEFFERSON CARROLLTON, MO 64633 (39.376161, -93.494218)
## 1722                              1401 E 12TH STREET MENDOTA, IL 61342 (41.555187, -89.105497)
## 1723                                   2412 50TH ST LUBBOCK, TX 79412 (33.548786, -101.869098)
## 1724                2799 NORTH WASHINGTON STREET CHILLICOTHE, MO 64601 (39.816125, -93.552781)
## 1725                                300 W OTTLEY AVE FRUITA, CO 81521 (39.164337, -108.735901)
## 1726                          1970 HOSPITAL DRIVE CLARKSDALE, MS 38614 (34.197133, -90.552764)
## 1727                             425 7TH STREET NW CASS LAKE, MN 56633 (47.384094, -94.609515)
## 1728                        6015 WEST PEORIA AVENUE GLENDALE, AZ 85302 (33.581818, -112.18938)
## 1729                           1796 HWY 441 NORTH OKEECHOBEE, FL 34972 (27.260537, -80.829875)
## 1730                                 216 14TH AVE SW SIDNEY, MT 59270 (47.715839, -104.174171)
## 1731                           350 NORTH 11TH STREET SUNBURY, PA 17801 (40.862243, -76.778268)
## 1732                                 521 EAST AVENUE LOCKPORT, NY 14094 (43.17638, -78.671075)
## 1733                       3690 GRANDVIEW PARKWAY BIRMINGHAM, AL 35243 (33.434363, -86.720483)
## 1734                           223 HOSPITAL STREET MOCKSVILLE, NC 27028 (35.90001, -80.570097)
## 1735                              700 MEDICAL BLVD ENGLEWOOD, FL 34223 (26.949009, -82.327951)
## 1736                               382 TAYLOR DRIVE DANVILLE, VA 24541 (36.556158, -79.410178)
## 1737                                           100 PIONEERS MEDICAL CENTER DR MEEKER, CO 81641
## 1738                                             ONE MEDICAL CENTER BOULEVARD UPLAND, PA 19013
## 1739                              36 KLONDIKE ROAD REPUBLIC, WA 99166 (48.652745, -118.733177)
## 1740                                                 1720 E CESAR AVENUE LOS ANGELES, CA 90033
## 1741                            1405 CLIFTON ROAD, NE ATLANTA, GA 30322 (33.79398, -84.321007)
## 1742                       501 ROBERTSON BOULEVARD WALTERBORO, SC 29488 (32.921855, -80.67088)
## 1743                   37000 NORTH GANTZEL ROAD QUEEN CREEK, AZ 85140 (33.214839, -111.563447)
## 1744                    927 WEST CHURCHILL STREET STILLWATER, MN 55082 (45.048126, -92.818489)
## 1745                        91500 OVERSEAS HIGHWAY TAVERNIER, FL 33070 (25.005408, -80.521301)
## 1746                             1500 LINE AVENUE SHREVEPORT, LA 71101 (32.496926, -93.746046)
## 1747                                     501 N 14TH ST PERRY, OK 73077 (36.289083, -97.299229)
## 1748                             723 BURKESVILLE ROAD ALBANY, KY 42602 (36.698335, -85.146554)
## 1749                             831 HWY 150 SOUTH EVANSTON, WY 82931 (41.258885, -110.946273)
## 1750                             611 W MAIN ST FREDERICKTOWN, MO 63645 (37.559846, -90.302408)
## 1751                        12 NORTH 7TH AVENUE MOUNT VERNON, NY 10550 (40.912754, -73.840011)
## 1752                           100 HOSPITAL DRIVE BENNINGTON, VT 05201 (42.873911, -73.204343)
## 1753                             401 SIXTH AVENUE MONTGOMERY, WV 25136 (38.182878, -81.324708)
## 1754                       1901 NORTH HIGHWAY 87 BIG SPRING, TX 79721 (32.271558, -101.493504)
## 1755                           410 DEWEY ST WISCONSIN RAPIDS, WI 54495 (44.382199, -89.829544)
## 1756                     1200 SEVENTH AVE N SAINT PETERSBURG, FL 33705 (27.779343, -82.651224)
## 1757                      401 WOODLAND HILLS BLVD FORT SCOTT, KS 66701 (37.805087, -94.705355)
## 1758                                  355 RIDGE AVE EVANSTON, IL 60202 (42.023951, -87.685159)
## 1759                  7 TRANSALPINE ROAD, PO BOX 368 LINCOLN, ME 04457 (45.348733, -68.516258)
## 1760                                   4301 B VISTA PASADENA, TX 77504 (29.658717, -95.178161)
## 1761              45TH AVENUE AND PARSONS BOULEVARD FLUSHING, NY 11355 (40.755636, -73.815645)
## 1762                           1108 ROSS CLARK CIRCLE DOTHAN, AL 36301 (31.214058, -85.361725)
## 1763                            5189 HOSPITAL ROAD MARIPOSA, CA 95338 (37.500531, -119.976948)
## 1764                                 8613 MS HWY 12 ACKERMAN, MS 39735 (33.318465, -89.182304)
## 1765                                                 4201 ST ANTOINE ST - 2C DETROIT, MI 48201
## 1766                         111 MICHIGAN AVE, NW WASHINGTON, DC 20010 (38.926273, -77.013878)
## 1767                               88 LEWIS BAY ROAD HYANNIS, MA 02601 (41.652823, -70.274847)
## 1768                          200 WEST LORAIN STREET OBERLIN, OH 44074 (41.294219, -82.224384)
## 1769               117 CAMINO DE VIDA, SUITE 100 SANTA ROSA, NM 88435 (34.929504, -104.694224)
## 1770                    401 EAST MURPHY AVENUE CONNELLSVILLE, PA 15425 (40.023373, -79.586216)
## 1771                             355 NORTH MAIN STREET KANAB, UT 84741 (37.054324, -112.52859)
## 1772                                1010 SOUTH BIRCH HALLOCK, MN 56728 (48.767058, -96.940492)
## 1773                                 211 E EARL STREET LEOTI, KS 67861 (38.476196, -101.35561)
## 1774                         250 NORTH WICKHAM ROAD MELBOURNE, FL 32935 (28.109804, -80.67261)
## 1775                              820 W WASHINGTON ST EUFAULA, AL 36027 (31.88798, -85.156613)
## 1776                                                    41 & 45 MALL ROAD BURLINGTON, MA 01803
## 1777                               3301 MATLOCK ROAD ARLINGTON, TX 76015 (32.691751, -97.1148)
## 1778                      561 FAIRTHORNE AVENUE PHILADELPHIA, PA 19128 (40.043063, -75.222714)
## 1779                               2020 26TH AVE E BRADENTON, FL 34208 (27.476905, -82.539636)
## 1780                        1014 OSWEGATCHIE TRAIL STAR LAKE, NY 13690 (44.162953, -75.055964)
## 1781                             450 E SIGLER AVENUE MEMPHIS, MO 63555 (40.466023, -92.168171)
## 1782                                420 34TH ST BAKERSFIELD, CA 93301 (35.390474, -119.006836)
## 1783                             401 W GREENLAWN AVE LANSING, MI 48910 (42.704799, -84.555111)
## 1784                                                PO BOX 3814 DUMC ERWIN RD DURHAM, NC 27710
## 1785                         210 WEST 1ST STREET ST FRANCIS, KS 67756 (39.771069, -101.803259)
## 1786                              200 HOSPITAL AVE JEFFERSON, NC 28640 (36.423027, -81.459727)
## 1787                                    601 EAST ST N ELGIN, ND 58533 (46.407017, -101.842151)
## 1788                                                975 PORT WASHINGTON ROAD GRAFTON, WI 53024
## 1789                       901 WEST REX ALLEN DRIVE WILLCOX, AZ 85643 (32.264268, -109.837613)
## 1790                              2900 1ST AVENUE HUNTINGTON, WV 25702 (38.431833, -82.401335)
## 1791                            3400 MINISTRY PARKWAY WESTON, WI 54476 (44.889675, -89.582214)
## 1792                            520 WEST 5TH STREET QUINTER, KS 67752 (39.067161, -100.241311)
## 1793                                1499 FAIR ROAD STATESBORO, GA 30458 (32.415171, -81.76865)
## 1794                       7400 EAST OSBORN ROAD SCOTTSDALE, AZ 85251 (33.487639, -111.922725)
## 1795                                     901 S 5TH AVE MADILL, OK 73446 (34.081738, -96.77845)
## 1796                             305 LANGDON STREET SOMERSET, KY 42503 (37.086576, -84.617956)
## 1797                             1008 NORTH MAIN ST SIKESTON, MO 63801 (36.889048, -89.584346)
## 1798                               800 ROSE STREET LEXINGTON, KY 40536 (38.032448, -84.507381)
## 1799                      1980 CROMPOND ROAD CORTLANDT MANOR, NY 10567 (41.291457, -73.893601)
## 1800                                                  ONE PLAINSBORO ROAD PLAINSBORO, NJ 08536
## 1801                          475 W RIVER WOODS PKWY GLENDALE, WI 53212 (43.09827, -87.913579)
## 1802                       3815 HIGHLAND AVENUE DOWNERS GROVE, IL 60515 (41.819137, -88.01022)
## 1803                           620 EAST COLLEGE STREET HOMER, LA 71040 (32.794327, -93.062469)
## 1804                              1201 S MAIN ST CROWN POINT, IN 46307 (41.396497, -87.364436)
## 1805                     9204 NORTH MAY AVENUE OKLAHOMA CITY, OK 73120 (35.564166, -97.567159)
## 1806                         483 WEST SEED FARM ROAD SACATON, AZ 85147 (33.074122, -111.75908)
## 1807                        350 N MERIDIAN STREET BLACKFOOT, ID 83221 (43.196301, -112.356124)
## 1808                                    905 SECOND ST FRIEND, NE 68359 (40.653693, -97.282052)
## 1809                                                   103 MEDICINE WAY ROAD PERIDOT, AZ 85542
## 1810                         1720 TERMINO AVENUE LONG BEACH, CA 90804 (33.788231, -118.145886)
## 1811                        165 BEECH SPRINGS ROAD JONESBORO, LA 71251 (32.252349, -92.719636)
## 1812                         7150 CLEARVISTA DR INDIANAPOLIS, IN 46256 (39.900033, -86.043072)
## 1813                            218 E PACK STREET MOUNDRIDGE, KS 67107 (38.205072, -97.516996)
## 1814                     700 SOUTHEAST INNER LOOP GEORGETOWN, TX 78626 (30.607951, -97.673767)
## 1815                             7171 N DALE MABRY HWY TAMPA, FL 33614 (28.013102, -82.504954)
## 1816                           5121 RAYTOWN ROAD KANSAS CITY, MO 64133 (39.029925, -94.470396)
## 1817                         400 NORTH PEPPER AVENUE COLTON, CA 92324 (34.072884, -117.352833)
## 1818                    6601 CENTRAL FLORIDA PARKWAY ORLANDO, FL 32821 (28.408552, -81.469845)
## 1819                         815 SOUTH 10TH STREET LEESVILLE, LA 71446 (31.136079, -93.269509)
## 1820                        501 SOUTH BURMA AVENUE GILLETTE, WY 82716 (44.289846, -105.519557)
## 1821                              593 EDDY STREET PROVIDENCE, RI 02903 (41.811956, -71.407049)
## 1822                        1120 N MELVIN STREET GIBSON CITY, IL 60936 (40.478072, -88.370716)
## 1823                               1505 8TH ST WICHITA FALLS, TX 76301 (33.906192, -98.502159)
## 1824                           3330 MASONIC DRIVE ALEXANDRIA, LA 71301 (31.282401, -92.460848)
## 1825                          7800 US HWY 98 W MIRAMAR BEACH, FL 32550 (30.376819, -86.306823)
## 1826                                     1200 N 7TH ST OAKES, ND 58474 (46.150796, -98.090433)
## 1827                                               ONE ST JOSEPH'S DRIVE CENTERVILLE, IA 52544
## 1828                             110 SOUTH NINTH AVE YAKIMA, WA 98902 (46.597985, -120.521096)
## 1829                                   509 W 18TH ST HERMANN, MO 65041 (38.692309, -91.448615)
## 1830                                455 TOLL GATE RD WARWICK, RI 02886 (41.704478, -71.477902)
## 1831                         2825 CAPITOL AVENUE SACRAMENTO, CA 95816 (38.570258, -121.469682)
## 1832                             1325 LOCUST AVENUE FAIRMONT, WV 26554 (39.480876, -80.164069)
## 1833                      500 OSBORN BLVD SAULT SAINTE MARIE, MI 49783 (46.498099, -84.349513)
## 1834                       1805 HENNEPIN AVENUE NORTH GLENCOE, MN 55336 (44.77755, -94.151714)
## 1835                                   1 LOWER NAVY HILL ROAD (PO BOX 409CK) GARAPAN, MP 96950
## 1836                            1125 W JEFFERSON ST FRANKLIN, IN 46131 (39.480598, -86.076663)
## 1837                200 HIGH SERVICE AVENUE NORTH PROVIDENCE, RI 02904 (41.855796, -71.458498)
## 1838                              201 MARIARDEN ROAD DADEVILLE, AL 36853 (32.8187, -85.741758)
## 1839                    400 W 8TH STREET, P O BOX 399 BELOIT, KS 67420 (39.466499, -98.114235)
## 1840                                            TWO HOSPITAL DR RD#3 BOX 188 CLARION, PA 16214
## 1841                             200 HAWKINS DRIVE IOWA CITY, IA 52242 (41.661203, -91.550759)
## 1842                                  420 W HIGH ST DOWAGIAC, MI 49047 (41.982665, -86.115499)
## 1843                                        1900 PINE ABILENE, TX 79601 (32.471553, -99.73118)
## 1844                          2360 ROCKMART HIGHWAY CEDARTOWN, GA 30125 (34.014927, -85.19502)
## 1845                        824 NORTH 11TH STREET MONTEVIDEO, MN 56265 (44.953989, -95.713586)
## 1846                                629 SOUTH PLUMMER CHANUTE, KS 66720 (37.67518, -95.470896)
## 1847                       1305 WEST HIGHWAY 6/34 CAMBRIDGE, NE 69022 (40.279904, -100.179667)
## 1848                              5900 COLLEGE ROAD KEY WEST, FL 33040 (24.581573, -81.743688)
## 1849                           14500 HAYNES BLVD NEW ORLEANS, LA 70128 (30.071445, -89.949096)
## 1850                            9032 HARRY HINES BLVD DALLAS, TX 75235 (32.840161, -96.868835)
## 1851                   210 CHAMPAGNE BOULEVARD BREAUX BRIDGE, LA 70517 (30.282445, -91.890553)
## 1852                                131 HOSPITAL DRIVE SALEM, KY 42078 (37.263323, -88.228753)
## 1853                          17800 S KEDZIE AVE HAZEL CREST, IL 60429 (41.566922, -87.694399)
## 1854                               1120 MORNINGSIDE DR PERRY, GA 31069 (32.459475, -83.711227)
## 1855                                   621 3RD ST S GLASGOW, MT 59230 (48.189571, -106.636379)
## 1856                                        CARRETERA 21 1785 URB LAS LOMAS SAN JUAN, PR 00915
## 1857                    2800 E ROCK HAVEN ROAD HARRISONVILLE, MO 64701 (38.663345, -94.375321)
## 1858                           364 WHITE OAK STREET ASHEBORO, NC 27204 (35.711958, -79.814825)
## 1859                           3405 MIKE PADGETT HWY AUGUSTA, GA 30906 (33.397834, -82.005522)
## 1860                          1250 16TH STREET SANTA MONICA, CA 90404 (34.027776, -118.486315)
## 1861                          42570 SOUTH AIRPORT RD HAMMOND, LA 70403 (30.477042, -90.414264)
## 1862                             300 WILSON STREET HENDERSON, TX 75652 (32.161614, -94.796433)
## 1863                     5602 SOUTHWEST LEE BOULEVARD LAWTON, OK 73505 (34.594384, -98.461692)
## 1864                                    201 14TH ST SW LARGO, FL 33770 (27.914914, -82.802671)
## 1865                            3333 NORTH SEMINARY GALESBURG, IL 61401 (40.98702, -90.363609)
## 1866                             1621 FRONT STREET HENDERSON, NE 68371 (40.782888, -97.807361)
## 1867                              1201 7TH STREET SE DECATUR, AL 35601 (34.591168, -86.972621)
## 1868                                                          735 S 5TH AVE WAUCHULA, FL 33873
## 1869                            701 EAST 16TH STREET BERWICK, PA 18603 (41.070159, -76.230804)
## 1870                              701 MADISON AVENUE MADISON, WV 25130 (38.048636, -81.806532)
## 1871                                  4422 THIRD AVENUE BRONX, NY 10457 (40.85277, -73.892168)
## 1872                                       24 JOLIET ST DYER, IN 46311 (41.494365, -87.524166)
## 1873                         1215 LEE STREET CHARLOTTESVILLE, VA 22908 (38.031829, -78.498455)
## 1874                         5995 SPRING STREET WARM SPRINGS, GA 31830 (32.890652, -84.682911)
## 1875                                    800 TILGHMAN DR DUNN, NC 28334 (35.306555, -78.633088)
## 1876                1600 N KNISS AVENUE P O BOX 1019 LUVERNE, MN 56156 (43.671605, -96.212523)
## 1877                               104 WEST 17TH ST SCHUYLER, NE 68661 (41.454579, -97.059725)
## 1878                              365 MONTAUK AVE NEW LONDON, CT 06320 (41.336428, -72.103074)
## 1879                                      PO BOX 94949 FOLSOM AND PROSPECTOR LINCOLN, NE 68509
## 1880                               305 SOUTH 5TH STREET ENID, OK 73701 (36.394154, -97.871777)
## 1881                                777 HEMLOCK STREET MACON, GA 31201 (32.833202, -83.636553)
## 1882                                      809 BRAMLEY JETMORE, KS 67854 (38.08355, -99.881785)
## 1883                         600 ST JOHNSBURY ROAD LITTLETON, NH 03561 (44.316234, -71.825316)
## 1884                              400 TAYLOR ROAD MONTGOMERY, AL 36117 (32.376821, -86.172095)
## 1885                      6401 N FEDERAL HWY FORT LAUDERDALE, FL 33308 (26.206881, -80.108057)
## 1886                           600 PLEASANT AVENUE PARK RAPIDS, MN 56470 (46.9157, -95.061504)
## 1887                         1016 E ROOSEVELT AVENUE GRANTS, NM 87020 (35.161168, -107.826574)
## 1888                              507 HOSPITAL WAY BREWSTER, WA 98812 (48.106824, -119.782686)
## 1889                        1330 COSHOCTON ROAD MOUNT VERNON, OH 43050 (40.402482, -82.447579)
## 1890                                 3500 TOWER AVE SUPERIOR, WI 54880 (46.698195, -92.104048)
## 1891                                 147 N BRENT ST VENTURA, CA 93003 (34.274184, -119.257238)
## 1892                                   113 4TH AVE SHELL LAKE, WI 54871 (45.742102, -91.92578)
## 1893                    78 MEDICAL CENTER DRIVE FISHERSVILLE, VA 22939 (38.092332, -78.988461)
## 1894                            35 HOSPITAL ROAD BLAIRSVILLE, GA 30512 (34.884842, -83.963026)
## 1895                       7601 SOUTHCREST PARKWAY SOUTHAVEN, MS 38671 (34.968348, -89.995535)
## 1896                     500 STATE HOSPITAL DRIVE OSAWATOMIE, KS 66064 (38.513492, -94.942223)
## 1897                            107 LINCOLN STREET WORCESTER, MA 01605 (42.276182, -71.795576)
## 1898                            #1 MEDICAL PARK DRIVE BENTON, AR 72015 (34.573552, -92.584405)
## 1899                             312 CUSTER STREET NESS CITY, KS 67560 (38.457811, -99.900932)
## 1900                        8600 OLD GEORGETOWN ROAD BETHESDA, MD 20814 (38.997251, -77.10922)
## 1901                          905 NORTH 1000 WEST TREMONTON, UT 84337 (41.723768, -112.181979)
## 1902                                   1 MARCELA DR WILLITS, CA 95490 (39.389777, -123.339971)
## 1903                            600 N COLLEGE AVENUE GENESEO, IL 61254 (41.460674, -90.158405)
## 1904                         1003 WILLOW CREEK ROAD PRESCOTT, AZ 86301 (34.55938, -112.482065)
## 1905                                 4488 ROSLIN RD NEWBURGH, IN 47630 (37.990955, -87.331099)
## 1906                                       1000 KINGFISHER HOSPITAL DRIVE KINGFISHER, OK 73750
## 1907                            12303 DEPAUL DRIVE BRIDGETON, MO 63044 (38.748965, -90.432379)
## 1908                  101 CIVIC CENTER LANE LAKE HAVASU CITY, AZ 86403 (34.47998, -114.338537)
## 1909                            100 BROWN STREET CHESTERTOWN, MD 21620 (39.216845, -76.064492)
## 1910                   726 EXCHANGE STREET, SUITE 522 BUFFALO, NY 14210 (42.87459, -78.850067)
## 1911                                    1000 W 8TH AVE YUMA, CO 80759 (40.118445, -102.736654)
## 1912                                                    388 BEN BOLT AVENUE TAZEWELL, VA 24651
## 1913                                       403 E 1ST ST DIXON, IL 61021 (41.84423, -89.480131)
## 1914                  1604 ROCK PRAIRIE ROAD COLLEGE STATION, TX 77842 (30.582626, -96.291014)
## 1915                             5900 BOND AVENUE CENTREVILLE, IL 62207 (38.571324, -90.10767)
## 1916                            608 NORTH KEY AVENUE LAMPASAS, TX 76550 (31.07233, -98.185644)
## 1917                        1100 SOUTH VAN DYKE ROAD BAD AXE, MI 48413 (43.802234, -83.030815)
## 1918                           1300 ROANOKE AVENUE RIVERHEAD, NY 11901 (40.933577, -72.674317)
## 1919                                 900 CEDAR ST JULESBURG, CO 80737 (40.993743, -102.269232)
## 1920                           2521 EAST 15TH STREET CASPER, WY 82609 (42.835348, -106.295467)
## 1921                      2623 E SLAUSON AVE HUNTINGTON PARK, CA 90255 (33.989182, -118.22419)
## 1922                                  608 AVENUE B BALLINGER, TX 76821 (31.749822, -99.962302)
## 1923                              455 PLUMAS BLVD YUBA CITY, CA 95991 (39.132167, -121.613603)
## 1924                    1600 SEVENTH AVENUE SOUTH BIRMINGHAM, AL 35233 (33.503222, -86.805381)
## 1925                     2450 SOUTH TELSHOR BLVD LAS CRUCES, NM 88011 (32.291993, -106.735018)
## 1926                            271 CAREW STREET SPRINGFIELD, MA 01104 (42.115878, -72.595442)
## 1927                             2001 W 86TH ST INDIANAPOLIS, IN 46260 (39.911996, -86.196008)
## 1928                                                  BROADWAY ST & N 11TH ST QUINCY, IL 62305
## 1929                             7007 POWERS BOULEVARD PARMA, OH 44129 (41.382762, -81.731476)
## 1930                                201 WALLS DRIVE CLEBURNE, TX 76033 (32.330845, -97.439189)
## 1931                                  801 BROADWAY NORTH FARGO, ND 58122 (46.88468, -96.78773)
## 1932                               312 9TH STREET SW WAVERLY, IA 50677 (42.723668, -92.481802)
## 1933                                 3 S 4TH AVE MARSHALLTOWN, IA 50158 (42.04805, -92.905914)
## 1934                           2260 WRIGHTSBORO ROAD AUGUSTA, GA 30904 (33.467675, -82.017889)
## 1935                              20 HARTFORD STREET HOULTON, ME 04730 (46.132962, -67.842644)
## 1936                    2801 DEKALB MEDICAL PARKWAY LITHONIA, GA 30058 (33.705488, -84.146927)
## 1937                           2615 W WASHINGTON ST WAUKEGAN, IL 60085 (42.359402, -87.866605)
## 1938                               923 CARROLL AVENUE LARNED, KS 67550 (38.184161, -99.106596)
## 1939                                1600 E EVERGREEN CAMERON, MO 64429 (39.731504, -94.218308)
## 1940                           3333 BURNET AVENUE CINCINNATI, OH 45229 (39.140947, -84.500392)
## 1941                          3421 MEDICAL PARK DRIVE, MONROE, LA 71203 (32.577766, -92.06956)
## 1942                                     120 PARK AVE HEBRON, NE 68370 (40.160123, -97.593267)
## 1943                             203 SOUTH WESTERN TONASKET, WA 98855 (48.706819, -119.439597)
## 1944                           3441 DICKERSON PIKE NASHVILLE, TN 37207 (36.245301, -86.756463)
## 1945                              315 W HICKORY ST SYLACAUGA, AL 35150 (33.164666, -86.254598)
## 1946                            2906 17TH STREET SAINT CLOUD, FL 34769 (28.242414, -81.302658)
## 1947                              2401 UNIVERSITY AVE MUNCIE, IN 47303 (40.197622, -85.414363)
## 1948                                    SERGIO CUEVAS BUSTAMANTE STREET 550 SAN JUAN, PR 00936
## 1949                             570 WILLOW ROAD MENLO PARK, CA 94025 (37.462043, -122.159517)
## 1950                         2305 CHAMBLISS AVE NW CLEVELAND, TN 37311 (35.176743, -84.868591)
## 1951                                BO. RINCON SECTOR LAS LOMAS KM.3.1 CARR 14 CAYEY, PR 00737
## 1952                   12500 SOUTH FREEWAY SUITE 100 BURLESON, TX 76028 (32.57601, -97.320774)
## 1953                           6655 ALVARADO ROAD SAN DIEGO, CA 92120 (32.777136, -117.056602)
## 1954                 1700 MEDICAL CENTER PARKWAY MURFREESBORO, TN 37129 (35.85864, -86.424241)
## 1955                           168 S HOWELL STREET HILLSDALE, MI 49242 (41.911437, -84.631702)
## 1956                                      1500 AVENUE H ELY, NV 89301 (39.256065, -114.860086)
## 1957                     615 CHURCHILL-HUBBARD RD YOUNGSTOWN, OH 44505 (41.162333, -80.655596)
## 1958                                  8166 MAIN STREET HOUMA, LA 70360 (29.598537, -90.714322)
## 1959                                51 BLOSSOM STREET BOSTON, MA 02114 (42.363079, -71.066904)
## 1960                           300 WERNER STREET HOT SPRINGS, AR 71903 (34.466035, -93.066396)
## 1961                       16850 BEAR VALLEY RD VICTORVILLE, CA 92395 (34.470911, -117.297099)
## 1962                           746 JEFFERSON AVENUE SCRANTON, PA 18501 (41.412827, -75.654071)
## 1963                  1275 EAST FAIRFAX ROAD SALT LAKE CITY, UT 84103 (40.776764, -111.851117)
## 1964                               28 CRESCENT ST MIDDLETOWN, CT 06457 (41.554865, -72.647633)
## 1965         1305 W 18TH ST POST OFFICE BOX 5039 SIOUX FALLS, SD 57117 (43.536678, -96.743388)
## 1966                          620 WEST EIGHTH STREET KINSLEY, KS 67547 (37.920715, -99.419431)
## 1967                             270 WALTON WAY HOPKINSVILLE, KY 42240 (36.738035, -87.469309)
## 1968                                  935 WAYNE ROAD SAVANNAH, TN 38372 (35.22713, -88.230362)
## 1969              850 MAPLE STREET - P O BOX A MEDICAL LAKE, WA 99022 (47.572694, -117.692636)
## 1970                                  422 W WHITE ST CLINTON, IL 61727 (40.148953, -88.964616)
## 1971                                480 GALLETTI WAY SPARKS, NV 89431 (39.530157, -119.779653)
## 1972                             36475 FIVE MILE ROAD LIVONIA, MI 48154 (42.39657, -83.404577)
## 1973                                     205 OSCEOLA LAURIUM, MI 49913 (47.237538, -88.444038)
## 1974                             1301 PUNCHBOWL ST HONOLULU, HI 96813 (21.308307, -157.854965)
## 1975                          350 PARRISH STREET CANANDAIGUA, NY 14424 (42.875591, -77.288198)
## 1976                              1301 RICHMOND ROAD STAUNTON, VA 24402 (38.130999, -79.03909)
## 1977                           280 HOME OLU PLACE KAUNAKAKAI, HI 96748 (21.09376, -157.017982)
## 1978                                75 FRANCIS STREET BOSTON, MA 02115 (42.335954, -71.107661)
## 1979                     3200 PLEASANT VALLEY ROAD WEST BEND, WI 53095 (43.353318, -88.196576)
## 1980                               4500 13TH STREET GULFPORT, MS 39502 (30.366928, -89.114907)
## 1981                        4643 WAIMEA CANYON DRIVE WAIMEA, HI 96796 (21.960079, -159.670055)
## 1982                 301 EAST MIEL DE LUNA AVENUE TUCUMCARI, NM 88401 (35.156231, -103.723446)
## 1983                                  1515 UNION AVE MOBERLY, MO 65270 (39.423879, -92.414216)
## 1984                                  9 LINVILLE DRIVE PARIS, KY 40361 (38.220655, -84.238896)
## 1985                            301 PROSPECT AVENUE SYRACUSE, NY 13203 (43.055589, -76.149176)
## 1986                         201 REECEVILLE ROAD COATESVILLE, PA 19320 (40.009586, -75.790263)
## 1987                 100 SOUTHEAST 59TH STREET OKLAHOMA CITY, OK 73129 (35.406225, -97.509316)
## 1988                        77 WEST BARNEY STREET GOUVERNEUR, NY 13642 (44.338275, -75.474371)
## 1989                         440 NORTH HIAWATHA DRIVE CANTON, SD 57013 (43.304944, -96.557249)
## 1990                                                       US HWY 491 NORTH SHIPROCK, NM 87420
## 1991                          3100 CHANNING WAY IDAHO FALLS, ID 83404 (43.470276, -111.990159)
## 1992                          200 STONECREST BOULEVARD SMYRNA, TN 37167 (35.973743, -86.56376)
## 1993                                   3100 WESTON RD WESTON, FL 33331 (26.080401, -80.365467)
## 1994                               11040 N STATE RD 77 HAYWARD, WI 54843 (46.0354, -91.488465)
## 1995                             2500 BERNVILLE ROAD READING, PA 19605 (40.376717, -75.977661)
## 1996                                            987400 NEBRASKA MEDICAL CENTER OMAHA, NE 68198
## 1997                                     532 1ST ST NW BRITT, IA 50423 (43.097818, -93.806993)
## 1998                       6325 HOSPITAL PARKWAY JOHNS CREEK, GA 30097 (34.067466, -84.175187)
## 1999                            4231 HIGHWAY 1192 MARKSVILLE, LA 71351 (31.143127, -92.064433)
## 2000                                            400 PALMETTO HEALTH PARKWAY COLUMBIA, SC 29212
## 2001                                1715 26TH ST CENTRAL CITY, NE 68826 (41.10661, -98.002652)
## 2002                              1000 PINE STREET TEXARKANA, TX 75501 (33.428482, -94.047188)
## 2003                            101 CRESTVIEW AVENUE EVERGREEN, AL 36401 (31.43126, -86.94205)
## 2004                           503 MCMILLAN ROAD WEST MONROE, LA 71291 (32.513462, -92.156761)
## 2005                             564 E PIONEER DRIVE HEPPNER, OR 97836 (45.356268, -119.54763)
## 2006                       600 NORTH 7TH STREET WEST MEMPHIS, AR 72301 (35.152962, -90.175858)
## 2007                           10 WOODLAND ROAD SAINT HELENA, CA 94574 (38.54196, -122.475344)
## 2008                                1200 GRANT BLVD W WABASHA, MN 55981 (44.386416, -92.04914)
## 2009                            3801 E HWY 98 PORT SAINT JOE, FL 32456 (29.776562, -85.287605)
## 2010                   13710 ST FRANCIS BOULEVARD MIDLOTHIAN, VA 23114 (37.466398, -77.659056)
## 2011                         515 28 3/4 ROAD GRAND JUNCTION, CO 81501 (39.078475, -108.519799)
## 2012                                301 SOUTH HIGHWAY 65 MORA, MN 55051 (45.87339, -93.289955)
## 2013                               707 SHERIDAN AVENUE CODY, WY 82414 (44.526071, -109.073576)
## 2014                                2422 20TH ST SW JAMESTOWN, ND 58401 (46.88794, -98.749377)
## 2015                       1255 HIGHWAY 54 WEST FAYETTEVILLE, GA 30214 (33.450593, -84.510526)
## 2016                           2201 LEXINGTON AVENUE ASHLAND, KY 41101 (38.470401, -82.635916)
## 2017                100 GROSS CRESCENT CIRCLE FORT OGLETHORPE, GA 30742 (34.94777, -85.262756)
## 2018                                310 WOODSTOWN ROAD SALEM, NJ 08079 (39.593404, -75.445855)
## 2019                                   4110 GUADALUPE AUSTIN, TX 78751 (30.308354, -97.734571)
## 2020                                   801 5TH ST SIOUX CITY, IA 51101 (42.495329, -96.400061)
## 2021                          207 JEFFERSON STREET MANSFIELD, LA 71052 (32.035258, -93.709136)
## 2022                                 6308 EIGHTH AVE KENOSHA, WI 53143 (42.577712, -87.819285)
## 2023                              350 CROSSGATES BLVD BRANDON, MS 39042 (32.286214, -90.03596)
## 2024                         5325 FARAON STREET SAINT JOSEPH, MO 64506 (39.770201, -94.770247)
## 2025                            2000 NORTH AVENUE NORTHFIELD, MN 55057 (44.471386, -93.191159)
## 2026                                                   ONE MEDICAL PARK BLVD BRISTOL, TN 37620
## 2027                           304 FRANKLIN STREET KEOSAUQUA, IA 52565 (40.735862, -91.959043)
## 2028                               1221 WHIPPLE ST EAU CLAIRE, WI 54703 (44.812055, -91.51354)
## 2029                                   180 PARKWOOD DR ELKIN, NC 28621 (36.266391, -80.835793)
## 2030                            901 ADAMS BLVD BOULDER CITY, NV 89005 (35.968359, -114.843486)
## 2031                   5330 NORTH LOOP 1604 WEST SAN ANTONIO, TX 78249 (29.591481, -98.590438)
## 2032                          235 NORTH PEARL STREET BROCKTON, MA 02301 (42.09707, -71.065645)
## 2033                          921 E. HIGHWAY 36 SMITH CENTER, KS 66967 (39.785249, -98.772768)
## 2034                            451 HIGHWAY 13 SOUTH WAVERLY, TN 37185 (36.075057, -87.792741)
## 2035                            355 BARD AVENUE STATEN ISLAND, NY 10304 (40.63551, -74.106693)
## 2036                       2520 N UNIVERSITY AVENUE LAFAYETTE, LA 70507 (30.27139, -92.047095)
## 2037                           2316 E MEYER BLVD KANSAS CITY, MO 64132 (39.007169, -94.558731)
## 2038                        191 NORTH MAIN STREET WELLSVILLE, NY 14895 (42.122878, -77.949784)
## 2039                             45 ST LAWRENCE DRIVE TIFFIN, OH 44883 (41.105138, -83.217094)
## 2040                          342 FAIRVIEW STREET SILVERTON, OR 97381 (45.004564, -122.790746)
## 2041                                611 ALCORN DRIVE CORINTH, MS 38834 (34.935867, -88.558648)
## 2042                                2701 17TH ST ROCK ISLAND, IL 61201 (41.483649, -90.572799)
## 2043                                  727 EAST 1ST ST MINDEN, NE 68959 (40.495778, -98.943203)
## 2044                               126 HIGHWAY 280 W AMERICUS, GA 31719 (32.06425, -84.255376)
## 2045                         94220 FOURTH STREET GOLD BEACH, OR 97444 (42.411659, -124.418658)
## 2046                            4810 NORTH LOOP 289 LUBBOCK, TX 79416 (33.602527, -101.914287)
## 2047                                 1100 MERCER AVE DECATUR, IN 46733 (40.817966, -84.912535)
## 2048                        2500 METROHEALTH DRIVE CLEVELAND, OH 44109 (41.462239, -81.697928)
## 2049                               140 WEST MAIN STREET CUBA, NY 14727 (42.213341, -78.288139)
## 2050                                                    ROUTE 7 BOX R50 PHILADELPHIA, MS 39350
## 2051                                904 SCIOTO STREET URBANA, OH 43078 (40.106725, -83.730252)
## 2052                             1260 E SR 205 COLUMBIA CITY, IN 46725 (41.160261, -85.466571)
## 2053                                 800 SCHOOL ST CARROLLTON, IL 62016 (39.29617, -90.412303)
## 2054                               421 CHEW STREET ALLENTOWN, PA 18102 (40.607987, -75.468045)
## 2055                             2070 CLINTON AVENUE ALAMEDA, CA 94501 (37.76323, -122.253541)
## 2056                                         W180 N8085 TOWN HALL RD MENOMONEE FALLS, WI 53051
## 2057                             216 ANAMARIA DR RAPID CITY, SD 57703 (44.046035, -103.222912)
## 2058                                      275 W 12TH ST PERU, IN 46970 (40.757358, -86.083146)
## 2059                          720 ESKENAZI AVENUE INDIANAPOLIS, IN 46202 (39.78053, -86.17345)
## 2060                          309 ELEVENTH STREET CARROLLTON, KY 41008 (38.679904, -85.169314)
## 2061                    9850 W ST LUKES DRIVE STE 250 NAMPA, ID 83687 (43.616618, -116.590734)
## 2062                              1710 BARTON ROAD REDLANDS, CA 92373 (34.048329, -117.213308)
## 2063                            525 WEST MAIN STREET MELROSE, MN 56352 (45.674916, -94.823435)
## 2064                               4802 TENTH AVENUE BROOKLYN, NY 11219 (40.63908, -73.998668)
## 2065                                                 200 MED CENTER DRIVE FORT PAYNE, AL 35968
## 2066                              1400 E UNION ST GREENVILLE, MS 38704 (33.409907, -91.035243)
## 2067                           1 MEDICAL CENTER DRIVE GALENA, IL 61036 (42.446622, -90.456972)
## 2068                          701 EAST CYPRESS STREET SULPHUR, LA 70663 (30.231074, -93.36929)
## 2069                                2400 LEE HIGHWAY PULASKI, VA 24301 (37.068744, -80.758807)
## 2070                             3901 LONE TREE WAY ANTIOCH, CA 94509 (37.982295, -121.804681)
## 2071                     300 WEST HUTCHINGS STREET WINTERSET, IA 50273 (41.328816, -94.016963)
## 2072                         549 EAST FAIR STREET BLOOMSBURG, PA 17815 (41.008431, -76.453193)
## 2073                             111 EAST 210TH STREET BRONX, NY 10467 (40.879777, -73.879975)
## 2074                              172 FOURTH STREET SE HURON, SD 57350 (44.362035, -98.210751)
## 2075                             CARR 3 KM 8 3 AVE 65TH INFANTERIA BOX 6021 CAROLINA, PR 00984
## 2076                               1600 WEST 24TH ST PUEBLO, CO 81003 (38.290987, -104.631617)
## 2077                        9330 MEDICAL PLAZA DR CHARLESTON, SC 29406 (32.975128, -80.072274)
## 2078                               2605 N LEBANON ST LEBANON, IN 46052 (40.076909, -86.475209)
## 2079                            850 W IRVING PARK RD CHICAGO, IL 60613 (41.954556, -87.650899)
## 2080                                    702 1ST ST SW CROSBY, ND 58730 (48.906708, -103.29823)
## 2081                                98 SHERRY AVE PARK FALLS, WI 54552 (45.931098, -90.441972)
## 2082                           523 NORTH 3RD STREET BRAINERD, MN 56401 (46.362509, -94.205143)
## 2083          700 N SPRING ST, BOX 1010-C-ADM BLDG CALIENTE, NV 89008 (37.622281, -114.511824)
## 2084                         10800 KNIGHTS ROAD PHILADELPHIA, PA 19114 (40.070788, -74.981429)
## 2085                             2151 W SPRING STREET MONROE, GA 30655 (33.798635, -83.746316)
## 2086                              190 ARROWHEAD DR EVANSTON, WY 82930 (41.242214, -110.991336)
## 2087                              710 CENTER STREET COLUMBUS, GA 31901 (32.481728, -84.982008)
## 2088                              251 FIFTH STREET EAST TRACY, MN 56175 (44.232237, -95.60675)
## 2089                         300 SIOUX VALLEY DRIVE CHEROKEE, IA 51012 (42.759282, -95.546962)
## 2090                               285 BIELBY RD LAWRENCEBURG, IN 47025 (39.111319, -84.88187)
## 2091                                 301 YADKIN ST ALBEMARLE, NC 28001 (35.362606, -80.194398)
## 2092                            130 MEDICAL CIRCLE NASHVILLE, AR 71852 (33.950926, -93.880772)
## 2093                              2011 WEST BROADWAY SULPHUR, OK 73086 (34.506333, -96.996005)
## 2094                              49 ROBINWOOD AVENUE BOSTON, MA 02130 (42.316184, -71.111883)
## 2095                                    ONE BARNES-JEWISH HOSPITAL PLAZA SAINT LOUIS, MO 63110
## 2096                             263 FARMINGTON AVE FARMINGTON, CT 06032 (41.73509, -72.79582)
## 2097                               120 NORTH OAK ST HINSDALE, IL 60521 (41.805329, -87.920062)
## 2098                      710 N WALNUT STREET MEDICINE LODGE, KS 67104 (37.289877, -98.577659)
## 2099                     1420 TUSCULUM BOULEVARD GREENEVILLE, TN 37745 (36.175393, -82.790893)
## 2100                              915 ANDERSON DRIVE ABERDEEN, WA 98520 (46.9796, -123.846387)
## 2101                                                   ONE HOSPITAL DR SE HUNTSVILLE, AL 35801
## 2102                    1402 E COUNTY LINE RD S INDIANAPOLIS, IN 46227 (39.635538, -86.133908)
## 2103                    459 GA HIGHWAY 119 SOUTH SPRINGFIELD, GA 31329 (32.364734, -81.321664)
## 2104                        1906 BLAKE AVE GLENWOOD SPRINGS, CO 81601 (39.532859, -107.322794)
## 2105                          5000 HENNESSY BLVD BATON ROUGE, LA 70808 (30.401318, -91.111528)
## 2106                                500 THORPE STREET LAKIN, KS 67860 (37.945971, -101.251036)
## 2107                        8080 BLUEBONNET BLVD BATON ROUGE, LA 70810 (30.376565, -91.099333)
## 2108                                 615 W NURSERY ST BUTLER, MO 64730 (38.249611, -94.343391)
## 2109                          200 UNIVERSITY BLVD TUSCALOOSA, AL 35401 (33.208009, -87.537359)
## 2110                                303 AVENUE I CHILLICOTHE, TX 79225 (34.255239, -99.515987)
## 2111                                8555 TAFT ST MERRILLVILLE, IN 46410 (41.46219, -87.364921)
## 2112                               225 MEMORIAL DRIVE BERLIN, WI 54923 (43.977616, -88.941843)
## 2113                          203 SOUTH DAISY STREET SALMON, ID 83467 (45.173311, -113.890918)
## 2114                              614 MEMORIAL DRIVE CHILTON, WI 53014 (44.025439, -88.154399)
## 2115                             321 MITCHELL AVE BATESVILLE, IN 47006 (39.306141, -85.222703)
## 2116          100 NORTH MARIO CAPECCHI DRIVE SALT LAKE CITY, UT 84113 (40.771331, -111.840344)
## 2117                             5300 MILITARY ROAD LEWISTON, NY 14092 (43.154652, -79.030462)
## 2118                         2400 EAST 4TH ST NATIONAL CITY, CA 91950 (32.686336, -117.083243)
## 2119                              1000 HIGHWAY 12 HETTINGER, ND 58639 (46.001323, -102.628239)
## 2120                               300 NORTH 2ND ST O' NEILL, NE 68763 (42.460338, -98.651118)
## 2121                               200 SOUTH A ST HAWTHORNE, NV 89415 (38.516632, -118.628452)
## 2122                                255 E BONITA AVE POMONA, CA 91767 (34.096242, -117.746861)
## 2123                         10 EAST HOSPITAL STREET MANNING, SC 29102 (33.687866, -80.211767)
## 2124                                                   101 ST ANDREWS LANE GLEN COVE, NY 11542
## 2125             305 S STATE ST POST OFFICE BOX 4450 ABERDEEN, SD 57401 (45.461795, -98.47935)
## 2126                      6200 OVERTON RIDGE BLVD FORT WORTH, TX 76132 (32.680018, -97.419916)
## 2127                   1000 W PINHOOK RD SUITE 100 LAFAYETTE, LA 70503 (30.204253, -92.013468)
## 2128                            468 CADIEUX RD GROSSE POINTE, MI 48230 (42.384197, -82.915386)
## 2129                               705 S GRAND AVE NASHVILLE, IL 62263 (38.339118, -89.390016)
## 2130                                1233 EAST 2ND ST CASPER, WY 82601 (42.848718, -106.308753)
## 2131                              1451 N GARDNER ST SCOTTSBURG, IN 47170 (38.705525, -85.7852)
## 2132                            1350 BULL LEA ROAD LEXINGTON, KY 40511 (38.084993, -84.497495)
## 2133              1000 NORTH VILLAGE AVENUE ROCKVILLE CENTRE, NY 11570 (40.688191, -73.633236)
## 2134                     27100 CHARDON ROAD RICHMOND HEIGHTS, OH 44143 (41.581043, -81.490272)
## 2135                              1726 SHAWANO AVE GREEN BAY, WI 54303 (44.532184, -88.066561)
## 2136                             700 HIGH STREET WILLIAMSPORT, PA 17701 (41.24547, -77.014432)
## 2137                  1959 NE PACIFIC ST BOX 356151 SEATTLE, WA 98195 (47.650506, -122.307482)
## 2138                               100 ROCKFORD DRIVE NEWARK, DE 19713 (39.695208, -75.660446)
## 2139           3515 BROADWAY AVE POST OFFICE BOX 7600 YANKTON, SD 57078 (42.915206, -97.39766)
## 2140                     9455 W WATERTOWN PLANK RD MILWAUKEE, WI 53226 (43.044831, -88.031161)
## 2141                           1530 NORWAY AVENUE HUNTINGTON, WV 25709 (38.411386, -82.413847)
## 2142                                715 DELMORE DRIVE ROSEAU, MN 56751 (48.839822, -95.759947)
## 2143                                   1111 DUFF AVENUE AMES, IA 50010 (42.032391, -93.610624)
## 2144                               14662 NEWPORT AVE TUSTIN, CA 92780 (33.730773, -117.829485)
## 2145                           5730 W ROOSEVELT ROAD CHICAGO, IL 60644 (41.865559, -87.767793)
## 2146                                    1000 W 10TH ST ROLLA, MO 65401 (37.951442, -91.784993)
## 2147                          1300 MASSACHUSETTS AVENUE TROY, NY 12180 (42.743977, -73.676415)
## 2148                                     4600 38TH ST COLUMBUS, NE 68601 (41.453273, -97.3849)
## 2149                  1080 NORTH ELLINGTON PARKWAY LEWISBURG, TN 37091 (35.464421, -86.786652)
## 2150                              1000 TENTH AVENUE NEW YORK, NY 10019 (40.770129, -73.987846)
## 2151                     100 MEDICAL CENTER WAY SOMERS POINT, NJ 08244 (39.314673, -74.592772)
## 2152                            3302 GALLOWS RD FALLS CHURCH, VA 22042 (38.857055, -77.225633)
## 2153                         9400 RHEA COUNTY HIGHWAY DAYTON, TN 37321 (35.530374, -84.982334)
## 2154                         111 SOUTH GRANT AVENUE COLUMBUS, OH 43215 (39.960866, -82.990621)
## 2155                     807 SOUTH ISABELLA STREET SYLVESTER, GA 31791 (31.512385, -83.840673)
## 2156                     1800 SPRING RIDGE DRIVE SUSANVILLE, CA 96130 (40.438197, -120.627429)
## 2157                            95 BRADHURST AVENUE VALHALLA, NY 10595 (41.093141, -73.801998)
## 2158                               433 WEST HIGH STREET BRYAN, OH 43506 (41.47461, -84.556824)
## 2159                             1407 WHISENANT DRIVE DUNCAN, OK 73533 (34.520014, -97.974978)
## 2160                                   172 KINSLEY ST NASHUA, NH 03060 (42.750441, -71.479886)
## 2161                                              ONE HAMILTON HEALTH PLACE HAMILTON, NJ 08690
## 2162                                2520 TROY DRIVE WILMINGTON, NC 28401 (34.1949, -77.928549)
## 2163                            17700 SE 272ND ST COVINGTON, WA 98042 (47.358063, -122.104227)
## 2164                               1250 E ALMOND AVE MADERA, CA 93637 (36.945427, -120.045467)
## 2165                                 539 SOUTHEAST 2ND TULIA, TX 79088 (34.535571, -101.75641)
## 2166                      200 ABRAHAM FLEXNER WAY LOUISVILLE, KY 40202 (38.249328, -85.751137)
## 2167                  1926 OAK STREET, PO BOX 389 UNIONVILLE, MO 63565 (40.482025, -93.005987)
## 2168                               800 WHEELING AVE GLEN DALE, WV 26038 (39.946169, -80.75427)
## 2169                           6410 MASONIC DRIVE ALEXANDRIA, LA 71301 (31.251902, -92.481496)
## 2170                        1912 ALABAMA HIGHWAY 157 CULLMAN, AL 35058 (34.198587, -86.805641)
## 2171                             1717 SOUTH J STREET TACOMA, WA 98405 (47.245469, -122.448757)
## 2172                               3651 WHEELER ROAD AUGUSTA, GA 30909 (33.482477, -82.091092)
## 2173                                  250 MERCY DRIVE DUBUQUE, IA 52001 (42.493145, -90.67435)
## 2174                             6200 SW 73RD ST SOUTH MIAMI, FL 33143 (25.703051, -80.293367)
## 2175                       3000 CORAL HILLS DR CORAL SPRINGS, FL 33065 (26.268779, -80.254161)
## 2176                            301 E ST JOSEPH ST GREEN BAY, WI 54301 (44.483752, -88.017432)
## 2177                               5601 WARREN PARKWAY FRISCO, TX 75034 (33.10671, -96.837919)
## 2178                                1200 N ELM ST GREENSBORO, NC 27401 (36.090652, -79.788815)
## 2179                               254 HIGHWAY 3048 RAYVILLE, LA 71269 (32.463973, -91.747879)
## 2180                            601 SOUTH 8TH STREET GRIFFIN, GA 30223 (33.239215, -84.265671)
## 2181                            1100 E MICHIGAN AVE GRAYLING, MI 49738 (44.667251, -84.707939)
## 2182                          1150 STATE STREET PHILLIPSBURG, KS 67661 (39.755885, -99.313576)
## 2183                                     922 E CALL ST STARKE, FL 32091 (29.941907, -82.10165)
## 2184                                                   BOX 158 ROUTE 17M NEW HAMPTON, NY 10958
## 2185                                 300 SOUTH STREET BROOKLINE, MA 02467 (42.297787, -71.151)
## 2186                            317 MCWILLIAMS AVENUE CAMDEN, AL 36726 (31.996611, -87.299424)
## 2187                            201 EIGHTH AVENUE SE OELWEIN, IA 50662 (42.675419, -91.902613)
## 2188                             1411 DENVER AVENUE DALHART, TX 79022 (36.051569, -102.521906)
## 2189                        1275 MARVIN HANCOCK DRIVE JASPER, TX 75951 (30.907639, -94.008533)
## 2190                              1400 EIGHTH AVE FORT WORTH, TX 76104 (32.730288, -97.343729)
## 2191                         1370 WEST D ST NORTH WILKESBORO, NC 28659 (36.158465, -81.157013)
## 2192                                          85O GOV CARLOS G CAMACHO ROAD TAMUNING, GU 96913
## 2193                              1222 E WOODLAND AVE BARRON, WI 54812 (45.398369, -91.840668)
## 2194                               760 HOSPITAL CIRCLE, POST OFFICE BOX 760 BROWNING, MT 59417
## 2195                             809 TURNPIKE AVE CLEARFIELD, PA 16830 (41.033012, -78.449999)
## 2196                                  823 HIGHWAY 589 PURVIS, MS 39475 (31.166355, -89.423942)
## 2197                           1625 MEDICAL CENTER DR EL PASO, TX 79902 (31.77867, -106.47965)
## 2198                             135 S PROSPECT ST YPSILANTI, MI 48198 (42.237383, -83.601916)
## 2199                                   2320 E 93RD ST CHICAGO, IL 60617 (41.726211, -87.56725)
## 2200                                1220 DEWEY AVE WAUWATOSA, WI 53213 (43.046726, -88.009543)
## 2201                       1211 WILMINGTON AVENUE NEW CASTLE, PA 16105 (41.013452, -80.351116)
## 2202                               733 CEDAR ST GARBERVILLE, CA 95542 (40.101491, -123.792756)
## 2203                            1026 RIVER OAKS DRIVE FLOWOOD, MS 39232 (32.32583, -90.106656)
## 2204                             975 S FAIRMONT AVENUE LODI, CA 95240 (38.121634, -121.285787)
## 2205                       99 EAST STATE STREET GLOVERSVILLE, NY 12078 (43.068029, -74.330817)
## 2206                        2800 MELROSE AVENUE BOSSIER CITY, LA 71111 (32.546972, -93.704637)
## 2207                     5950 STATE ROUTE 6 WEST TUNKHANNOCK, PA 18657 (41.576651, -75.969825)
## 2208                 4600 SPOTSYLVANIA PARKWAY FREDERICKSBURG, VA 22408 (38.219496, -77.49645)
## 2209                                                     12935 S GREGORY BLUE ISLAND, IL 60406
## 2210                                 1495 FRAZIER ROAD RUSTON, LA 71270 (32.57647, -92.601952)
## 2211                           1400 E CHURCH ST SANTA MARIA, CA 93454 (34.952117, -120.412494)
## 2212                                 1700 COFFEE RD MODESTO, CA 95355 (37.668701, -120.975674)
## 2213                             800 EAST 9TH AVENUE T OR C, NM 87901 (33.139104, -107.241975)
## 2214                        6600 BRUCEVILLE ROAD SACRAMENTO, CA 95823 (38.471647, -121.423802)
## 2215                                  1314 19TH AVE MERIDIAN, MS 39301 (32.370664, -88.697779)
## 2216                                  300 22ND AVE BROOKINGS, SD 57006 (44.307751, -96.768199)
## 2217                               301 BECKER AVE SW WILLMAR, MN 56201 (45.120514, -95.046366)
## 2218                           2315 E MAIN STREET NEW IBERIA, LA 70562 (29.989047, -91.785783)
## 2219                         2500 MERCED STREET SAN LEANDRO, CA 94577 (37.706524, -122.169447)
## 2220                       3249 SOUTH OAK PARK AVENUE BERWYN, IL 60402 (41.832002, -87.792783)
## 2221                                         3000 ST MATTHEWS RD BOX 1806 ORANGEBURG, SC 29115
## 2222                  849 SOUTH THREE NOTCH STREET ANDALUSIA, AL 36420 (31.297462, -86.495599)
## 2223                                  901 ADAMS STREET AFTON, WY 83110 (42.71725, -110.931461)
## 2224                               320 POMFRET STREET PUTNAM, CT 06260 (41.907746, -71.914692)
## 2225                            5900 BROCKTON AVE RIVERSIDE, CA 92506 (33.962398, -117.395782)
## 2226                               429 WEST ELM STREET HOBART, OK 73651 (35.036829, -99.09834)
## 2227                             951 EAST MARKET STREET CADIZ, OH 43907 (40.257295, -80.97864)
## 2228                                                       617 DOCTORS STREET SPARTA, NC 28675
## 2229                      3600 NW SAMARITAN DRIVE CORVALLIS, OR 97330 (44.604624, -123.251104)
## 2230                              158 WEST MAIN ROAD CONNEAUT, OH 44030 (41.93692, -80.586459)
## 2231                                315 KNAPP ST WOLF POINT, MT 59201 (48.100893, -105.641138)
## 2232                     2250 26TH STREET NORTHWEST OWATONNA, MN 55060 (44.109798, -93.236301)
## 2233                       751 SAPPINGTON BRIDGE RD SULLIVAN, MO 63080 (38.195574, -91.169288)
## 2234                                   215 SANDY ST EKALAKA, MT 59324 (45.887724, -104.548785)
## 2235                                1208 LUTHER STREET EADS, CO 81036 (38.480198, -102.784468)
## 2236        1430 HIGHWAY 4 EAST / P O BOX 6000 HOLLY SPRINGS, MS 38635 (34.786835, -89.415027)
## 2237                                     310 W MAIN ST SPARTA, WI 54656 (43.944395, -90.81516)
## 2238                         200 NAT WASHINGTON WAY EPHRATA, WA 98823 (47.315742, -119.548125)
## 2239                            35 MILES STREET DAMARISCOTTA, ME 04543 (44.026199, -69.527164)
## 2240                          550 MIRABEAU STREET GREENFIELD, OH 45123 (39.349315, -83.388008)
## 2241                          2600 SOUTHWEST HOLDEN SEATTLE, WA 98126 (47.533708, -122.366396)
## 2242                            809 E MARION AVE PUNTA GORDA, FL 33950 (26.940682, -82.041788)
## 2243                              200 N RIVER STREET CLAXTON, GA 30417 (32.164133, -81.900403)
## 2244                                   1 COOPER PLAZA CAMDEN, NJ 08103 (39.940802, -75.115757)
## 2245                                                    ONE ST FRANCIS DR GREENVILLE, SC 29601
## 2246                                  802 2ND ST SE CUT BANK, MT 59427 (48.62878, -112.326345)
## 2247                              6071 W OUTER DRIVE DETROIT, MI 48235 (42.420102, -83.181471)
## 2248          9301 NORTH CENTRAL EXPRESSWAY SUITE 100 DALLAS, TX 75231 (32.875179, -96.770611)
## 2249                                 1719 E 19TH AVE DENVER, CO 80218 (39.746089, -104.967175)
## 2250               600 PEMBERTON-BROWNS MILLS ROAD PEMBERTON, NJ 08068 (39.966557, -74.640518)
## 2251                        447 NORTH MAIN STREET PITTSFIELD, ME 04967 (44.790826, -69.371269)
## 2252                             275 SANDWICH STREET PLYMOUTH, MA 02360 (41.944246, -70.64472)
## 2253                             350 BONAR AVENUE WAYNESBURG, PA 15370 (39.900605, -80.173929)
## 2254                                                        ONE GUTHRIE SQUARE SAYRE, PA 18840
## 2255                                  615 CLINIC DR LONGVIEW, TX 75605 (32.536676, -94.734496)
## 2256                           4697 HARRISON STREET BELLAIRE, OH 43906 (40.029885, -80.740897)
## 2257                           45 PLATEAU STREET BRYSON CITY, NC 28713 (35.435123, -83.444688)
## 2258                               200 STADIUM DRIVE SEYMOUR, TX 76380 (33.589788, -99.247697)
## 2259                      2501 NORTH THIRD STREET HARRISBURG, PA 17110 (40.286138, -76.899039)
## 2260                                1501 BURNET DR BROWNWOOD, TX 76801 (31.680211, -98.988158)
## 2261                           300 NORTH AVENUE BATTLE CREEK, MI 49017 (42.330618, -85.180404)
## 2262                     5252 WEST UNIVERSITY DRIVE MC KINNEY, TX 75071 (33.218404, -96.68102)
## 2263                            9205 SW BARNES ROAD PORTLAND, OR 97225 (45.50882, -122.770657)
## 2264                               1901 SW 172ND AVE MIRAMAR, FL 33029 (25.991087, -80.376005)
## 2265                                 1850 STATE ST NEW ALBANY, IN 47150 (38.300506, -85.83508)
## 2266                              2222 WELBORN STREET DALLAS, TX 75219 (32.803251, -96.813357)
## 2267                            1041 45TH ST WEST PALM BEACH, FL 33407 (26.753243, -80.066861)
## 2268                                  9191 GRANT ST THORNTON, CO 80229 (39.86438, -104.984783)
## 2269                                    10 KRUGER RD PLAINS, MT 59859 (47.469539, -114.891908)
## 2270                              100 EAGLEVILLE RD EAGLEVILLE, PA 19408 (40.15588, -75.41192)
## 2271                        239 BOWLING GREEN ROAD LEXINGTON, MS 39095 (33.111077, -90.029741)
## 2272                   4305 NEW SHEPHERDSVILLE ROAD BARDSTOWN, KY 40004 (37.863995, -85.52376)
## 2273                         400 EAST TICKLE STREET DYERSBURG, TN 38024 (36.047358, -89.38059)
## 2274                             1500 STATE STREET LEXINGTON, MO 64067 (39.189146, -93.877065)
## 2275                            2050 MERCANTILE DRIVE LELAND, NC 28451 (34.261494, -78.064727)
## 2276                              16237 VENTURA BLVD ENCINO, CA 91436 (34.156826, -118.486948)
## 2277                      1303 NORTH MAIN STREET CEDAR CITY, UT 84721 (37.700591, -113.063985)
## 2278                        1710 LAFAYETTE RD CRAWFORDSVILLE, IN 47933 (40.066073, -86.908085)
## 2279                                 162 LEGACY POINT CLAYTON, GA 30525 (34.554075, -83.54423)
## 2280                           2415 PARKWOOD DRIVE BRUNSWICK, GA 31520 (31.173785, -81.484516)
## 2281                               1017 WEST 7TH STREET WRAY, CO 80758 (40.075405, -102.23466)
## 2282                       1906 BELLEVIEW AVENUE, SE ROANOKE, VA 24014 (37.252046, -79.942297)
## 2283                         900 WEST KINGSHIGHWAY PARAGOULD, AR 72450 (36.052593, -90.499051)
## 2284                                       P O BOX 489, 704 NORTH THIRD ST PLAINVIEW, NE 68769
## 2285                          111 17TH AVENUE EAST ALEXANDRIA, MN 56308 (45.872669, -95.37638)
## 2286                         200 WEST ARBOR DRIVE SAN DIEGO, CA 92103 (32.753717, -117.165914)
## 2287                              510 4TH STREET SOUTH FARGO, ND 58103 (46.869348, -96.785691)
## 2288                                     BARRIO MONACILLOS,CENTRO MEDICO RIO PIEDRAS, PR 00936
## 2289                  990 OAK RIDGE TURNPIKE BOX 529 OAK RIDGE, TN 37830 (36.023397, -84.2439)
## 2290                                7901 FROST ST SAN DIEGO, CA 92123 (32.800255, -117.154133)
## 2291                       2000 W BALTIMORE STREET BALTIMORE, MD 21223 (39.288027, -76.648633)
## 2292                                          P O BOX 100, 100 HOSPITAL DRIVE PENDER, NE 68047
## 2293                            2460 WASHINGTON ROAD THOMSON, GA 30824 (33.523226, -82.504478)
## 2294                                 801 BEDELL AVE DEL RIO, TX 78840 (29.374425, -100.893034)
## 2295                       908 10TH AVENUE SOUTHWEST QUINCY, WA 98848 (47.230954, -119.869181)
## 2296                        9801 FRONTIER AVE SE SNOQUALMIE, WA 98065 (47.512309, -121.885917)
## 2297                               4000 SPENCER HWY PASADENA, TX 77504 (29.665163, -95.183799)
## 2298                                                    CARRETERA #2 KM 11 7 BAYAMON, PR 00960
## 2299                                   601 E 14TH ST SEDALIA, MO 65302 (38.699051, -93.222089)
## 2300                 1220 NORTH GLENN ENGLISH STREET CORDELL, OK 73632 (35.302524, -98.987595)
## 2301                               204 MEDICAL DRIVE LAFAYETTE, TN 37083 (36.5197, -86.025362)
## 2302                      1454 N COUNTY ROAD 2050 E CARTHAGE, IL 62321 (40.409306, -91.111319)
## 2303                         2000 CAMPBELL DRIVE TORRINGTON, WY 82240 (42.081765, -104.191509)
## 2304                                       200 W OLLIE LLANO, TX 78643 (30.743345, -98.677996)
## 2305                              800 KIRNWOOD DRIVE DE SOTO, TX 75115 (32.642888, -96.875168)
## 2306                              2501 W 26TH ST SIOUX FALLS, SD 57105 (43.529458, -96.756208)
## 2307                              50 ST LAWRENCE DRIVE TIFFIN, OH 44883 (41.105114, -83.21715)
## 2308                                1401 WEST LOCUST STILWELL, OK 74960 (35.808529, -94.64301)
## 2309                              530 NE GLEN OAK AVE PEORIA, IL 61637 (40.702366, -89.589985)
## 2310                          1100 MARSHALL WAY PLACERVILLE, CA 95667 (38.724483, -120.790643)
## 2311                                 340 GETWELL DRIVE MARKS, MS 38646 (34.247464, -90.277059)
## 2312                3333 N FOSTER MALDONADO BLVD EAGLE PASS, TX 78852 (28.711418, -100.454105)
## 2313                       1485 SOUTH HIGHWAY 40 HEBER CITY, UT 84032 (40.489047, -111.409218)
## 2314                            201 SETON PARKWAY ROUND ROCK, TX 78664 (30.567944, -97.652784)
## 2315                    1701 SANTA ANITA AVE SOUTH EL MONTE, CA 91733 (34.048705, -118.042452)
## 2316                    200 J AVE POST OFFICE BOX 517 EUREKA, SD 57437 (45.767196, -99.614453)
## 2317                         232 S WOODS MILL RD CHESTERFIELD, MO 63017 (38.653066, -90.50592)
## 2318                            4040 NORTH BLVD. BATON ROUGE, LA 70806 (30.448449, -91.147599)
## 2319                            361 RANDOLPH STREET CUTHBERT, GA 39840 (31.774823, -84.793606)
## 2320                               12033 AGENCY ROAD PARKER, AZ 85344 (34.146494, -114.301314)
## 2321                           1100 HOLLENBACK LN DEER LODGE, MT 59722 (46.412634, -112.72633)
## 2322                       1653 WEST CONGRESS PARKWAY CHICAGO, IL 60612 (41.875166, -87.66851)
## 2323                           105 HIGHWAY 80 EAST DEMOPOLIS, AL 36732 (32.503676, -87.836744)
## 2324           85 SIERRA PARK ROAD PO BOX 660 MAMMOTH LAKES, CA 93546 (37.645071, -118.963911)
## 2325                           1555 LONG POND ROAD ROCHESTER, NY 14626 (43.191544, -77.701464)
## 2326                                                        HIGHWAY 281 SOUTH BURNET, TX 78611
## 2327                         2776 PACIFIC AVENUE LONG BEACH, CA 90806 (33.807201, -118.193721)
## 2328                                   2650 RIDGE AVE EVANSTON, IL 60201 (42.0653, -87.683293)
## 2329                       1950 S HAWTHORNE RD WINSTON-SALEM, NC 27103 (36.078159, -80.295715)
## 2330                     52579 HIGHWAY 51 SOUTH INDEPENDENCE, LA 70443 (30.622194, -90.496999)
## 2331                                      1406 Q ST FRANKLIN, NE 68939 (40.101552, -98.954353)
## 2332                                              ONE CHIMNEY POINT DRIVE OGDENSBURG, NY 13669
## 2333                      225 E CHICAGO AVE, BOX 140 CHICAGO, IL 60611 (41.896746, -87.621906)
## 2334                             406 WEST OAK STREET TITUSVILLE, PA 16354 (41.6332, -79.67972)
## 2335                      2026 S JACKSON STREET JACKSONVILLE, TX 75766 (31.937954, -95.249429)
## 2336                             501 NORTH NAVAJO DRIVE PAGE, AZ 86040 (36.91696, -111.463186)
## 2337                               765 PIERCE DRIVE COLUMBUS, OH 43223 (39.947236, -83.018391)
## 2338                            180 FLOYD AVENUE ROCKY MOUNT, VA 24151 (36.994584, -79.889813)
## 2339                                                              PO BOX 497 REDLAKE, MN 56671
## 2340                        826 NORTH 8TH STREET ESTHERVILLE, IA 51334 (43.410596, -94.833956)
## 2341                               301 HENRY ST NORTH VERNON, IN 47265 (39.011259, -85.640374)
## 2342                           606 N W 7TH STREET POCAHONTAS, IA 50574 (42.740822, -94.678778)
## 2343                                  410 W 16TH AVE TYNDALL, SD 57066 (42.991253, -97.867896)
## 2344                              915 EAST 1ST STREET DULUTH, MN 55805 (46.797027, -92.087038)
## 2345                       400 ANNANDALE BOULEVARD ANNANDALE, MN 55302 (45.254576, -94.101386)
## 2346                              1000 SOUTH BYRD TISHOMINGO, OK 73460 (34.222445, -96.675294)
## 2347                             18101 OAKWOOD BLVD DEARBORN, MI 48124 (42.291912, -83.211951)
## 2348                                 1001 GAUSE BLVD SLIDELL, LA 70458 (30.284651, -89.770421)
## 2349                                715 RICHLAND MALL ONTARIO, OH 44906 (40.772408, -82.59326)
## 2350                        624 HOSPITAL DRIVE MOUNTAIN HOME, AR 72653 (36.343067, -92.395905)
## 2351                        1901 TATE SPRINGS ROAD LYNCHBURG, VA 24501 (37.416648, -79.169753)
## 2352                                     CALLE JOSE C VASQUEZ BO. CAONILLAS AIBONITO, PR 00705
## 2353                                               P O BOX 193, 1900 F STREET GENEVA, NE 68361
## 2354                              27200 CALAROGA AVE HAYWARD, CA 94545 (37.63291, -122.089742)
## 2355                          14901 BROSCHART ROAD ROCKVILLE, MD 20850 (39.100404, -77.200989)
## 2356                          100 ST LUKE'S LANE STROUDSBURG, PA 18360 (40.997966, -75.261786)
## 2357                      4401 RIVER CHASE DRIVE PHENIX CITY, AL 36867 (32.509045, -85.005696)
## 2358               2550 SISTER MARY COLUMBA DRIVE RED BLUFF, CA 96080 (40.148834, -122.218303)
## 2359                      4800 EAST JOHNSON AVENUE JONESBORO, AR 72401 (35.864204, -90.639107)
## 2360                 251 WOOD LAKE DRIVE SOUTHEAST ROCHESTER, MN 55904 (43.973447, -92.456949)
## 2361                     100 MEDICAL CENTER DRIVE SPRINGFIELD, OH 45504 (39.927624, -83.81574)
## 2362                      2400 NORTH ROCKTON AVENUE ROCKFORD, IL 61103 (42.298434, -89.096782)
## 2363                      834 SHERIDAN STREET PORT TOWNSEND, WA 98368 (48.105539, -122.790285)
## 2364                               321 MULBERRY ST SW LENOIR, NC 28645 (35.910633, -81.536239)
## 2365                                300 UTAH STREET HIAWATHA, KS 66434 (39.851819, -95.531157)
## 2366                                809 W CHURCH ST CHAMPAIGN, IL 61820 (40.11826, -88.257263)
## 2367                            1106 COLEGATE DRIVE MARIETTA, OH 45750 (39.438875, -81.444455)
## 2368                          600 MEDICAL CENTER DRIVE NEWTON, KS 67114 (38.023034, -97.33654)
## 2369                                  8303 PLATT ROAD SALINE, MI 48176 (42.168654, -83.697655)
## 2370                                  500 EAST ACADEMY PARIS, AR 72855 (35.289988, -93.725419)
## 2371                        2142 NORTH COVE BOULEVARD TOLEDO, OH 43606 (41.670821, -83.594834)
## 2372                             1420 NORTH TRACY BLVD TRACY, CA 95376 (37.744232, -121.43494)
## 2373                               1600 DIAMOND STREET ONAWA, IA 51040 (42.025739, -96.105586)
## 2374                        1691 HIGHWAY 9 - CN2025 TOMS RIVER, NJ 08755 (40.011532, -74.2168)
## 2375                       12500 WILLOWBROOK ROAD CUMBERLAND, MD 21502 (39.650091, -78.732777)
## 2376                        1720 CENTRAL AVENUE EAST HAMPTON, IA 50441 (42.741407, -93.186763)
## 2377                           321 E HARRIS STREET CHARLOTTE, MI 48813 (42.564928, -84.831826)
## 2378                                 240 WILLOW STREET TYLER, MN 56178 (44.272274, -96.130943)
## 2379                                   614 EAKER STREET EDEN, TX 76837 (31.220885, -99.847832)
## 2380                             1775 DEMPSTER ST PARK RIDGE, IL 60068 (42.039748, -87.848146)
## 2381                               170 N CASEVILLE RD PIGEON, MI 48755 (43.834329, -83.279517)
## 2382                           512 SKYLINE BOULEVARD CLOQUET, MN 55720 (46.731844, -92.462459)
## 2383                             5800 SOUTHLAND DRIVE MOBILE, AL 36693 (30.623804, -88.177452)
## 2384                          9000 W WISCONSIN AVE MILWAUKEE, WI 53226 (43.038446, -88.024737)
## 2385                                750 EAST 34TH ST HIBBING, MN 55746 (47.411053, -92.929534)
## 2386                                  920 HILLCREST DR VERNON, TX 76384 (34.159419, -99.31333)
## 2387                           550 N HILLSIDE STREET WICHITA, KS 67214 (37.695489, -97.299058)
## 2388                                 1405 MILL ST NEW LONDON, WI 54961 (44.381668, -88.733124)
## 2389                      1001 POTRERO AVENUE SAN FRANCISCO, CA 94110 (37.756171, -122.406608)
## 2390                        250 SCENIC HIGHWAY LAWRENCEVILLE, GA 30046 (33.943406, -83.990017)
## 2391                        3200 PROVIDENCE DRIVE ANCHORAGE, AK 99508 (61.189798, -149.817622)
## 2392                                                 P O BOX 277, 2200 H ST FAIRBURY, NE 68352
## 2393                       450 SOUTH OCOTILLO AVENUE BENSON, AZ 85602 (31.964829, -110.307123)
## 2394                    4800 SOUTH CROATAN HIGHWAY NAGS HEAD, NC 27959 (35.940862, -75.616923)
## 2395                           1319 PUNAHOU STREET HONOLULU, HI 96826 (21.300396, -157.834246)
## 2396                          950 WEST FARIS ROAD GREENVILLE, SC 29605 (34.816062, -82.412968)
## 2397                         400 SOLDIER CREEK ROAD ROSEBUD, SD 57570 (43.255335, -100.842121)
## 2398                     8280 W WARM SPRINGS ROAD LAS VEGAS, NV 89113 (36.055545, -115.271323)
## 2399                        475 SEAVIEW AVENUE STATEN ISLAND, NY 10305 (40.584082, -74.087013)
## 2400                  10101 SOUTH 27TH ST 2ND FLOOR FRANKLIN, WI 53132 (42.860129, -87.951723)
## 2401                               601 ELMWOOD AVE ROCHESTER, NY 14642 (43.124394, -77.623692)
## 2402                            1230 SIXTH AVENUE HUNTINGTON, WV 25701 (38.419145, -82.436734)
## 2403                       1612 SOUTH HENDERSON BLVD KILGORE, TX 75662 (32.373415, -94.869207)
## 2404                 25825 SOUTH VERMONT AVENUE HARBOR CITY, CA 90710 (33.788623, -118.294366)
## 2405                           25 JACOBS GULCH ROAD KELLOGG, ID 83837 (47.547123, -116.131409)
## 2406                           15155 HIGHWAY 43 RUSSELLVILLE, AL 35653 (34.511165, -87.717585)
## 2407                           5145 N CALIFORNIA AVE CHICAGO, IL 60625 (41.975219, -87.698918)
## 2408                               2333 BIDDLE AVE WYANDOTTE, MI 48192 (42.209694, -83.148776)
## 2409                          1057 PAUL MAILLARD ROAD LULING, LA 70070 (29.924513, -90.371751)
## 2410                                6977 MAIN STREET HOUSTON, TX 77030 (29.704738, -95.406174)
## 2411                             1000 EAST 100 NORTH PAYSON, UT 84651 (40.044633, -111.715257)
## 2412                      820 NORTH CHELAN AVENUE WENATCHEE, WA 98801 (47.433566, -120.321983)
## 2413                                       175 HIGH ST NEWTON, NJ 07860 (41.055649, -74.76494)
## 2414                         304 WEST PROUT STREET HILL CITY, KS 67642 (39.371776, -99.845075)
## 2415                       629 NORTH SANDUSKY AVENUE BUCYRUS, OH 44820 (40.815698, -82.975604)
## 2416                             317 HIGHWAY 13 SOUTH MORTON, MS 39117 (32.344625, -89.671295)
## 2417                      2400 ST FRANCIS DRIVE BRECKENRIDGE, MN 56520 (46.291314, -96.590433)
## 2418                             61 CHARLES STREET DEADWOOD, SD 57732 (44.370048, -103.728348)
## 2419                                  420 EAST 76 ST NEW YORK, NY 10021 (40.76987, -73.952866)
## 2420                         2300 OPITZ BOULEVARD WOODBRIDGE, VA 22191 (38.634953, -77.284211)
## 2421                            1700 CLINTON STREET MUSKEGON, MI 49442 (43.221939, -86.243075)
## 2422                                 1 GUTHRIE DRIVE CORNING, NY 14830 (42.136107, -76.969841)
## 2423                            1411 BADDOUR PARKWAY LEBANON, TN 37087 (36.219173, -86.328318)
## 2424                             1411 HIGHWAY 793 ELBOW LAKE, MN 56531 (45.992223, -95.957777)
## 2425                                259 FIRST STREET MINEOLA, NY 11501 (40.741648, -73.643532)
## 2426                            2401 W UNIVERSITY AVE MUNCIE, IN 47303 (40.197622, -85.414363)
## 2427                                   600 SOUTH MONROE ENID, OK 73701 (36.389907, -97.886499)
## 2428                    3000 SCHATULGA RD BOX 12435 COLUMBUS, GA 31917 (32.489689, -84.869504)
## 2429                     32021 COUNTY 24 BOULEVARD CANNON FALLS, MN 55009 (44.4859, -92.90325)
## 2430                              444 NORTH MAIN STREET AKRON, OH 44310 (41.09707, -81.512155)
## 2431                                   PDA. 20 C/ SAN RAFAEL # 1395 FERNANDEZ JUNCOS, PR 00909
## 2432             6720 PARKDALE PLACE, SUITE 100 INDIANAPOLIS, IN 46254 (39.825848, -86.279475)
## 2433                              901 S. SWEETWATER WHEELER, TX 79096 (35.439363, -100.270803)
## 2434                             202 HOSPITAL STREET MOULTON, AL 35650 (34.482884, -87.286019)
## 2435                         800 N JUSTICE ST HENDERSONVILLE, NC 28791 (35.320814, -82.468153)
## 2436                                   3500 GASTON AVE DALLAS, TX 75246 (32.790567, -96.78081)
## 2437                             1000 STATE STREET BURGDORF, ID 83638 (44.909354, -116.109703)
## 2438                         242 W SHAMROCK STREET PINEVILLE, LA 71361 (31.325176, -92.438506)
## 2439                       8800 NORTH TYRON STREET CHARLOTTE, NC 28262 (35.307836, -80.747985)
## 2440                     2500 EAST VAN BUREN STREET PHOENIX, AZ 85008 (33.451333, -112.025414)
## 2441                            3643 N ROXBORO STREET DURHAM, NC 27704 (36.037439, -78.897037)
## 2442                                      BARRIO MONACILLOS CENTROMEDICO RIO PIEDRAS, PR 00927
## 2443                         707 S UNIVERSITY AVE BEAVER DAM, WI 53916 (43.448477, -88.828197)
## 2444                               208 VALLEY ROAD NEW CANAAN, CT 06840 (41.16524, -73.468247)
## 2445                                                         1201 HILL RD SMITHVILLE, TX 78957
## 2446                             6245 INKSTER RD GARDEN CITY, MI 48135 (42.332356, -83.311771)
## 2447                        400 N BROWN, BUILDING 1 HAMILTON, TX 76531 (31.703852, -98.113462)
## 2448            400 ROSALIND REDFERN GROVER PARKWAY MIDLAND, TX 79701 (31.997494, -102.099976)
## 2449                             400 E SHERIDAN RD MELBOURNE, FL 32901 (28.088846, -80.616201)
## 2450             1000 MEDICAL CENTER BOULEVARD LAWRENCEVILLE, GA 30045 (33.966455, -84.013012)
## 2451                          515 N MIRANDA AVENUE GEORGIANA, AL 36033 (31.636334, -86.742751)
## 2452                             5841 SOUTH MARYLAND CHICAGO, IL 60637 (41.787956, -87.604925)
## 2453                        639 WEST MAIN STREET BARNESVILLE, OH 43713 (39.992069, -81.188394)
## 2454                              520 WEST GUM STREET MARION, KY 42064 (37.329616, -88.091945)
## 2455                       155 EAST BRUSH HILL ROAD ELMHURST, IL 60126 (41.861684, -87.934295)
## 2456                             719 WEST COKE ROAD WINNSBORO, TX 75494 (32.947643, -95.30623)
## 2457              5200 EAST I-240 SERVICE ROAD OKLAHOMA CITY, OK 73135 (35.390255, -97.426999)
## 2458                         1600 FIRST ST EAST INDEPENDENCE, IA 50644 (42.468787, -91.875015)
## 2459                     600 ELIZABETH STREET CORPUS CHRISTI, TX 78404 (27.777489, -97.395121)
## 2460                            1000 DUTCH RIDGE ROAD BEAVER, PA 15009 (40.710345, -80.324352)
## 2461                              267 GRANT STREET BRIDGEPORT, CT 06610 (41.188776, -73.16608)
## 2462                               2900 S LOOP 256 PALESTINE, TX 75801 (31.733374, -95.625307)
## 2463                                  25117 HIGHWAY 15 UNION, MS 39365 (32.559207, -89.102561)
## 2464                              830 ROCKFORD ST MOUNT AIRY, NC 27030 (36.488418, -80.611181)
## 2465                                 805 SUNSET BLVD CONRAD, MT 59425 (48.173917, -111.958677)
## 2466                             450 EASTVOLD AVE ORTONVILLE, MN 56278 (45.314769, -96.446563)
## 2467                                 1111 6TH AVE DES MOINES, IA 50314 (41.599577, -93.625702)
## 2468                        1055 MEDICAL PARK SE GRAND RAPIDS, MI 49546 (42.943615, -85.55737)
## 2469                          190 EAST BANNOCK STREET BOISE, ID 83712 (43.612157, -116.192202)
## 2470                                                    638 CALIFORNIA AVENUE CAMDEN, AR 71701
## 2471       1325 S CLIFF AVE POST OFFICE BOX 5045 SIOUX FALLS, SD 57117 (43.534607, -96.711304)
## 2472                                          ONE ELIZABETH PLACE, E3 SUITE A DAYTON, OH 45417
## 2473                           101 SOUTH MOORE AVE CLAREMORE, OK 74017 (36.315655, -95.628262)
## 2474                          7171 SOUTH 51ST AVENUE LAVEEN, AZ 85339 (33.380677, -112.168233)
## 2475                     1500 FOREST GLEN ROAD SILVER SPRING, MD 20910 (39.016055, -77.034198)
## 2476                            1400 WEST PARK AVENUE URBANA, IL 61801 (40.117391, -88.227123)
## 2477                    11109 PARKVIEW PLAZA DRIVE FORT WAYNE, IN 46845 (41.187063, -85.09946)
## 2478                                 115 MALL DRIVE HANFORD, CA 93230 (36.323877, -119.669005)
## 2479                                         401 VANITY FAIR LANE, PO BOX 618 BUTLER, AL 36904
## 2480                                  800 N FANT ST ANDERSON, SC 29621 (34.511071, -82.647355)
## 2481                                520 S MAPLE AVE OAK PARK, IL 60304 (41.879026, -87.803818)
## 2482                                   60 MERCY COURT IRVINE, KY 40336 (37.705267, -83.977742)
## 2483                            17101 DALLAS PARKWAY ADDISON, TX 75001 (32.985131, -96.828818)
## 2484                    805 PAMPLICO HWY BOX 100550 FLORENCE, SC 29505 (34.158829, -79.754236)
## 2485                                  100 KEOKEA PLACE KULA, HI 96790 (20.701994, -156.357099)
## 2486                                                     ONE HOSPITAL PLAZA STAMFORD, CT 06904
## 2487                          192 VILLAGE DRIVE JACKSONVILLE, NC 28540 (34.747087, -77.374531)
## 2488                           250 NORTH FIRST STREET BLYTHE, CA 92225 (33.61245, -114.595479)
## 2489                            3050 RIO DOSA DRIVE LEXINGTON, KY 40509 (38.005927, -84.44244)
## 2490                           914 S SCHEUBER ROAD CENTRALIA, WA 98531 (46.71235, -122.986989)
## 2491                           1111 CRATER LAKE AVENUE MEDFORD, OR 97504 (42.339971, -122.861)
## 2492                      1309 WEST MAIN STREET WALNUT RIDGE, AR 72476 (36.074701, -90.966982)
## 2493                        40 EAST MOUNTAIN ROAD BELLE MEAD, NJ 08502 (40.466352, -74.685243)
## 2494                             121 LONGVIEW DRIVE TORRANCE, PA 15779 (40.415289, -79.238368)
## 2495                         15031 RINALDI ST MISSION HILLS, CA 91346 (34.279013, -118.459485)
## 2496                              505 SOUTH BURG ST KIMBALL, NE 69145 (41.232438, -103.667204)
## 2497                       2501 HARBOR BOULEVARD COSTA MESA, CA 92626 (33.664912, -117.919267)
## 2498                         1710 HARRISON STREET BATESVILLE, AR 72503 (35.769572, -91.634721)
## 2499                    3637 OLD VINEYARD ROAD WINSTON SALEM, NC 27104 (36.077679, -80.318902)
## 2500                      5101 S WILLOW SPRINGS RD LA GRANGE, IL 60525 (41.797382, -87.888407)
## 2501                                 1000 RUSH DRIVE SALIDA, CO 81201 (38.543102, -106.007291)
## 2502                                   620 W BROWN ST WAUPUN, WI 53963 (43.630968, -88.745912)
## 2503                            200 TRENTON ROAD BROWNS MILLS, NJ 08015 (39.977274, -74.58621)
## 2504                               1600 HADDON AVENUE CAMDEN, NJ 08103 (39.927033, -75.095704)
## 2505                             600 HIGHLAND AVENUE MADISON, WI 53792 (43.077218, -89.429063)
## 2506                                     538 BROADWAY WINNIE, TX 77665 (29.820523, -94.377133)
## 2507                                 565 ABBOTT ROAD BUFFALO, NY 14220 (42.847875, -78.811876)
## 2508                           2800 GODWIN BOULEVARD SUFFOLK, VA 23439 (36.773058, -76.583413)
## 2509              310 S MCCASKEY RD P O BOX 1128 WILLIAMSTON, NC 27892 (35.840477, -77.071178)
## 2510                             150 WEST ROUTE 66 GLENDORA, CA 91740 (34.128685, -117.865193)
## 2511                         231 SOUTH COLLINS ROAD SUNNYVALE, TX 75182 (32.77834, -96.567178)
## 2512                                   1969 W HART RD BELOIT, WI 53511 (42.546766, -89.007616)
## 2513                                     8200 DODGE ST OMAHA, NE 68114 (41.259681, -96.040868)
## 2514                             700 MEDICAL PARKWAY BRENHAM, TX 77833 (30.145082, -96.398937)
## 2515                              900 HYDE ST SAN FRANCISCO, CA 94109 (37.789561, -122.417112)
## 2516                                                    6201 HARRY HINES BLVD DALLAS, TX 75390
## 2517                           3600 FLORIDA BLVD BATON ROUGE, LA 70806 (30.450336, -91.154638)
## 2518               115 SECOND STREET WEST, BOX 157 GRACEVILLE, MN 56240 (45.56241, -96.433452)
## 2519                            250 SOUTH 21ST STREET EASTON, PA 18042 (40.686518, -75.242897)
## 2520                                      5353 G STREET CHINO, CA 91710 (34.009923, -117.6881)
## 2521            4600 EAST SAM HOUSTON PARKWAY SOUTH PASADENA, TX 77505 (29.640261, -95.160714)
## 2522                               801 MIDDLEFORD RD SEAFORD, DE 19973 (38.642332, -75.605325)
## 2523                     9901 MEDICAL CENTER DRIVE ROCKVILLE, MD 20850 (39.098046, -77.201027)
## 2524                            1525 RIVER OAKS WEST HARAHAN, LA 70123 (29.962224, -90.203441)
## 2525                             1500 E HOUSTON HWY BEEVILLE, TX 78102 (28.408353, -97.731925)
## 2526                             9733 HEALTHWAY DRIVE BERLIN, MD 21811 (38.338604, -75.210472)
## 2527                          2451 INTELLIPLEX DR SHELBYVILLE, IN 46176 (39.560017, -85.78397)
## 2528                             401 W POPLAR ST WALLA WALLA, WA 99362 (46.06294, -118.343136)
## 2529                                        CARR 349 KM 2 7 CERRO LAS MESAS MAYAGUEZ, PR 00681
## 2530                            888 SO KING STREET HONOLULU, HI 96813 (21.302268, -157.850921)
## 2531                                    29 NW 1ST LANE LAMAR, MO 64759 (37.505282, -94.299482)
## 2532                 1800 SOUTH RENAISSANCE BOULEVARD EDMOND, OK 73013 (35.635521, -97.499435)
## 2533                               202 PROSPECT DR GLENDIVE, MT 59330 (47.117226, -104.704953)
## 2534                        1095 HIGHWAY 15 SOUTH HUTCHINSON, MN 55350 (44.875105, -94.375533)
## 2535                                1460 G STREET SPRINGFIELD, OR 97477 (44.0524, -123.002589)
## 2536                                 2050 VIBORG RD SOLVANG, CA 93463 (34.602465, -120.126643)
## 2537                                500 CAMPUS DRIVE HANCOCK, MI 49930 (47.141346, -88.585643)
## 2538                              91 BEEHIVE CIR SAINT CLOUD, FL 34769 (28.260176, -81.313691)
## 2539                                 1500 WATERS PLACE BRONX, NY 10461 (40.846376, -73.842762)
## 2540                               1263 DELAWARE AVE BUFFALO, NY 14209 (42.918258, -78.868415)
## 2541                              801 POINCIANA AVENUE MAMOU, LA 70554 (30.641032, -92.417605)
## 2542                                    6 13TH AVE E POLSON, MT 59860 (47.683344, -114.163327)
## 2543                        5808 W 110TH STREET OVERLAND PARK, KS 66211 (38.929326, -94.65354)
## 2544                                  205 PARKER ST BOSCOBEL, WI 53805 (43.132926, -90.707744)
## 2545                     200 BELLE TERRE ROAD PORT JEFFERSON, NY 11777 (40.947392, -73.059832)
## 2546                               CARR.2 KM.1.4 AVE. SEVERIANO CUEVAS #18 AGUADILLA, PR 00603
## 2547                 3101 SW SAM JACKSON PARK ROAD PORTLAND, OR 97239 (45.500105, -122.684603)
## 2548                           215 W JANSS RD THOUSAND OAKS, CA 91360 (34.206398, -118.882624)
## 2549                            4070 HIGHWAY 17 BYPASS PO DRAWER 3350 MURRELLS INLET, SC 29576
## 2550                             2605 CIRCLE DRIVE JAMESTOWN, ND 58401 (46.880525, -98.687167)
## 2551                        5880 SOUTH HOSPITAL DRIVE GLOBE, AZ 85501 (33.407206, -110.826224)
## 2552                                4102 WOOLWORTH AVE OMAHA, NE 68105 (41.245156, -95.974516)
## 2553                                    1501 E 3RD ST DELTA, CO 81416 (38.743166, -108.047515)
## 2554                              601 S SEVENTH ST ONTONAGON, MI 49953 (46.865635, -89.302976)
## 2555                                  350 N WALL ST KANKAKEE, IL 60901 (41.124148, -87.882651)
## 2556                                                       610 WEST BYPASS DRUMRIGHT, OK 74030
## 2557                  152 WACCAMAW MEDICAL PARK DRIVE CONWAY, SC 29526 (33.787937, -78.997758)
## 2558                        8050 WEST NORTHVIEW STREET BOISE, ID 83704 (43.62665, -116.282677)
## 2559                         16250 SAND CANYON AVENUE IRVINE, CA 92618 (33.66095, -117.774478)
## 2560                             1235 E CHEROKEE SPRINGFIELD, MO 65804 (37.177969, -93.275276)
## 2561                              315 W MADISON AVE CHESTER, MT 59522 (48.510497, -110.971834)
## 2562                           1406 6TH AVE NORTH SAINT CLOUD, MN 56303 (45.575325, -94.17045)
## 2563                                 601 GROVE AVE WILD ROSE, WI 54984 (44.183143, -89.245704)
## 2564                       1600 MEDICAL PARKWAY CARSON CITY, NV 89703 (39.201899, -119.781729)
## 2565                              751 NE BLAKELY DR ISSAQUAH, WA 98029 (47.536553, -122.02205)
## 2566                                          P O BOX 429, 402 NORTH MAPLE ST OSMOND, NE 68765
## 2567                             791 E SUMMIT AVE OCONOMOWOC, WI 53066 (43.101136, -88.486109)
## 2568                              300 SEASIDE AVENUE MILFORD, CT 06460 (41.217141, -73.064332)
## 2569                               1111 11TH STREET HAWARDEN, IA 51023 (42.998008, -96.479427)
## 2570                               6000 HOSPITAL DR HANNIBAL, MO 63401 (39.710595, -91.443967)
## 2571                            621 NORTH HALL STREET DALLAS, TX 75226 (32.788288, -96.780663)
## 2572                                 100 COUNTY RD B SHAWANO, WI 54166 (44.761606, -88.606614)
## 2573                                951 COURT AVENUE MEMPHIS, TN 38103 (35.141595, -90.029656)
## 2574                               655 W 8TH ST JACKSONVILLE, FL 32209 (30.346799, -81.664228)
## 2575                                 29 EAST 29TH ST BAYONNE, NJ 07002 (40.667531, -74.112371)
## 2576                             3000 HOSPITAL DRIVE BATAVIA, OH 45103 (39.078309, -84.144986)
## 2577                 25 HOSPITAL CENTER BLVD HILTON HEAD ISLAND, SC 29925 (32.21932, -80.7125)
## 2578                                                     1555 EXCHANGE AVENUE CONWAY, AR 72032
## 2579                         5830 N W BARRY ROAD KANSAS CITY, MO 64154 (39.246883, -94.647898)
## 2580                         4700 LADY MOON DR FORT COLLINS, CO 80528 (40.521117, -105.010885)
## 2581                    3231 MCMULLEN BOOTH RD SAFETY HARBOR, FL 34695 (28.040326, -82.708971)
## 2582                                           PO BOX 160 - 602 CHASE AVENUE CORDOVA, AK 99574
## 2583                        3551 N BROAD STREET PHILADELPHIA, PA 19104 (40.006968, -75.151699)
## 2584                               2300 WESTERN AVE MANITOWOC, WI 54221 (44.09441, -87.676865)
## 2585            451 EAST BISHOP FEDERAL LANE SALT LAKE CITY, UT 84115 (40.728009, -111.877569)
## 2586                              1210 KY HWY 36 E CYNTHIANA, KY 41031 (38.384822, -84.276797)
## 2587                     EDIF JESUS T PINEIRO AVE FERNANDEZ JUNCOS BO PUEBL CAROLINA, PR 00979
## 2588                                 23901 LAHSER SOUTHFIELD, MI 48033 (42.464332, -83.260394)
## 2589          2016 SOUTH ALABAMA AVENUE, BOX 886 MONROEVILLE, AL 36460 (31.497839, -87.319411)
## 2590                        1801 ASHLEY CIRCLE BOWLING GREEN, KY 42104 (36.965672, -86.435599)
## 2591                             3933 S BROADWAY SAINT LOUIS, MO 63118 (38.583359, -90.227557)
## 2592                                                   HWY 43 S BOX 847 LAWRENCEBURG, TN 38464
## 2593                            375 DIXMYTH AVENUE CINCINNATI, OH 45220 (39.140612, -84.52227)
## 2594                                   401 KENDALL DR LAMAR, CO 81052 (38.070915, -102.609068)
## 2595                               2030 LAY DAM ROAD CLANTON, AL 35045 (32.876585, -86.623511)
## 2596                            9613 EAST US HIGHWAY 36 AVON, IN 46123 (39.763511, -86.353828)
## 2597                         7939 U S HWY 165 SOUTH COLUMBIA, LA 71418 (32.077871, -92.095218)
## 2598                            7519 HOSPITAL ROAD GLOUCESTER, VA 23061 (37.419475, -76.54318)
## 2599                      2601 EAST ROOSEVELT STREET PHOENIX, AZ 85008 (33.458525, -112.02643)
## 2600                            401 12TH STREET NORTH WHEATON, MN 56296 (45.80901, -96.500504)
## 2601                              3719 DAUPHIN STREET MOBILE, AL 36608 (30.685946, -88.131719)
## 2602                          800 SPRUCE STREET PHILADELPHIA, PA 19107 (39.945872, -75.155881)
## 2603                           1000 WEST LINCOLNWAY JEFFERSON, IA 50129 (42.015217, -94.38906)
## 2604                                   100 DAWN LANE WAVERLY, OH 45690 (39.116505, -83.005827)
## 2605               1311 EAST GENERAL CAVAZOS BLVD KINGSVILLE, TX 78363 (27.491416, -97.849831)
## 2606                           700 EAST COTTONWOOD RD DOTHAN, AL 36301 (31.204812, -85.384042)
## 2607                                     720 WOOD ST EUREKA, CA 95501 (40.781186, -124.160952)
## 2608                              604 STONE AVENUE TALLADEGA, AL 35161 (33.439801, -86.090641)
## 2609                            11690 GROOMS ROAD CINCINNATI, OH 45242 (39.281395, -84.367786)
## 2610                  6200 NORTH LA CHOLLA BOULEVARD TUCSON, AZ 85741 (32.319581, -111.012054)
## 2611                              302 SOUTH WAYNE STREET ALMA, GA 31510 (31.53911, -82.459687)
## 2612                                1705 S TARBORO ST WILSON, NC 27893 (35.720524, -77.944047)
## 2613                           111 SOUTH 5TH STREET DOUGLAS, WY 82633 (42.758805, -105.381279)
## 2614                      123 MEDICAL CENTER DRIVE BRUNSWICK, ME 04011 (43.905661, -69.892006)
## 2615                              1046 6TH AVENUE SW ALBANY, OR 97321 (44.632067, -123.116771)
## 2616                                                     CARR 506 KM 1 0 COTO LAUREL, PR 00780
## 2617                  1306 KANAWHA BOULEVARD EAST CHARLESTON, WV 25301 (38.342991, -81.630662)
## 2618                                2800 10TH AVE N BILLINGS, MT 59101 (45.790452, -108.51415)
## 2619                           2200 E WASHINGTON BLOOMINGTON, IL 61701 (40.480118, -88.955385)
## 2620                          712 SOUTH CASCADE FERGUS FALLS, MN 56537 (46.277138, -96.072407)
## 2621                              811 WRIGHT STREET ARLINGTON, TX 76012 (32.748206, -97.11639)
## 2622                         4201 MEDICAL CENTER DRIVE MCHENRY, IL 60050 (42.3189, -88.279787)
## 2623                  701 W COCOA BEACH CAUSEWAY COCOA BEACH, FL 32932 (28.357879, -80.622733)
## 2624                               4800 KAWAIHAU ROAD KAPAA, HI 96746 (22.087619, -159.314204)
## 2625                                     301 TROY DR MADISON, WI 53704 (43.134545, -89.396759)
## 2626                                   108 DENVER TRAIL AZLE, TX 76020 (32.881196, -97.533769)
## 2627                                   911 N SHELBY ST SALEM, IN 47167 (38.613165, -86.107802)
## 2628                                     2124 14 ST MERIDIAN, MS 39301 (32.370775, -88.699858)
## 2629                           1400 EAST SIDE RD PLATTEVILLE, WI 53818 (42.719781, -90.455783)
## 2630                                  2000 CHURCH ST NASHVILLE, TN 37236 (36.1534, -86.800835)
## 2631                             8 PRESTIGE CIRCLE 101 ALLEN, TX 75002 (33.092018, -96.672738)
## 2632                                   60 WEST STREET GENEVA, OH 44041 (41.799401, -80.963296)
## 2633                                                       ONE NORTON AVENUE ONEONTA, NY 13820
## 2634                         1559 SPARTA STREET MC MINNVILLE, TN 37110 (35.698694, -85.742339)
## 2635                              1034 NORTH 500 WEST PROVO, UT 84604 (40.248084, -111.667383)
## 2636                          1101 EAST SPRING STREET ANTHONY, KS 67003 (37.154449, -98.01729)
## 2637                                   651 E 25TH ST HIALEAH, FL 33013 (25.844931, -80.268881)
## 2638                 1001 SAM PERRY BOULEVARD FREDERICKSBURG, VA 22401 (38.310732, -77.481482)
## 2639                               2950 ELMWOOD AVENUE KENMORE, NY 14217 (42.9779, -78.878678)
## 2640                       5000 SAN BERNARDINO ST MONTCLAIR, CA 91763 (34.077662, -117.696098)
## 2641                           315 OAK ST BOX 550 LIVINGSTON, TN 38570 (36.384695, -85.328097)
## 2642                                213 EAST REDWOOD SALLISAW, OK 74955 (35.463563, -94.78904)
## 2643                             100 PARK STREET GLENS FALLS, NY 12801 (43.308335, -73.644551)
## 2644                        711 W ADAMS ST BLACK RIVER FALLS, WI 54615 (44.302386, -90.855734)
## 2645                                   777 BANNOCK ST DENVER, CO 80204 (39.72823, -104.990066)
## 2646                             3-3420 KUHIO HIGHWAY LIHUE, HI 96766 (21.987043, -159.366198)
## 2647                                 64 ROBBINS ST WATERBURY, CT 06721 (41.558269, -73.058608)
## 2648                        802 N MINTER AVENUE THROCKMORTON, TX 76483 (33.189652, -99.177278)
## 2649                              5800 RIDGE AVE PHILADELPHIA, PA 19128 (40.028518, -75.21028)
## 2650                           185 ROSEBERRY ST PHILLIPSBURG, NJ 08865 (40.701628, -75.179608)
## 2651                       520 NORTH THIRD AVENUE SANDPOINT, ID 83864 (48.277485, -116.550314)
## 2652                           130 WEST RAVINE ROAD KINGSPORT, TN 37662 (36.553005, -82.55426)
## 2653                            61 GRASSE STREET CALICO ROCK, AR 72519 (36.126336, -92.128587)
## 2654                            1020 FERTITTA BLVD LEESVILLE, LA 71446 (31.137324, -93.268791)
## 2655                            4673 EUGENE WARE ROAD BASTROP, LA 71220 (32.781091, -91.94193)
## 2656                 170 ALAMEDA DE LAS PULGAS REDWOOD CITY, CA 94062 (37.480987, -122.253223)
## 2657                         128 N FM RD 3167 RIO GRANDE CITY, TX 78582 (26.37754, -98.859886)
## 2658                             1900 KILDARE FARM ROAD CARY, NC 27518 (35.740188, -78.779918)
## 2659                    6777 WEST MAPLE ROAD WEST BLOOMFIELD, MI 48322 (42.541451, -83.409433)
## 2660                             575 RIVERGATE LANE DURANGO, CO 81301 (37.248889, -107.870774)
## 2661                                     1400 NOYES ST UTICA, NY 13502 (43.102249, -75.260626)
## 2662                            247 S MAIN STREET REIDSVILLE, GA 30453 (32.080649, -82.111042)
## 2663                    39-000 BOB HOPE DRIVE RANCHO MIRAGE, CA 92270 (33.764852, -116.408085)
## 2664                    106 MEDICAL CENTER BLVD FAYETTEVILLE, TN 37334 (35.149005, -86.557341)
## 2665                                  347 ANDRIEUX ST SONOMA, CA 95476 (38.288564, -122.46585)
## 2666                           44 SOUTH MAIN STREET RANDOLPH, VT 05060 (43.917547, -72.666255)
## 2667                                700 W GROVE ST MAQUOKETA, IA 52060 (42.073715, -90.673132)
## 2668                                   406 W NEELY ST ATKINSON, NE 68713 (42.52853, -98.98236)
## 2669                              85 EAST US HWY 6 VALPARAISO, IN 46383 (41.55007, -87.051316)
## 2670                           400 MEDICAL PARK DR WATERVLIET, MI 49098 (42.184866, -86.25076)
## 2671                           5353 REYNOLDS STREET SAVANNAH, GA 31412 (32.027361, -81.101731)
## 2672                      701 SOUTH DELLWOOD AVENUE CAMBRIDGE, MN 55008 (45.56657, -93.229319)
## 2673                                        ONE CHILDREN'S HOSPITAL DRIVE PITTSBURGH, PA 15224
## 2674                        100 MEDICAL CENTER DRIVE SLIDELL, LA 70461 (30.286243, -89.743132)
## 2675                              300 LONGWOOD AVENUE BOSTON, MA 02115 (42.337629, -71.104783)
## 2676                              855 S MAIN ST OCONTO FALLS, WI 54154 (44.865899, -88.127084)
## 2677                                    150 W HIGH ST MORRIS, IL 60450 (41.368907, -88.426016)
## 2678                              111 N 49TH ST PHILADELPHIA, PA 19139 (39.961101, -75.219478)
## 2679                            709 W MAIN STREET MANCHESTER, IA 52057 (42.483903, -91.466644)
## 2680             7400 EAST THOMPSON PEAK PARKWAY SCOTTSDALE, AZ 85255 (33.669777, -111.921803)
## 2681                       60 HODGES AVENUE, BOX 151 TAUNTON, MA 02780 (41.905791, -71.101627)
## 2682              1200 SOUTH CEDAR CREST BOULEVARD ALLENTOWN, PA 18105 (40.566772, -75.518672)
## 2683                                 1100 LAKEVIEW DR WAUSAU, WI 54403 (44.929729, -89.633985)
## 2684                         200 1ST STREET WEST PAYNESVILLE, MN 56362 (45.374893, -94.716253)
## 2685                         707 EAST MAIN STREET MIDDLETOWN, NY 10940 (41.439962, -74.369415)
## 2686                       1000 NORTH MAIN STREET RICHFIELD, UT 84701 (38.783275, -112.084663)
## 2687                                 2157 MAIN STREET BUFFALO, NY 14214 (42.92917, -78.849916)
## 2688                           151 REDSTONE AVE SE CRESTVIEW, FL 32539 (30.736947, -86.561842)
## 2689                                 3300 S FM 1788 MIDLAND, TX 79706 (31.922278, -102.218938)
## 2690                                 498 NW 18TH ST RICHMOND, IN 47374 (39.835192, -84.926845)
## 2691                              15107 VANOWEN ST VAN NUYS, CA 91406 (34.193917, -118.463271)
## 2692                     4920 NE STALLINGS DRIVE NACOGDOCHES, TX 75961 (31.652058, -94.654265)
## 2693                          100 FALLWOOD ROAD REDWOOD FALLS, MN 56283 (44.53703, -95.107268)
## 2694                           5352 LINTON BLVD DELRAY BEACH, FL 33484 (26.439246, -80.127919)
## 2695                                  1515 PARK AVE COLUMBUS, WI 53925 (43.323798, -89.036162)
## 2696                                 700 BROADWAY FORT WAYNE, IN 46802 (41.078891, -85.148873)
## 2697                                 1225 N STATE ST JACKSON, MS 39202 (32.314278, -90.178228)
## 2698                              1101 EAST MONROE MCALESTER, OK 74501 (34.934794, -95.752682)
## 2699                              201 ALBERT AVENUE SCOTT CITY, KS 67871 (38.48487, -100.9035)
## 2700                                     3901 W 15TH ST PLANO, TX 75075 (33.019387, -96.76573)
## 2701                  1050 EAST SOUTH TEMPLE SALT LAKE CITY, UT 84102 (40.769348, -111.861175)
## 2702                                 6580 165TH STREET ALBIA, IA 52531 (41.044838, -92.796475)
## 2703                              1161 E COVINA BLVD COVINA, CA 91724 (34.099424, -117.867687)
## 2704                       1000 MINERAL POINT AVE JANESVILLE, WI 53548 (42.686744, -89.032725)
## 2705                                                          ST ANTHONY'S WAY ALTON, IL 62002
## 2706                                 1306 MARICOPA HWY OJAI, CA 93023 (34.442251, -119.264518)
## 2707                       4755 OGLETOWN-STANTON ROAD NEWARK, DE 19718 (39.689909, -75.673228)
## 2708                  900 NORTH HIGH SCHOOL ROAD INDIANAPOLIS, IN 46214 (39.778002, -86.27268)
## 2709                          11705 MERCY BOULEVARD SAVANNAH, GA 31419 (31.985079, -81.152792)
## 2710                     10864 TEXAS HEALTH TRAIL FORT WORTH, TX 76244 (32.931717, -97.309987)
## 2711                             2959 US HIGHWAY 275 HAMBURG, IA 51640 (40.620554, -95.649475)
## 2712                           135 HIGHWAY 402 NAPOLEONVILLE, LA 70390 (29.957585, -91.033875)
## 2713                             110 S MAIN STREET HIAWASSEE, GA 30546 (34.946282, -83.754318)
## 2714                              500 EAST WEBSTER CHEWELAH, WA 99109 (48.278213, -117.710846)
## 2715                                  5451 WALNUT AVE CHINO, CA 91710 (34.026351, -117.685988)
## 2716                            1925 WOODWINDS DRIVE WOODBURY, MN 55125 (44.92351, -92.975353)
## 2717                            216 EAST MAIN STREET PIGGOTT, AR 72454 (36.382019, -90.188443)
## 2718                   5201 NORTH SHORE DRIVE NO LITTLE ROCK, AR 72118 (34.801458, -92.347687)
## 2719                           155 GLASSON WAY GRASS VALLEY, CA 95945 (39.228949, -121.047264)
## 2720                           1000 W HARLEM AVENUE MONMOUTH, IL 61462 (40.921291, -90.658986)
## 2721                              1320 MERCY DRIVE NW CANTON, OH 44708 (40.812321, -81.397069)
## 2722                             1924 ALCOA HIGHWAY KNOXVILLE, TN 37920 (35.93826, -83.946678)
## 2723                          1425 PORTLAND AVENUE ROCHESTER, NY 14621 (43.192542, -77.584424)
## 2724                              2701 W 68TH STREET CHICAGO, IL 60629 (41.770008, -87.691909)
## 2725                                   921 AVENUE G KENTWOOD, LA 70444 (30.936629, -90.529535)
## 2726                               150 WEST 100 NORTH VERNAL, UT 84078 (40.45779, -109.530464)
## 2727                                          REECE CAMPUS 2600 OTTAWA ROAD NEODESHA, KS 66757
## 2728                              2520 5TH STREET N COLUMBUS, MS 39701 (33.526488, -88.429071)
## 2729                                      101 AVENUE J ANSON, TX 79501 (32.768101, -99.895514)
## 2730                                    640 PARK AVE SHELBY, MT 59474 (48.509604, -111.850493)
## 2731                           11740 COLUMBIA STREET BLAKELY, GA 39823 (31.374382, -84.946245)
## 2732                         400 EAST CHESTNUT STREET HOLLIS, OK 73550 (34.691537, -99.914366)
## 2733                    800 W CENTRAL ROAD ARLINGTON HEIGHTS, IL 60005 (42.066604, -87.992951)
## 2734                  810 SOUTH BROADWAY STREET CHURCH POINT, LA 70525 (30.395017, -92.211833)
## 2735                          363 HIGHLAND AVENUE FALL RIVER, MA 02720 (41.710522, -71.146439)
## 2736                         217 SOUTH THIRD STREET DANVILLE, KY 40422 (37.643818, -84.772638)
## 2737                               15248 11TH ST VICTORVILLE, CA 92392 (34.52897, -117.292518)
## 2738                1200 EL CAMINO REAL SOUTH SAN FRANCISCO, CA 94080 (37.658376, -122.439205)
## 2739                           145 MEMORIAL DRIVE BROKEN BOW, NE 68822 (41.409054, -99.632262)
## 2740                       501 EAST LOCUST STREET LONE PINE, CA 93545 (36.608374, -118.058159)
## 2741                             640 W WASHINGTON PITTSFIELD, IL 62363 (39.606793, -90.815055)
## 2742                               1 HEALTH CIRCLE LEXINGTON, VA 24450 (37.778455, -79.442049)
## 2743                310 BENNETT STREET PO BOX 1081 WRANGELL, AK 99929 (56.471646, -132.376414)
## 2744                                   900 N 2ND ST ROCHELLE, IL 61068 (41.928573, -89.062801)
## 2745                               91 HOSPITAL DRIVE TOWANDA, PA 18848 (41.783796, -76.448602)
## 2746                           201 E SAMPLE RD POMPANO BEACH, FL 33064 (26.275137, -80.120739)
## 2747                    375 LAGUNA HONDA BLVD SAN FRANCISCO, CA 94116 (37.747824, -122.458636)
## 2748                   2601 GENE GEORGE BOULEVARD SPRINGDALE, AR 72762 (36.163325, -94.192602)
## 2749                     1200 NORTH BEAVER STREET FLAGSTAFF, AZ 86001 (35.209534, -111.644835)
## 2750                         13100 STUDERBAKER ROAD NORWALK, CA 90650 (33.912428, -118.099156)
## 2751                        1412 MILSTEAD AVENUE, NE CONYERS, GA 30012 (33.682239, -84.001941)
## 2752                                3260 HOSPITAL DR JUNEAU, AK 99801 (58.328696, -134.466829)
## 2753                4801 WELDON SPRING PARKWAY SAINT CHARLES, MO 63304 (38.716318, -90.672084)
## 2754                              18341 US HIGHWAY 41 L' ANSE, MI 49946 (46.73446, -88.428042)
## 2755                                  1215 E COURT ST SEGUIN, TX 78155 (29.569043, -97.948334)
## 2756                           1100 BROOKHAVEN ROAD FRANKLIN, KY 42135 (36.699997, -86.575563)
## 2757                                                     1001 E PENNSYLVANIA OTTUMWA, IA 52501
## 2758                                 304 WRIGHT ST SWEETWATER, TN 37874 (35.60025, -84.464223)
## 2759                     900 EAST WHITESTONE BLVD CEDAR PARK, TX 78613 (30.523951, -97.820177)
## 2760                         825 CHALKSTONE AVENUE PROVIDENCE, RI 02908 (41.834015, -71.43458)
## 2761                       1324 NORTH SHERIDAN ROAD WAUKEGAN, IL 60085 (42.378264, -87.830964)
## 2762                           3033 W ORANGE AVENUE ANAHEIM, CA 92804 (33.824735, -117.995115)
## 2763                                 12502 USF PINE DR TAMPA, FL 33612 (28.060371, -82.422968)
## 2764                            1229 C AVENUE EAST OSKALOOSA, IA 52577 (41.298562, -92.630131)
## 2765                       529 CAPP HARLAN ROAD TOMPKINSVILLE, KY 42167 (36.698506, -85.67712)
## 2766                                  400 HOBART ST CADILLAC, MI 49601 (44.246148, -85.390456)
## 2767                      401 W MOHAWK DR SUITE 100 TOMAHAWK, WI 54487 (45.489006, -89.733596)
## 2768                                   760 BROADWAY BROOKLYN, NY 11206 (40.700512, -73.941557)
## 2769                                                   800 RAVIN HILL DRIVE ATCHISON, KS 66002
## 2770                      1711 WEST TEMPLE STREET LOS ANGELES, CA 90026 (34.06879, -118.26356)
## 2771                              16874 HIGHWAY 43 GREENSBURG, LA 70441 (30.83125, -90.667002)
## 2772                            1100 CARSON AVENUE LA JUNTA, CO 81050 (37.976929, -103.548742)
## 2773                           200 HOSPITAL DRIVE MEYERSDALE, PA 15552 (39.809281, -79.025338)
## 2774                                     ONE ROBERT WOOD JOHNSON PLACE NEW BRUNSWICK, NJ 08901
## 2775            64026 HWY 434, SUITE 300 (3RD FLOOR) LACOMBE, LA 70445 (30.357067, -89.917328)
## 2776                                  125 NEWMAN ST FAIRFIELD, TX 75840 (31.725644, -96.16961)
## 2777                        2520 VALLEY DRIVE POINT PLEASANT, WV 25550 (38.868705, -82.124403)
## 2778                        1653 TEMPLE AVENUE NORTH FAYETTE, AL 35555 (33.707708, -87.823706)
## 2779                                 1140 RT 72 W MANAHAWKIN, NJ 08050 (39.721499, -74.287136)
## 2780                   2200 EAST SHOW LOW LAKE ROAD SHOW LOW, AZ 85901 (34.201967, -110.01839)
## 2781                                 1375 E 19TH AVE DENVER, CO 80218 (39.745722, -104.972135)
## 2782                                507 SOUTH MAIN ST VIROQUA, WI 54665 (43.55146, -90.888946)
## 2783                        2215 TRUXTUN AVENUE BAKERSFIELD, CA 93301 (35.373323, -119.027386)
## 2784                               100 WOMAN'S WAY BATON ROUGE, LA 70817 (30.40886, -91.03102)
## 2785                     430 RANKIN DRIVE P O BOX 730 MARION, NC 28752 (35.665187, -82.021772)
## 2786                           671 HOES LANE WEST PISCATAWAY, NJ 08854 (40.526669, -74.471039)
## 2787                                812 N LOGAN AVE DANVILLE, IL 61832 (40.136197, -87.644908)
## 2788                                                        1100 SW 11TH ST LIVE OAK, FL 32060
## 2789                       2752 CENTURY BOULEVARD WYOMISSING, PA 19610 (40.357951, -75.987577)
## 2790                      8330 LAKEWOOD RANCH BLVD BRADENTON, FL 34202 (27.392671, -82.434725)
## 2791                          100 MCDOUGAL DRIVE HOLDENVILLE, OK 74848 (35.088213, -96.378265)
## 2792                        609 WEST MAPLE AVENUE SPRINGDALE, AR 72764 (36.181394, -94.136464)
## 2793                             21644 STATE RD 7 BOCA RATON, FL 33428 (26.354571, -80.203236)
## 2794                        401 SOUTH SANTA FE AVENUE SALINA, KS 67401 (38.834346, -97.609162)
## 2795                                207 EAST F STREET OKEENE, OK 73763 (36.117098, -98.315726)
## 2796                                  1475 W 49TH ST HIALEAH, FL 33012 (25.866662, -80.312165)
## 2797                             300 CENTRAL AVE EAST ORANGE, NJ 07018 (40.753707, -74.213333)
## 2798                          1420 TUSCULUM BLVD GREENEVILLE, TN 37745 (36.175393, -82.790893)
## 2799                                    20 YORK ST NEW HAVEN, CT 06504 (41.304285, -72.934689)
## 2800                   150 NORTH EAGLE CREEK DRIVE LEXINGTON, KY 40509 (38.000199, -84.440371)
## 2801                     505 SOUTH JOHN REDDITT DRIVE LUFKIN, TX 75904 (31.327737, -94.756139)
## 2802                            833 PARK EAST BLVD LAFAYETTE, IN 47905 (40.406822, -86.828976)
## 2803                     303 N CLYDE MORRIS BLVD DAYTONA BEACH, FL 32114 (29.20055, -81.05534)
## 2804                        401 PALMETTO ST NEW SMYRNA BEACH, FL 32170 (29.021174, -80.922903)
## 2805                                            P O BOX 406, 1113 SHERMAN ST ST PAUL, NE 68873
## 2806                                                  8201 HEALTHCARE LOOP CHARLOTTE, NC 28215
## 2807                                                  41 EAST POST R0AD WHITE PLAINS, NY 10601
## 2808                                 2500 NE NEFF ROAD BEND, OR 97701 (44.065757, -121.266661)
## 2809                            311 NORTH MORROW STREET MENA, AR 71953 (34.588386, -94.221383)
## 2810                         915 WEST MICHIGAN STREET SIDNEY, OH 45365 (40.287932, -84.169035)
## 2811                                   5 ALUMNI DRIVE EXETER, NH 03833 (42.983066, -70.934319)
## 2812                            49725 COUNTY ROAD 83 STAPLES, MN 56479 (46.350869, -94.748393)
## 2813                                   2401 S 31ST ST TEMPLE, TX 76508 (31.078693, -97.365938)
## 2814                                 714 LINCOLN ST NE LE MARS, IA 51031 (42.79728, -96.15599)
## 2815                               235 W FLETCHER ST HAXTUN, CO 80731 (40.641386, -102.630866)
## 2816                             900 SUNSET DRIVE LA GRANDE, OR 97850 (45.319464, -118.104828)
## 2817                       5454 YORKTOWNE DRIVE COLLEGE PARK, GA 30349 (33.607344, -84.452477)
## 2818                      2518 JIMMY LEE SMITH PARKWAY HIRAM, GA 30141 (33.902429, -84.782727)
## 2819                         5301 E HURON RIVER DR ANN ARBOR, MI 48106 (42.261803, -83.659819)
## 2820                             100 N MAIN ST CHATTAHOOCHEE, FL 32324 (30.706899, -84.842584)
## 2821             2801 MARTIN LUTHER KING, JR DRIVE CLEVELAND, OH 44104 (41.482776, -81.609252)
## 2822                              1200 W MAPLE AVENUE GENEVA, AL 36340 (31.048063, -85.890837)
## 2823                               134 HOMER AVENUE CORTLAND, NY 13045 (42.608997, -76.186117)
## 2824                     301 2ND STREET NORTHEAST NEW PRAGUE, MN 56071 (44.545926, -93.574903)
## 2825                                                             1945 RTE 33 NEPTUNE, NJ 07754
## 2826                       300 RIDGE MEDICAL PLAZA EDGEFIELD, SC 29824 (33.777444, -81.929835)
## 2827                           1756 SAGAMORE ROAD NORTHFIELD, OH 44067 (41.350974, -81.573483)
## 2828                                2924 BROOK ROAD RICHMOND, VA 23220 (37.570261, -77.449207)
## 2829                                 4901 COLLEGE BLVD LEAWOOD, KS 66211 (38.927412, -94.6435)
## 2830                          1200 NORTH 7TH STREET CHARITON, IA 50049 (41.027693, -93.303421)
## 2831                            1001 SCHNEIDER DRIVE MALVERN, AR 72104 (34.358913, -92.786418)
## 2832                                  3100 SW 62ND AVE MIAMI, FL 33155 (25.742578, -80.295178)
## 2833                                                                   BOX 547 BARRE, VT 05641
## 2834                             1000 SOUTH AVENUE ROCHESTER, NY 14620 (43.135955, -77.607556)
## 2835                   EISENHOWER ROAD AND FM 2185 VAN HORN, TX 79855 (31.049669, -104.828388)
## 2836                          500 SOUTH MAPLE STREET WACONIA, MN 55387 (44.843306, -93.790772)
## 2837                            130 EAST LOCKLING BROOKFIELD, MO 64628 (39.775078, -93.068297)
## 2838                        525 WEST ACACIA STREET STOCKTON, CA 95203 (37.961201, -121.300691)
## 2839                              1901 W HARRISON ST CHICAGO, IL 60612 (41.874041, -87.674311)
## 2840                                 901 GRIFFIN AVE EASTMAN, GA 31023 (32.186055, -83.178591)
## 2841                                    400 S CLARK ST BUTTE, MT 59701 (46.00928, -112.546068)
## 2842                           410 BENEDICTA AVENUE TRINIDAD, CO 81082 (37.17338, -104.488796)
## 2843                             1017 S TRAVIS AVE CLEVELAND, TX 77327 (30.329434, -95.096057)
## 2844                           5025 N PAULINA STREET CHICAGO, IL 60640 (41.973262, -87.671141)
## 2845                      21 BRIDGEWAY ROAD NORTH LITTLE ROCK, AR 72113 (34.822522, -92.35439)
## 2846                           1001 JOHNSON FERRY ROAD ATLANTA, GA 30342 (33.9079, -84.354426)
## 2847                                52 OAK STREET MIDDLEBORO, MA 02346 (41.894382, -70.913866)
## 2848                         255 WEST LANCASTER AVENUE PAOLI, PA 19301 (40.042098, -75.499817)
## 2849                                         MARGINAL CARRETERA NO 2, KM 47 7 MANATI, PR 00674
## 2850                             2030 TEMPLE HILL ROAD ERWIN, TN 37650 (36.121365, -82.445621)
## 2851                        116 WEST THIGPEN AVENUE LAKELAND, GA 31635 (31.041591, -83.086454)
## 2852     707 OLD DALTON ELLIJAY ROAD, PO BOX 1406 CHATSWORTH, GA 30705 (34.779951, -84.782125)
## 2853                   1501 NORTH WILLIAMSON AVENUE WINSLOW, AZ 86047 (35.035455, -110.691742)
## 2854                                               7601 EAST IMPERIAL HIGHWAY DOWNEY, CA 90242
## 2855                              404 JEFFERSON STREET PELLA, IA 50219 (41.412337, -92.911667)
## 2856                   336 NORTH HOOD STREET LAKE PROVIDENCE, LA 71254 (32.811076, -91.171656)
## 2857                        401 BICENTENNIAL WAY SANTA ROSA, CA 95403 (38.470217, -122.724316)
## 2858                                 350 HOSPITAL DRIVE MACON, GA 31217 (32.847315, -83.62027)
## 2859                    25500 POINT LOOKOUT ROAD LEONARDTOWN, MD 20650 (38.299239, -76.640383)
## 2860                            100 HOSPITAL ROAD BROOKVILLE, PA 15825 (41.156473, -79.092884)
## 2861                                   600 GRESHAM DR NORFOLK, VA 23507 (36.859728, -76.30482)
## 2862                      701 SOUTHEAST 5TH STREET KNOX CITY, TX 79529 (33.414107, -99.811451)
## 2863                       10101 FOREST HILL BLVD WELLINGTON, FL 33414 (26.650806, -80.204858)
## 2864                                 3000 32ND AVE SOUTH FARGO, ND 58104 (46.8325, -96.828106)
## 2865                                150 KINGSLEY LANE NORFOLK, VA 23505 (36.89843, -76.281644)
## 2866                        10580 N MERIDIAN ST INDIANAPOLIS, IN 46290 (39.938311, -86.158722)
## 2867                              2600 MILLER STREET BETHANY, MO 64424 (40.265292, -94.026145)
## 2868                              7600 RIVER RD NORTH BERGEN, NJ 07047 (40.794166, -73.995765)
## 2869                            368 NE FRANKLIN ST LAKE CITY, FL 32055 (30.193486, -82.632704)
## 2870                          410 PILGRIM BLVD HARTFORD CITY, IN 47348 (40.468905, -85.372027)
## 2871                             1812 VERDUGO BLVD GLENDALE, CA 91209 (34.205614, -118.216048)
## 2872                               3615 19TH STREET LUBBOCK, TX 79410 (33.577867, -101.892357)
## 2873                         223 N VAN DIEN AVENUE RIDGEWOOD, NJ 07450 (40.983204, -74.101761)
## 2874                                  300 S BYRON CHAMBERLAIN, SD 57325 (43.78511, -99.326134)
## 2875                     2855 OLD HIGHWAY 5 NORTH BLUE RIDGE, GA 30513 (34.916923, -84.375509)
## 2876                            401 MEDICAL PARK DRIVE ATMORE, AL 36502 (31.01657, -87.479735)
## 2877                            1000 EAST CHERRY STREET TROY, MO 63379 (38.983989, -90.964767)
## 2878                                                             BREWSTER RD BRISTOL, CT 06010
## 2879                              205 E GRANT STREET MORTON, TX 79346 (33.719294, -102.758075)
## 2880                                                  1401 WEST ASH STREET GOLDSBORO, NC 27530
## 2881                   1700 MOUNT VERNON AVENUE BAKERSFIELD, CA 93306 (35.380964, -118.967546)
## 2882                                  CALLE ISAAC GONZALEZ ESQUINA LEDESMA BDA NUEVA, PR 00641
## 2883                        600 WILSON CREEK RD LAWRENCEBURG, IN 47025 (39.112922, -84.883951)
## 2884                        8001 BRUCEVILLE ROAD SACRAMENTO, CA 95823 (38.465982, -121.417814)
## 2885                               1204 MOUND ST NACOGDOCHES, TX 75961 (31.613397, -94.649455)
## 2886                      2075 EAST FLAMINGO ROAD LAS VEGAS, NV 89119 (36.114561, -115.125548)
## 2887                                     800 S ASH ST NEVADA, MO 64772 (37.830534, -94.359703)
## 2888                                      206 BAY ST RICHTON, MS 39476 (31.347031, -88.937392)
## 2889                        1102 CONSTITUTION AVENUE MERIDIAN, MS 39301 (32.36779, -88.699315)
## 2890                      94 OLD SHORT HILLS ROAD LIVINGSTON, NJ 07039 (40.764045, -74.302334)
## 2891                                     1220 3RD AVE W DURAND, WI 54736 (44.620309, -91.9635)
## 2892                                  101 DATES DRIVE ITHACA, NY 14850 (42.467096, -76.538808)
## 2893                            1010 SPRUCE STREET ESPANOLA, NM 87532 (35.997101, -106.086683)
## 2894                              3003 BEE CAVES ROAD AUSTIN, TX 78746 (30.271664, -97.795469)
## 2895                          6644 EAST BAYWOOD AVENUE MESA, AZ 85206 (33.410465, -111.688045)
## 2896                        2233 STATE ROUTE 86 SARANAC LAKE, NY 12983 (44.344548, -74.144597)
## 2897                     2460 CURTIS ELLIS DRIVE ROCKY MOUNT, NC 27804 (35.973443, -77.848919)
## 2898                               2000 EOFF STREET WHEELING, WV 26003 (40.059434, -80.721732)
## 2899                    6601 WHITE FEATHER ROAD JOSHUA TREE, CA 92252 (34.132676, -116.276709)
## 2900                               305 NORTH MCKINNEY SWEENY, TX 77480 (29.048514, -95.691392)
## 2901                    913 NORTH DIXIE AVENUE ELIZABETHTOWN, KY 42701 (37.709917, -85.875048)
## 2902                               6819 PLUM CREEK AMARILLO, TX 79124 (35.210675, -101.913568)
## 2903                        701 EAST ORANGE STREET HOOPESTON, IL 60942 (40.459188, -87.660086)
## 2904                             2042 JUNIPER AVENUE SLAYTON, MN 56172 (43.992795, -95.759226)
## 2905                    1225 WILSHIRE BOULEVARD LOS ANGELES, CA 90017 (34.053209, -118.265292)
## 2906                           9333 IMPERIAL HIGHWAY DOWNEY, CA 90242 (33.917101, -118.128998)
## 2907                             2309 ANTONIO AVE CAMARILLO, CA 93010 (34.242965, -119.018306)
## 2908                   2626 CAPITAL MEDICAL BLVD TALLAHASSEE, FL 32308 (30.475376, -84.230728)
## 2909                               555 SOUTH 70TH ST LINCOLN, NE 68510 (40.807609, -96.625179)
## 2910                            2401 GILLHAM ROAD KANSAS CITY, MO 64108 (39.08275, -94.578611)
## 2911                100 FAIRVIEW DRIVE - PO BOX 817 FRANKLIN, VA 23851 (36.691171, -76.934942)
## 2912                                                         PO BOX 151 PRESQUE ISLE, ME 04769
## 2913                                      255 N 30TH LARAMIE, WY 82072 (41.31139, -105.557512)
## 2914                            1000 THIRD STREET TILLAMOOK, OR 97141 (45.456322, -123.854951)
## 2915                                 1600 N ROSE AVE OXNARD, CA 93030 (34.216555, -119.158351)
## 2916                          380 SUMMIT AVENUE STEUBENVILLE, OH 43952 (40.356224, -80.625103)
## 2917                  1740 WEST TAYLOR ST SUITE 1400 CHICAGO, IL 60612 (41.869224, -87.670529)
## 2918                              1031 7TH ST NE DEVILS LAKE, ND 58301 (48.114774, -98.850345)
## 2919                    751 MEDICAL CENTER COURT CHULA VISTA, CA 91911 (32.618448, -117.02399)
## 2920                           1700 E 19TH STREET THE DALLES, OR 97058 (45.587948, -121.16547)
## 2921                                  1397 WEIMER ROAD TAOS, NM 87571 (36.367397, -105.577458)
## 2922                              615 FULTON ST PORT CLINTON, OH 43452 (41.505571, -82.933788)
## 2923             5555 GROSSMONT CENTER DRIVE BOX 58 LA MESA, CA 91942 (32.779435, -117.009178)
## 2924                                     800 W 9TH ST JASPER, IN 47546 (38.393743, -86.941281)
## 2925                   1500 COMMONWEALTH AVENUE WILLIAMSBURG, VA 23185 (37.251622, -76.666875)
## 2926                         9601 STEILACOOM BLVD SW TACOMA, WA 98498 (47.177231, -122.564447)
## 2927                    43563 HWY 299 EAST FALL RIVER MILLS, CA 96028 (41.023968, -121.424651)
## 2928                      1601 GOLF COURSE ROAD GRAND RAPIDS, MN 55744 (47.221039, -93.554716)
## 2929                            4401 WORNALL ROAD KANSAS CITY, MO 64111 (39.046134, -94.59015)
## 2930                            450 EAST ROMIE LANE SALINAS, CA 93901 (36.659979, -121.646327)
## 2931                                 125 SW 7TH ST WILLISTON, FL 32696 (29.384354, -82.455793)
## 2932                               700 SOUTH PARK ST MADISON, WI 53715 (43.059124, -89.400678)
## 2933                                800 11TH ST CHARLES CITY, IA 50616 (43.052667, -92.682505)
## 2934                        2050 FAIRMONT DRIVE SAN LEANDRO, CA 94578 (37.710919, -122.120885)
## 2935                                 600 MT HWY 91 S DILLON, MT 59725 (45.200654, -112.646003)
## 2936                                                  LANGHORNE-NEWTOWN RD LANGHORNE, PA 19047
## 2937                             778 SCOGIN DRIVE MONTICELLO, AR 71655 (33.610628, -91.814978)
## 2938                                   845 PARKSIDE ST RIPON, WI 54971 (43.835451, -88.817692)
## 2939                    9920 TALBERT AVENUE FOUNTAIN VALLEY, CA 92708 (33.701659, -117.956107)
## 2940                     303 MEDICAL CENTER DRIVE BATESVILLE, MS 38606 (34.306319, -89.916488)
## 2941                     404 WEST FOUNTAIN STREET ALBERT LEA, MN 56007 (43.651558, -93.372469)
## 2942                           101 INDUSTRIAL ROAD HILLSBORO, KS 67063 (38.361495, -97.187589)
## 2943                              425 JACK MARTIN BLVD BRICK, NJ 08724 (40.078327, -74.129748)
## 2944                           67252 INDUSTRY LANE COVINGTON, LA 70433 (30.408713, -90.082943)
## 2945                            15200 COMMUNITY ROAD GULFPORT, MS 39503 (30.44201, -89.092766)
## 2946                             720 HOSPITAL DRIVE ANDREWS, TX 79714 (32.337424, -102.546866)
## 2947                        555 CREEKSIDE XING, NEW BRAUNFELS, TX 78130 (29.71921, -98.071212)
## 2948                         1000 POLE CREEK CROSSING SIDNEY, NE 69162 (41.130754, -102.98019)
## 2949                             1101 WOODSON DRIVE CALDWELL, TX 77836 (30.520307, -96.717714)
## 2950                           11150 US HIGHWAY 49 NORTH GPT, MS 39503 (30.445824, -89.098753)
## 2951                               252 MCHENRY ST BURLINGTON, WI 53105 (42.673515, -88.282648)
## 2952                          210 SOUTH VERMONT AVENUE RANSOM, KS 67572 (38.63671, -99.931546)
## 2953                            3001 HOSPITAL DRIVE CHEVERLY, MD 20785 (38.930923, -76.922638)
## 2954                            164 SUMMIT AVENUE PROVIDENCE, RI 02906 (41.851653, -71.397562)
## 2955                                 24 HOSPITAL AVE DANBURY, CT 06810 (41.406776, -73.444339)
## 2956                                                              PO BOX 43 KOTZEBUE, AK 99752
## 2957                 930 PROFESSIONAL PARK DRIVE CLARKSVILLE, TN 37040 (36.576173, -87.272442)
## 2958                      409 SOUTH SECOND STREET HARRISBURG, PA 17105 (40.256258, -76.875329)
## 2959                 5623 PULPIT PEAK VIEW COLORADO SPRINGS, CO 80918 (38.910262, -104.816436)
## 2960                                  1900 ELECTRIC ROAD SALEM, VA 24153 (37.2651, -80.033158)
## 2961                        4081 E OLYMPIC BLVD LOS ANGELES, CA 90023 (34.018874, -118.186461)
## 2962                                1104 E GRACE ST RENSSELAER, IN 47978 (40.9336, -87.138357)
## 2963                             102 NORTH BROADWAY CARNEGIE, OK 73015 (35.107554, -98.604918)
## 2964              14502 WEST MEEKER BOULEVARD SUN CITY WEST, AZ 85375 (33.658307, -112.371939)
## 2965                      80 JESSE HILL, JR DRIVE SE ATLANTA, GA 30303 (33.752156, -84.382609)
## 2966                               7007 GROVE RD BROOKSVILLE, FL 34609 (28.530111, -82.483531)
## 2967                    100 PORT WASHINGTON BOULEVARD ROSLYN, NY 11576 (40.804505, -73.672669)
## 2968                      900 S ATLANTIC BLVD MONTEREY PARK, CA 91754 (34.049769, -118.138751)
## 2969                             234 EAST 149TH STREET BRONX, NY 10451 (40.817681, -73.924072)
## 2970                                 4608 HIGHWAY 1 RACELAND, LA 70394 (29.703447, -90.564133)
## 2971                 450 NORTHSIDE CHEROKEE BOULEVARD CANTON, GA 30115 (34.227523, -84.460562)
## 2972                                       6001 WEBB RD TAMPA, FL 33615 (28.00224, -82.575148)
## 2973                          300 ROCKEFELLER DRIVE MUSKOGEE, OK 74401 (35.753648, -95.406187)
## 2974                               744 WEST 9TH STREET TULSA, OK 74127 (36.146836, -96.000119)
## 2975                                 213 SECOND AVE NE ROLLA, ND 58367 (48.861562, -99.615515)
## 2976                             815 SOUTH PINE STREET VIVIAN, LA 71082 (32.86346, -93.987717)
## 2977                          1111 N RONALD REAGAN PKWY AVON, IN 46123 (39.782568, -86.343731)
## 2978                         229 SOUTH 7TH STREET ST MARIES, ID 83861 (47.314613, -116.566678)
## 2979                              6 GLEN COVE DRIVE ROCKPORT, ME 04856 (44.144434, -69.086537)
## 2980                  1801 MARTIN LUTHER KING JR DRIVE HELENA, AR 72342 (34.508357, -90.62733)
## 2981                                       30 13TH ST HAVRE, MT 59501 (48.539326, -109.686363)
## 2982                        1220 MISSOURI AVE JEFFERSONVILLE, IN 47130 (38.282784, -85.749248)
## 2983                6801 GOVERNOR GC PERRY HIGHWAY RICHLANDS, VA 24641 (37.093978, -81.819444)
## 2984                       5383 STATE ROUTE 154 PINCKNEYVILLE, IL 62274 (38.08023, -89.368631)
## 2985                            2520 CHERRY AVENUE BREMERTON, WA 98310 (47.583429, -122.62601)
## 2986                                901 E 18TH STREET TIFTON, GA 31793 (31.470402, -83.491076)
## 2987                        1800 EAST PARK AVE STATE COLLEGE, PA 16803 (40.820475, -77.848101)
## 2988                               218 CORPORATE DRIVE HOUMA, LA 70360 (29.600053, -90.750288)
## 2989                                                             11750 BIRD RD MIAMI, FL 33175
## 2990                          251 NORTH FOURTH STREET OAKLAND, MD 21550 (39.413325, -79.40273)
## 2991                 1060 FIRST COLONIAL ROAD VIRGINIA BEACH, VA 23454 (36.864158, -76.028342)
## 2992                      100 MEDICAL PLAZA LAKE SAINT LOUIS, MO 63367 (38.803742, -90.774423)
## 2993                             1416 GEORGE DIETER EL PASO, TX 79936 (31.734985, -106.301578)
## 2994                                 2200 N BRYAN AVE LAMESA, TX 79331 (32.750279, -101.96647)
## 2995                           310 SUNNYVIEW LANE KALISPELL, MT 59901 (48.215685, -114.324753)
## 2996                                 315 N WASHINGTON AVE POST OFFICE BOX 368 VIBORG, SD 57070
## 2997                        2929 WOODLAND PARK DRIVE HOUSTON, TX 77082 (29.732317, -95.580593)
## 2998                                11203 MAIN STREET MARTIN, KY 41649 (37.579105, -82.750351)
## 2999                           11100 EUCLID AVENUE CLEVELAND, OH 44106 (41.507309, -81.607239)
## 3000                            6801 AIRPORT BOULEVARD MOBILE, AL 36608 (30.68169, -88.198329)
## 3001                               725 WELCH ROAD PALO ALTO, CA 94304 (37.437382, -122.175061)
## 3002                               50 UNION STREET ELLSWORTH, ME 04605 (44.546574, -68.415526)
## 3003                               9515 HOLY CROSS LN BREESE, IL 62230 (38.625154, -89.524944)
## 3004                         211 SKYLINE DRIVE WHITE SALMON, WA 98672 (45.722474, -121.469921)
## 3005                             955 S BAILEY AVE SOUTH HAVEN, MI 49090 (42.391252, -86.26413)
## 3006                                   616 E 13TH ST WINAMAC, IN 46996 (41.057384, -86.595641)
## 3007                                                6260 HUDSON CROSSING PKWY HUDSON, OH 44236
## 3008                 885 NORTH SANDUSKY AVENUE UPPER SANDUSKY, OH 43351 (40.841884, -83.28072)
## 3009                            1030 RIVER OAKS DRIVE FLOWOOD, MS 39232 (32.32614, -90.106447)
## 3010                             501 S RAGSDALE JACKSONVILLE, TX 75766 (31.961418, -95.270547)
## 3011                               504 LIPSCOMB STREET BONHAM, TX 75418 (33.57813, -96.167479)
## 3012                       1415 KINCAID STREET MOUNT VERNON, WA 98274 (48.417422, -122.324335)
## 3013                            523 EAST STATE ROAD FAIRVIEW, OK 73737 (36.275208, -98.474399)
## 3014                                  180 ROWLAND WAY NOVATO, CA 94945 (38.098077, -122.55966)
## 3015                           302 SILVER AVE SAN FRANCISCO, CA 94112 (37.728549, -122.430417)
## 3016                           825 CENTENNIAL DRIVE CHADRON, NE 69337 (42.822573, -103.012866)
## 3017                            3333 NORTH WEBB ROAD WICHITA, KS 67226 (37.743966, -97.226326)
## 3018                       100 HOSPITAL DRIVE HENDERSONVILLE, NC 28792 (35.391907, -82.488056)
## 3019                                                          ONE MELLON WAY LATROBE, PA 15650
## 3020                            456 BURNLEY ROAD SCOTTSVILLE, KY 42164 (36.759765, -86.216212)
## 3021                                     865 STONE ST RAHWAY, NJ 07065 (40.612237, -74.291688)
## 3022                       456 GROS VENTRE AVE, RR 1 HARLEM, MT 59526 (48.485189, -108.767001)
## 3023                          345 TENTH AVENUE GRANITE FALLS, MN 56241 (44.808737, -95.542467)
## 3024                                81 BALL PARK ROAD HARLAN, KY 40831 (36.810183, -83.313105)
## 3025                               1400 W 4TH ST COFFEYVILLE, KS 67337 (37.040399, -95.638346)
## 3026                        1201 HEALTH CENTER PARKWAY YUKON, OK 73099 (35.483695, -97.760242)
## 3027                                                   258 SAN JORGE STREET SAN JUAN, PR 00912
## 3028                         10150 SE 32ND AVENUE MILWAUKIE, OR 97222 (45.449714, -122.629791)
## 3029                          2900 LAMB CIRCLE CHRISTIANSBURG, VA 24073 (37.08894, -80.506786)
## 3030                       2325 CORONADO STREET IDAHO FALLS, ID 83404 (43.472524, -111.988717)
## 3031                          2350 MEADOWS BLVD CASTLE ROCK, CO 80109 (39.404112, -104.886146)
## 3032               1638 OWEN DRIVE P O BOX 2000 FAYETTEVILLE, NC 28302 (35.032412, -78.931096)
## 3033                                333 MERCY AVENUE MERCED, CA 95340 (37.340122, -120.465214)
## 3034                         1900 NORTH HIGLEY ROAD GILBERT, AZ 85234 (33.384225, -111.719634)
## 3035                              2000 N DEWEY AVE REEDSBURG, WI 53959 (43.549287, -89.994548)
## 3036                            6500 NEWBERRY RD GAINESVILLE, FL 32605 (29.659699, -82.411597)
## 3037                               240 W TYRONE RD OAK RIDGE, TN 37830 (36.025458, -84.242692)
## 3038                              2835 HWY 231 N SHELBYVILLE, TN 37160 (35.563218, -86.446372)
## 3039                    700 LAWRENCE EXPRESSWAY SANTA CLARA, CA 95051 (37.335456, -121.995767)
## 3040                                 50 LEROY STREET POTSDAM, NY 13676 (44.676085, -74.981451)
## 3041               1139 E SONTERRA BLVD, STE 535 SAN ANTONIO, TX 78258 (29.614494, -98.475459)
## 3042                          1086 FRANKLIN STREET JOHNSTOWN, PA 15905 (40.305198, -78.918249)
## 3043                               1 WICKERSHAM DRIVE MANGUM, OK 73554 (34.891823, -99.502341)
## 3044                            2817 NEW PINERY ROAD PORTAGE, WI 53901 (43.566278, -89.469445)
## 3045                          1300 EAST CENTER STREET PROVO, UT 84605 (40.233569, -111.635831)
## 3046                              6 NORTH COVINGTON COALGATE, OK 74538 (34.539222, -96.224287)
## 3047                           210 WEST WALNUT STREET CANTON, IL 61520 (40.553293, -90.038115)
## 3048                              911 SUNSET DRIVE HOLLISTER, CA 95023 (36.835122, -121.38662)
## 3049                          1334 SW BUCHANAN STREET TOPEKA, KS 66604 (39.041332, -95.693113)
## 3050                        7600 CENTRAL AVENUE PHILADELPHIA, PA 19111 (40.069071, -75.086551)
## 3051                          10655 STEEPLETOP DRIVE HOUSTON, TX 77065 (29.927032, -95.588567)
## 3052                                2000 OGDEN AVENUE AURORA, IL 60504 (41.727722, -88.268415)
## 3053                          3100 TONGASS AVENUE KETCHIKAN, AK 99901 (55.352717, -131.686049)
## 3054                             3636 HIGH STREET PORTSMOUTH, VA 23707 (36.836211, -76.348365)
## 3055                            2501 KENTUCKY AVENUE PADUCAH, KY 42003 (37.073255, -88.628215)
## 3056                             600 SOUTH 13TH STREET PEKIN, IL 61554 (40.563142, -89.633191)
## 3057                         11500 SPACE CENTER BLVD HOUSTON, TX 77059 (29.624827, -95.140249)
## 3058                           601 DALLAS HIGHWAY VILLA RICA, GA 30180 (33.742992, -84.919477)
## 3059                              850 W BARAGA AVE MARQUETTE, MI 49855 (46.543081, -87.411036)
## 3060                                34 PARK STREET NEW HAVEN, CT 06508 (41.305287, -72.936197)
## 3061                        4253 CROSSOVER ROAD FAYETTEVILLE, AR 72703 (36.127243, -94.119063)
## 3062                            909 WEST FIRST STREET SUMNER, IA 50674 (42.847422, -92.109691)
## 3063                         900 W CLAIREMONT AVE EAU CLAIRE, WI 54701 (44.793462, -91.510656)
## 3064                              7500 STATE ROAD CINCINNATI, OH 45255 (39.084376, -84.349243)
## 3065                                  70 EAST STREET METHUEN, MA 01844 (42.725829, -71.169618)
## 3066                  111 FRANKLIN HEALTH COMMONS FARMINGTON, ME 04938 (44.625115, -70.161244)
## 3067                               232 WEST 25TH STREET ERIE, PA 16544 (42.110708, -80.079932)
## 3068                          400 SUNRISE HIGHWAY AMITYVILLE, NY 11701 (40.686843, -73.423128)
## 3069                               2001 STULTS RD HUNTINGTON, IN 46750 (40.905739, -85.490603)
## 3070                           1001 SAINT JOSEPH LANE LONDON, KY 40741 (37.118553, -84.106349)
## 3071                              901 MT VIEW DRIVE SHELTON, WA 98584 (47.226742, -123.115279)
## 3072                                                          100 HEALTHY WAY OLIVIA, MN 56277
## 3073                       815 N VIRGINIA STREET PORT LAVACA, TX 77979 (28.620912, -96.631537)
## 3074                          6245 DE LONGPRE AVE HOLLYWOOD, CA 90028 (34.096192, -118.325371)
## 3075                          8260 ATLEE ROAD MECHANICSVILLE, VA 23116 (37.629352, -77.388102)
## 3076                         400 EAST POLK STREET WASHINGTON, IA 52353 (41.288507, -91.687341)
## 3077                                   1527 MADISON FREDONIA, KS 66736 (37.533641, -95.814816)
## 3078                          100 MEDICAL DRIVE LAKE JACKSON, TX 77566 (29.030091, -95.451388)
## 3079                         5000 UNIVERSITY DR CORAL GABLES, FL 33146 (25.724611, -80.273181)
## 3080                                24 CREE DRIVE LOCK HAVEN, PA 17745 (41.132812, -77.470183)
## 3081                         611 SHERMAN AVE E FORT ATKINSON, WI 53538 (42.929969, -88.827933)
## 3082                                                     9048 SUGAR ESTATE ST THOMAS, VI 00801
## 3083                                      2022 13TH ST AUBURN, NE 68305 (40.392033, -95.85302)
## 3084                                252 ROUTE 601 BELLE MEAD, NJ 08502 (40.464396, -74.682233)
## 3085                         1703 NORTH BUERKLE ST STUTTGART, AR 72160 (34.517773, -91.557572)
## 3086                                  611 ZEAGLER DR PALATKA, FL 32177 (29.642378, -81.693518)
## 3087                               1025 MARSH STREET MANKATO, MN 56001 (44.165047, -93.983738)
## 3088                             100 N MAIN ST CHATTAHOOCHEE, FL 32324 (30.706899, -84.842584)
## 3089                            214 CARTER STREET BERRYVILLE, AR 72616 (36.358225, -93.551993)
## 3090                        1648 HUNTINGDON PIKE MEADOWBROOK, PA 19046 (40.108944, -75.081101)
## 3091                            1465 E PARKDALE AVE MANISTEE, MI 49660 (44.272355, -86.273439)
## 3092                           1325 N HIGHLAND AVENUE AURORA, IL 60506 (41.786906, -88.328909)
## 3093                  93 CAMPUS AVENUE - PO BOX 291 LEWISTON, ME 04243 (44.101414, -70.198216)
## 3094                              320 THIRTEENTH ST WA KEENEY, KS 67672 (39.027219, -99.87162)
## 3095                             611 WEST PARK STREET URBANA, IL 61801 (40.117423, -88.213888)
## 3096                             826 WEST KING STREET OWOSSO, MI 48867 (43.005075, -84.182076)
## 3097                             9888 GENESEE AVENUE LA JOLLA, CA 92037 (32.8855, -117.223022)
## 3098                       611 S MARSHALL AVENUE MCLEANSBORO, IL 62859 (38.087916, -88.541234)
## 3099                                320 LORETTO ROAD LEBANON, KY 40033 (37.570325, -85.259397)
## 3100                          9201 WEST THOMAS ROAD PHOENIX, AZ 85037 (33.479558, -112.257936)
## 3101                           855 N WESTHAVEN DRIVE OSHKOSH, WI 54904 (44.027541, -88.593291)
## 3102                                   600 ROE AVENUE ELMIRA, NY 14905 (42.099256, -76.826668)
## 3103                                2323 TEXAS STREET PECOS, TX 79772 (31.401575, -103.512831)
## 3104                             743 SPRING STREET GAINESVILLE, GA 30501 (34.30335, -83.81737)
## 3105                 7115 GREENVILLE AVENUE SUITE 100 DALLAS, TX 75231 (32.876377, -96.761726)
## 3106                               2400 SOUTH AVENUE A YUMA, AZ 85364 (32.683899, -114.633238)
## 3107                                     214 4TH ST KREMMLING, CO 80459 (40.0575, -106.391183)
## 3108                          2000 PEPPERELL PARKWAY OPELIKA, AL 36801 (32.638055, -85.404003)
## 3109                    1501 PASADENA AVE S SAINT PETERSBURG, FL 33707 (27.753517, -82.738176)
## 3110                                      102 MAJOR ALLEN POST OFFICE BOX 70D MARTIN, SD 57551
## 3111                               3651 COLLEGE BLVD LEAWOOD, KS 66211 (38.927549, -94.628235)
## 3112                               203 HOSPITAL DRIVE RATON, NM 87740 (36.863548, -104.443184)
## 3113                          309 W BEVERLY BLVD MONTEBELLO, CA 90640 (34.016032, -118.100526)
## 3114                                      301 TYSON AV PARIS, TN 38242 (36.296802, -88.311271)
## 3115                          1341 WEST SIXTH STREET WALDRON, AR 72958 (34.896785, -94.106078)
## 3116                          200 MAY STREET SOUTH ATTLEBORO, MA 02703 (41.926025, -71.359812)
## 3117                          1915 EISENHOWER DRIVE SAVANNAH, GA 31416 (32.001255, -81.081663)
## 3118                                               TWO ST VINCENT CIRCLE LITTLE ROCK, AR 72205
## 3119                              240 SPRUCE STREET GRIDLEY, CA 95948 (39.366974, -121.689717)
## 3120                     2170 SOUTH AVENUE SOUTH LAKE TAHOE, CA 96150 (38.912337, -119.997711)
## 3121                             1801 - 16TH STREET GREELEY, CO 80631 (40.413834, -104.709429)
## 3122                                      6001 KYLE PKWY KYLE, TX 78640 (30.007734, -97.85528)
## 3123                             1635 CENTRAL AVE BRIDGEPORT, CT 06610 (41.189798, -73.167534)
## 3124                                1634 ELTON ROAD JENNINGS, LA 70546 (30.239215, -92.663445)
## 3125               200 PERRY HOUSE ROAD, BOX 1447 FITZGERALD, GA 31750 (31.697918, -83.260975)
## 3126                           420 S 5TH AVENUE WEST READING, PA 19611 (40.329863, -75.948059)
## 3127                             719 DETROIT STREET DANVILLE, AR 72833 (35.054823, -93.388543)
## 3128                       8012 SOUTH CRANDON AVENUE CHICAGO, IL 60617 (41.749496, -87.568623)
## 3129                         3200 CANYON LAKE DR RAPID CITY, SD 57702 (44.071261, -103.278376)
## 3130                                    402 MERCER ST QUANAH, TX 79252 (34.296566, -99.741056)
## 3131                       2014 QUAIL HOLLOW CIRCLE FRANKLIN, TN 37067 (35.913836, -86.816709)
## 3132                            31700 TEMECULA PKWY TEMECULA, CA 92592 (33.47929, -117.105744)
## 3133                 301 MEMORIAL MEDICAL PARKWAY DAYTONA BEACH, FL 32117 (29.24275, -81.1093)
## 3134                                                    355 AVE FONT MARTELO HUMACAO, PR 00791
## 3135                                                      4301 MAPLESHADE LANE PLANO, TX 75093
## 3136                        55 FOUNDATION DRIVE FLEMINGSBURG, KY 41041 (38.421539, -83.753094)
## 3137                           1801 WEST ALCOTT FERGUS FALLS, MN 56537 (46.275932, -96.105719)
## 3138                                    711 GREEN RD MADISON, IN 47250 (38.761664, -85.401937)
## 3139                       221 STEWARTS FERRY PIKE NASHVILLE, TN 37214 (36.162901, -86.648369)
## 3140                       1250 S WASHINGTON STREET VAN WERT, OH 45891 (40.850314, -84.581367)
## 3141                    12451 EAST 100TH STREET NORTH OWASSO, OK 74055 (36.298803, -95.835066)
## 3142                     260 HOSPITAL DRIVE SOUTH WILLIAMSON, KY 41503 (37.676373, -82.296581)
## 3143                       3535 SOUTHERN BOULEVARD KETTERING, OH 45429 (39.695603, -84.190993)
## 3144                               306 PRAIRIE AVENUE SW POST OFFICE BOX 160 DE SMET, SD 57231
## 3145                          450 WEST HIGHWAY 22 BARRINGTON, IL 60010 (42.193415, -88.177959)
## 3146                      440 HOPKINSVILLE STREET GREENVILLE, KY 42345 (37.196925, -87.189639)
## 3147                 700 SCOTT & WHITE DRIVE COLLEGE STATION, TX 77845 (30.585988, -96.280407)
## 3148                     801 POLE LINE ROAD WEST TWIN FALLS, ID 83301 (42.591595, -114.496998)
## 3149                                          P O BOX 399, 3307 BARADA ST FALLS CITY, NE 68355
## 3150                   933 EAST PIERCE STREET COUNCIL BLUFFS, IA 51503 (41.268309, -95.836128)
## 3151                        160 EAST MAIN STREET PORT JERVIS, NY 12771 (41.367766, -74.682593)
## 3152                        2450 RIVERSIDE AVENUE MINNEAPOLIS, MN 55454 (44.966335, -93.23812)
## 3153                               3100 E FLETCHER AVE TAMPA, FL 33613 (28.069226, -82.424525)
## 3154                                        3424 KOSSUTH AVENUE & 210TH STREET BRONX, NY 10467
## 3155                    1124 WASHINGTON BOULEVARD NEWCASTLE, WY 82701 (43.848747, -104.188756)
## 3156                              200 SE HOSPITAL AVE STUART, FL 34995 (27.199441, -80.243034)
## 3157                        555 EAST HARDY STREET INGLEWOOD, CA 90301 (33.949086, -118.348214)
## 3158                     923 EAST CENTRAL AVENUE LA FOLLETTE, TN 37766 (36.387967, -84.111365)
## 3159                            1102 W TRENTON ROAD EDINBURG, TX 78539 (26.263341, -98.182849)
## 3160                     501 NORTH LANSDOWNE AVE DREXEL HILL, PA 19026 (39.953877, -75.283921)
## 3161                           4940 EASTERN AVENUE BALTIMORE, MD 21224 (39.287285, -76.552134)
## 3162                     1000 NORTH LEE AVENUE OKLAHOMA CITY, OK 73101 (35.477786, -97.524291)
## 3163                              333 PINE RIDGE BLVD WAUSAU, WI 54401 (44.964503, -89.666372)
## 3164                         45-547 PLUMERIA STREET HONOKAA, HI 96727 (20.076271, -155.470595)
## 3165                          103 J V MANGUBAT DR WAYNESBORO, TN 38485 (35.325355, -87.757533)
## 3166                             1900 COLLEGE AVE LEVELLAND, TX 79336 (33.573273, -102.367755)
## 3167                            16901 LAKESIDE HILLS CT OMAHA, NE 68130 (41.23904, -96.180532)
## 3168                             16 GUION PLACE NEW ROCHELLE, NY 10802 (40.912968, -73.786997)
## 3169                             5409 N KNOXVILLE AVE PEORIA, IL 61614 (40.752496, -89.593254)
## 3170                        7900 LEE'S SUMMIT RD KANSAS CITY, MO 64139 (38.973583, -94.390407)
## 3171                             1415 TULANE AVE NEW ORLEANS, LA 70112 (29.955263, -90.076121)
## 3172                             3901 BEAUBIEN STREET DETROIT, MI 48201 (42.351816, -83.05375)
## 3173                          180 WEST ESPLANADE AVENUE KENNER, LA 70065 (30.02322, -90.27294)
## 3174                              5000 W CHAMBERS ST MILWAUKEE, WI 53210 (43.073465, -87.9761)
## 3175                          1545 E SOUTHLAKE BLVD SOUTHLAKE, TX 76092 (32.94097, -97.127578)
## 3176                              800 W MEETING ST LANCASTER, SC 29720 (34.716906, -80.786842)
## 3177                              8118 GOOD LUCK ROAD LANHAM, MD 20706 (38.980428, -76.864641)
## 3178                     1721 S STEPHENSON AVE IRON MOUNTAIN, MI 49801 (45.808572, -88.044268)
## 3179                               10 HEALTHY WAY ELLENVILLE, NY 12428 (41.732351, -74.380624)
## 3180                         481 INTERSTATE DRIVE MANCHESTER, TN 37355 (35.497932, -86.078141)
## 3181                          1850 TOWN CENTER PARKWAY RESTON, VA 20190 (38.96189, -77.362657)
## 3182                                127 NORTH STREET BATAVIA, NY 14020 (43.003997, -78.177592)
## 3183                                              108 MUNOZ RIVERA STREET BO BALLAJA, PR 00623
## 3184                            1025 S ANAHEIM BLVD ANAHEIM, CA 92805 (33.820566, -117.909002)
## 3185                          830 WASHINGTON STREET WATERTOWN, NY 13601 (43.96489, -75.912761)
## 3186                                5450 FORT STREET TRENTON, MI 48183 (42.115786, -83.211814)
## 3187                         1240 HUFFMAN MILL RD BURLINGTON, NC 27216 (36.063749, -79.502528)
## 3188                                 555 LINN STREET ALLEGAN, MI 49010 (42.520259, -85.856939)
## 3189                               3462 HOSPITAL RD HEALDTON, OK 73438 (34.222991, -97.492178)
## 3190                           12866 TROXLER AVENUE HIGHLAND, IL 62249 (38.757077, -89.667358)
## 3191                           898 COLLEGE STREET MONTICELLO, GA 31064 (33.313982, -83.686877)
## 3192                         1900 SILVER CROSS BLVD NEW LENOX, IL 60451 (41.54543, -87.986049)
## 3193                                    201 LYONS AVE NEWARK, NJ 07112 (40.710054, -74.213787)
## 3194                                700 RIVER DR FORT BRAGG, CA 95437 (39.432613, -123.800797)
## 3195                            1641 WHITEHEAD DRIVE DE WITT, AR 72042 (34.279598, -91.336892)
## 3196                      210 MEDICAL PAVILION DRIVE RAEFORD, NC 28376 (35.031426, -79.108824)
## 3197                   9150 HUEBNER RD SUITE 100 SAN ANTONIO, TX 78240 (29.527605, -98.595995)
## 3198                             1515 E OCEAN AVENUE LOMPOC, CA 93436 (34.640639, -120.439899)
## 3199                                     601 MAIN ST DUNEDIN, FL 34698 (28.014032, -82.783822)
## 3200                          1600 11TH STREET WICHITA FALLS, TX 76301 (33.902312, -98.501482)
## 3201                  455 SILICON VALLEY BOULEVARD SAN JOSE, CA 95138 (37.246742, -121.772916)
## 3202                        100 MEDICAL BOULEVARD CANONSBURG, PA 15317 (40.248477, -80.190434)
## 3203                       1501 WEST ELK AVENUE ELIZABETHTON, TN 37643 (36.343941, -82.249623)
## 3204                              3288 MOANALUA RD HONOLULU, HI 96819 (21.362292, -157.900139)
## 3205                           11375 CORTEZ BLVD BROOKSVILLE, FL 34613 (28.533305, -82.534495)
## 3206                                  900 RIDGE ST STOUGHTON, WI 53589 (42.920317, -89.211319)
## 3207                    9400 ZANE AVENUE NORTH BROOKLYN PARK, MN 55443 (45.124772, -93.356216)
## 3208                    1401 E TRINITY MILLS ROAD CARROLLTON, TX 75006 (32.985001, -96.898221)
## 3209                                1405 EAST KIRK ROAD HUGO, OK 74743 (34.011638, -95.497022)
## 3210                        609 MEDICAL CENTER DRIVE DECATUR, TX 76234 (33.220263, -97.593107)
## 3211                         2827 FORT MISSOULA RD MISSOULA, MT 59804 (46.842062, -114.055919)
## 3212                                 7601 OSLER DRIVE TOWSON, MD 21204 (39.388123, -76.613278)
## 3213                        9485 CRESTWYN HILLS COVE MEMPHIS, TN 38125 (35.042218, -89.746423)
## 3214                 501 SIXTH AVENUE SOUTH SAINT PETERSBURG, FL 33701 (27.764249, -82.641012)
## 3215                                                 2505 U S HIGHWAY 431 NORTH BOAZ, AL 35957
## 3216                               601 CHILDREN'S LANE NORFOLK, VA 23507 (36.86176, -76.30137)
## 3217                                       600 NORTH HIGHLAND SPRINGS AVENUE BANNING, CA 92220
## 3218                          24800 SE STARK STREET GRESHAM, OR 97030 (45.519053, -122.408279)
## 3219                           102 E LAKE MEAD DR HENDERSON, NV 89015 (36.038829, -114.983192)
## 3220                                 1101 OCILLA ROAD DOUGLAS, GA 31533 (31.509589, -82.86346)
## 3221                                3559 PINE ST DECKERVILLE, MI 48427 (43.528161, -82.733773)
## 3222                           2001 KINGSLEY AVE ORANGE PARK, FL 32073 (30.164807, -81.738598)
## 3223                        6420 CLAYTON RD RICHMOND HEIGHTS, MO 63117 (38.633943, -90.310138)
## 3224                       3015 N BALLAS RD TOWN AND COUNTRY, MO 63131 (38.635532, -90.443636)
## 3225                                1305 W CHEROKEE STREET - HIGHWAY 19 WEST LINDSAY, OK 73052
## 3226                           1201 WEST FRANK STREET LUFKIN, TX 75901 (31.337324, -94.742481)
## 3227                       630 EAST MEDICAL DRIVE BOUNTIFUL, UT 84010 (40.886855, -111.868618)
## 3228                         110 HOSPITAL DRIVE JEFFERSON CITY, TN 37760 (36.10686, -83.51964)
## 3229                                    100 MERCY WAY JOPLIN, MO 64804 (37.034697, -94.511799)
## 3230                            630 EAST RIVER STREET ELYRIA, OH 44035 (41.366935, -82.097791)
## 3231                          7700 SOUTH BROADWAY LITTLETON, CO 80122 (39.576554, -104.988489)
## 3232             2600 EAST PFLUGERVILLE PARKWAY PFLUGERVILLE, TX 78660 (30.446739, -97.584466)
## 3233               500 NORTH CLARENCE NASH BOULEVARD WATONGA, OK 73772 (35.849455, -98.419248)
## 3234                             16088 SAN PEDRO SAN ANTONIO, TX 78232 (29.587955, -98.474198)
## 3235                            155 WILSON AVENUE WASHINGTON, PA 15301 (40.183244, -80.247471)
## 3236                           2801 SOUTH MAYHILL ROAD DENTON, TX 76208 (33.17697, -97.088199)
## 3237                                4 MEDICAL DRIVE ELBERTON, GA 30635 (34.113068, -82.875601)
## 3238                           245 MEDICAL PARK DRIVE MARION, VA 24354 (36.850466, -81.489801)
## 3239                            238 BARNES ROAD WILLIAMSTOWN, KY 41097 (38.647862, -84.578264)
## 3240                               200 W CHURCH ST LEXINGTON, TN 38351 (35.654195, -88.398838)
## 3241                          2570 HAYMAKER ROAD MONROEVILLE, PA 15146 (40.428425, -79.751254)
## 3242                    201 EAST PLEASANT STREET TAYLORVILLE, IL 62568 (39.553753, -89.293754)
## 3243                         1000 MCKINLEY PARK DRIVE MARION, OH 43302 (40.571602, -83.128048)
## 3244                        400 EAST MAIN STREET MOUNT KISCO, NY 10549 (41.196692, -73.724449)
## 3245                                340 BAGLEY CIRCLE MARION, VA 24354 (36.833688, -81.511048)
## 3246                           2776 CLEVELAND AVE FORT MYERS, FL 33901 (26.626924, -81.872295)
## 3247                   1201 BISHOP ST, PO BOX 310 UNION CITY, TN 38261 (36.414423, -89.039037)
## 3248                            6655 SOUTH YALE AVENUE TULSA, OK 74136 (36.066695, -95.922073)
## 3249                          8 DOCTORS PARK RD MOUNT VERNON, IL 62864 (38.312314, -88.936788)
## 3250                        1570 NC 8 & 89 HWY NORTH DANBURY, NC 27016 (36.417437, -80.230776)
## 3251                        310 WEST HALSELL STREET DIMMITT, TX 79027 (34.555591, -102.315764)
## 3252                            262 LEROY GEORGE DRIVE CLYDE, NC 28721 (35.527856, -82.945437)
## 3253                           901 LAKESHORE DRIVE ISHPEMING, MI 49849 (46.498665, -87.682993)
## 3254                                150 PIONEER LANE BISHOP, CA 93514 (37.362108, -118.407362)
## 3255                            615 OLD SYMSONIA ROAD BENTON, KY 42025 (36.868182, -88.368072)
## 3256                         1324 FIFTH NORTH STREET NEW ULM, MN 56073 (44.312504, -94.475174)
## 3257                             1101 SUMMIT ROAD CINCINNATI, OH 45237 (39.194157, -84.473977)
## 3258                              250 OLD HOOK ROAD WESTWOOD, NJ 07675 (40.983658, -74.014195)
## 3259                               301 W WALNUT STREET AMITE, LA 70422 (30.733072, -90.512344)
## 3260                          901 WEST BEN WHITE BLVD AUSTIN, TX 78704 (30.227308, -97.773944)
## 3261                               1153 CENTRE STREET BOSTON, MA 02130 (42.300886, -71.127203)
## 3262                         13652 CANTARA ST PANORAMA CITY, CA 91402 (34.219847, -118.430299)
## 3263                       2301 US HIGHWAY 74 WEST WADESBORO, NC 28170 (34.978532, -80.109679)
## 3264                                                STATE ROUTE 264 SOUTH 191 GANADO, AZ 86505
## 3265                          2900 N RIVER RD WEST LAFAYETTE, IN 47906 (40.459145, -86.892602)
## 3266                         10101 RIDGEGATE PKWY LONE TREE, CO 80124 (39.529323, -104.870269)
## 3267                           1955 WEST FRYE ROAD CHANDLER, AZ 85224 (33.298691, -111.873508)
## 3268                              PUERTO RICO MEDICAL CENTER IN RIO PIEDRAS SAN JUAN, PR 00935
## 3269                               506 LENOX AVENUE NEW YORK, NY 10037 (40.814482, -73.940495)
## 3270                                455 PARK GROVE LANE KATY, TX 77450 (29.778341, -95.749619)
## 3271                             18951 MEMORIAL NORTH HUMBLE, TX 77338 (29.994565, -95.275482)
## 3272                    8102 CLEARVISTA PARKWAY INDIANAPOLIS, IN 46256 (39.902814, -86.039284)
## 3273                               2901 N FOURTH ST LONGVIEW, TX 75605 (32.532201, -94.728814)
## 3274                                          9 J STREET EXT HERMANAS DAVILA BAYAMON, PR 00959
## 3275                           557 W WASHINGTON STREET BURNS, OR 97720 (43.588723, -119.06057)
## 3276                           11101 N SHERMAN ROAD EDGERTON, WI 53534 (42.834872, -89.043024)
## 3277                             1211 24TH STREET ANACORTES, WA 98221 (48.502883, -122.615825)
## 3278                                                       CARR 135 KM 64 2 CASTANER, PR 00631
## 3279                      300 - 68TH STREET, SE GRAND RAPIDS, MI 49548 (42.840766, -85.656503)
## 3280                         1700 WEST TOWNLINE ROAD CRESTON, IA 50801 (41.071214, -94.383744)
## 3281                             175 MADISON AVE MOUNT HOLLY, NJ 08060 (39.985698, -74.795832)
## 3282              500 MARTHA JEFFERSON DRIVE CHARLOTTESVILLE, VA 22911 (38.025106, -78.444855)
## 3283                                      600 E BLVD ELKHART, IN 46514 (41.678761, -85.991833)
## 3284                           1024 S LEMAY AVE FORT COLLINS, CO 80524 (40.573724, -105.05786)
## 3285                                    2001 SOUTH MAIN HOPE, AR 71801 (33.648008, -93.587052)
## 3286                             822 W 4TH STREET LEADVILLE, CO 80461 (39.244392, -106.303302)
## 3287                     10300 SW EASTRIDGE STREET PORTLAND, OR 97225 (45.506265, -122.783797)
## 3288                               169 MARTIN AVENUE EPHRATA, PA 17522 (40.186866, -76.184268)
## 3289             4011 S MONROE MEDICAL PARK BLVD BLOOMINGTON, IN 47403 (39.121202, -86.573323)
## 3290                      235 STATE STREET SAINT CROIX FALLS, WI 54024 (45.409134, -92.642218)
## 3291                      1000 EAST WASHINGTON STREET MEDINA, OH 44256 (41.138885, -81.836933)
## 3292                          10 SOUTH HOSPITAL DRIVE FULTON, MO 65251 (38.842247, -91.966202)
## 3293                                421 S MAIN ST CROSSVILLE, TN 38555 (35.942713, -85.023007)
## 3294                         201 NW R D MIZE RD BLUE SPRINGS, MO 64014 (39.023528, -94.266042)
## 3295                           1 MEDICAL CENTER DRIVE LEBANON, NH 03756 (43.67797, -72.273746)
## 3296                                         2300 MARIE CURIE BLVD 5TH FLOOR GARLAND, TX 75042
## 3297                          2863 STATE ROUTE 45 ROCK CREEK, OH 44084 (41.672446, -80.856723)
## 3298                     2122 MANCHESTER EXPRESSWAY COLUMBUS, GA 31995 (32.506927, -84.961378)
## 3299                                   3801 SPRING ST RACINE, WI 53405 (42.733346, -87.825173)
## 3300                                601 HAMILTON AVE TRENTON, NJ 08629 (40.217126, -74.742576)
## 3301                                 99 RT 37 WEST TOMS RIVER, NJ 08755 (39.965083, -74.21449)
## 3302                           1600 HOSPITAL PARKWAY BEDFORD, TX 76022 (32.833513, -97.125241)
## 3303                           11100 EUCLID AVENUE CLEVELAND, OH 44106 (41.507309, -81.607239)
## 3304                            3999 RICHMOND ROAD BEACHWOOD, OH 44122 (41.453271, -81.497708)
## 3305                              1600 WALLACE BLVD AMARILLO, TX 79106 (35.195115, -101.91885)
## 3306                              1645 LUTCHER AVENUE LUTCHER, LA 70071 (30.051391, -90.70189)
## 3307                                   2101 E DUBOIS DR WARSAW, IN 46580 (41.24643, -85.82832)
## 3308                            865 SOUTH FIRST STREET JESUP, GA 31545 (31.602952, -81.899094)
## 3309                       1708 WEST ROGERS AVENUE BALTIMORE, MD 21209 (39.362029, -76.653551)
## 3310                   11 UPPER RIVERDALE ROAD, SW RIVERDALE, GA 30274 (33.577524, -84.390432)
## 3311                                    1375 N MAIN ST LAPEER, MI 48446 (43.06271, -83.319345)
## 3312                         205 PALMER AVENUE BELLEFONTAINE, OH 43311 (40.368954, -83.756703)
## 3313                                     7500 MERCY RD OMAHA, NE 68124 (41.237904, -96.028717)
## 3314                                59 PAGE HILL ROAD BERLIN, NH 03570 (44.487099, -71.156548)
## 3315                                 13207 RAVENNA RD CHARDON, OH 44024 (41.508925, -81.19362)
## 3316                     401 PARNASSUS AVENUE SAN FRANCISCO, CA 94143 (37.763753, -122.456966)
## 3317                          189 EAST MAIN STREET WESTFIELD, NY 14787 (42.327901, -79.569397)
## 3318                          401 NORTHWEST H STREET STIGLER, OK 74462 (35.260809, -95.128942)
## 3319                              P O BOX 34400, 6901 NORTH 72ND ST, STE 20300 OMAHA, NE 68122
## 3320                                     707 14TH ST BARABOO, WI 53913 (43.480607, -89.731194)
## 3321                        10501 EAST 91ST STREET SOUTH TULSA, OK 74133 (36.03189, -95.85692)
## 3322                                300 HIGHLAND AVE HANOVER, PA 17331 (39.807981, -76.983731)
## 3323                            6125 NORTH FRESNO ST FRESNO, CA 93710 (36.824644, -119.781416)
## 3324                                    201 S 14TH ST HERRIN, IL 62948 (37.801613, -89.026508)
## 3325                             5460 WEST SAHARA LAS VEGAS, NV 89146 (36.144491, -115.216021)
## 3326                            10109 EAST 79TH STREET TULSA, OK 74133 (36.046339, -95.864211)
## 3327                     1227 EAST RUSHOLME STREET DAVENPORT, IA 52803 (41.542837, -90.556958)
## 3328                              915 HIGHLAND BLVD BOZEMAN, MT 59715 (45.670278, -111.017239)
## 3329                                  181 MAIN STREET NORWAY, ME 04268 (44.209539, -70.532978)
## 3330                         651 WILLOW GROVE ST HACKETTSTOWN, NJ 07840 (40.861646, -74.81378)
## 3331                                  2900 W 16TH ST BEDFORD, IN 47421 (38.860988, -86.512167)
## 3332                         473 E GREENVILLE AVE WINCHESTER, IN 47394 (40.167877, -84.970394)
## 3333                           1044 BELMONT AVENUE YOUNGSTOWN, OH 44501 (41.114321, -80.65571)
## 3334                  50 NORTH MEDICAL DRIVE SALT LAKE CITY, UT 84132 (40.772019, -111.837022)
## 3335                                300 HOSPITAL DR VALLEJO, CA 94589 (38.130893, -122.238105)
## 3336                                 1305 N ELM ST HENDERSON, KY 42420 (37.853858, -87.581257)
## 3337                            901 WEST MAIN STREET FREEHOLD, NJ 07728 (40.23566, -74.312025)
## 3338                            708 N 18TH STREET MARYSVILLE, KS 66508 (39.847991, -96.635952)
## 3339                        1050 VALDOSTA HIGHWAY HOMERVILLE, GA 31634 (31.032651, -82.763858)
## 3340                                  3700 KOLBE ROAD LORAIN, OH 44053 (41.436002, -82.235212)
## 3341                          18300 HIGHWAY 18 APPLE VALLEY, CA 92307 (34.542046, -117.265602)
## 3342                          1401 ST. JOSEPH PARKWAY HOUSTON, TX 77002 (29.747898, -95.36639)
## 3343                     2555 JIMMY JOHNSON BLVD PORT ARTHUR, TX 77640 (29.934952, -93.985007)
## 3344                           1600 W WALNUT ST JACKSONVILLE, IL 62650 (39.745268, -90.259912)
## 3345                             2115 PARKVIEW DRIVE EL RENO, OK 73036 (35.530699, -97.980315)
## 3346                   12251 SOUTH 80TH AVENUE PALOS HEIGHTS, IL 60463 (41.668955, -87.815976)
## 3347                                                         2190 HWY 85 N NICEVILLE, FL 32578
## 3348                         1980 E WOODSMALL DR TERRE HAUTE, IN 47802 (39.376008, -87.386168)
## 3349                                  205 N EAST AVE JACKSON, MI 49201 (42.250356, -84.393603)
## 3350                                  718 TEANECK RD TEANECK, NJ 07666 (40.882377, -74.008629)
## 3351                            18646 OXNARD STREET TARZANA, CA 91356 (34.179958, -118.539759)
## 3352                                          100 DOCTOR WARREN TUTTLE DR HARRISBURG, IL 62946
## 3353                                                      5848 SOUTH 300 EAST MURRAY, UT 84107
## 3354                                1208 6TH AVE E SUPERIOR, MT 59872 (47.184726, -114.876579)
## 3355                          2510 N CALIFORNIA ST STOCKTON, CA 95204 (37.976277, -121.291374)
## 3356                                      460 ANDES ROAD DELHI, NY 13753 (42.26687, -74.91685)
## 3357                          700 EAST BROAD STREET HAZLETON, PA 18201 (40.950464, -75.963454)
## 3358                               161 MOUNT PELIA RD MARTIN, TN 38237 (36.333569, -88.869022)
## 3359                              125 HOSPITAL DR SPRUCE PINE, NC 28777 (35.91103, -82.064593)
## 3360                                                         P O BOX 4030 PETERSBURG, VA 23803
## 3361                                       702 N MAIN ST OPP, AL 36467 (31.291972, -86.255415)
## 3362                                    8885 SR 237 TELL CITY, IN 47586 (37.96865, -86.729561)
## 3363                             1995 HIGHWAY 51 S COVINGTON, TN 38019 (35.535248, -89.676169)
## 3364                    1200 EAST 3900 SOUTH SALT LAKE CITY, UT 84124 (40.687062, -111.857446)
## 3365                                 1 ELLIOT WAY MANCHESTER, NH 03103 (42.982795, -71.435739)
## 3366                                 801 LOCUST ST LA CROSSE, KS 67548 (38.530597, -99.316572)
## 3367                           10455 LINCOLN HIGHWAY EVERETT, PA 15537 (40.024721, -78.433255)
## 3368                                 965 SHAMROCK LANE CORRY, PA 16407 (41.935379, -79.612891)
## 3369                                628 E 12TH ST WASHINGTON, NC 27889 (35.548662, -77.038833)
## 3370                                321 MADISON ST SHERIDAN, MT 59749 (45.452585, -112.191453)
## 3371                          727 HOSPITAL DRIVE SHELBYVILLE, KY 40065 (38.208808, -85.236145)
## 3372                    920 BELL AVENUE PO BOX 188 WESTBROOK, MN 56183 (44.045285, -95.438891)
## 3373                   700 EAST UNIVERSITY AVENUE DES MOINES, IA 50316 (41.600393, -93.610756)
## 3374                     504 NORTH CLEVELAND STREET MOUNT AYR, IA 50854 (40.71833, -94.223613)
## 3375                                  126 HOSPITAL AVE OZARK, AL 36360 (31.451345, -85.630966)
## 3376                               5435 E 16TH ST INDIANAPOLIS, IN 46218 (39.7889, -86.076344)
## 3377                        8400 NORTHWEST BLVD INDIANAPOLIS, IN 46278 (39.906702, -86.266258)
## 3378                           123 MCCOMB AVENUE PORT GIBSON, MS 39150 (31.945992, -90.985395)
## 3379                              1872 ST LUKE'S BLVD EASTON, PA 18045 (40.650061, -75.288531)
## 3380                           2801 ATLANTIC AVE LONG BEACH, CA 90806 (33.807107, -118.185098)
## 3381                         310 SOUTH ROOSEVELT GOLDENDALE, WA 98620 (45.820239, -120.812299)
## 3382                                  404 N CHESTNUT JOHNSON, KS 67855 (37.574165, -101.74941)
## 3383                     2187 NORTH VICKEY STREET FLAGSTAFF, AZ 86004 (35.206641, -111.606008)
## 3384                               535 SOUTH FREEBORN MARION, KS 66861 (38.342708, -97.010014)
## 3385                                          MEDICAL CENTER BOULEVARD WINSTON-SALEM, NC 27157
## 3386                              187 WOLFORD AVENUE LIBERTY, KY 42539 (37.317809, -84.931717)
## 3387                           7821 EAST HIGHWAY 153 WINTERS, TX 79567 (31.949862, -99.959824)
## 3388                                602 MICHIGAN AVE HOLLAND, MI 49423 (42.774581, -86.112772)
## 3389                          3300 GALLOWS ROAD FALLS CHURCH, VA 22042 (38.857674, -77.225833)
## 3390                             75 PARK STREET ELIZABETHTOWN, NY 12932 (44.21543, -73.596624)
## 3391                          800 W RANDOL MILL RD ARLINGTON, TX 76012 (32.750126, -97.116086)
## 3392            515 SOUTH MOORE STREET, PO BOX 160 BLUE EARTH, MN 56013 (43.63429, -94.100884)
## 3393             111 W 10TH AVE POST OFFICE BOX 420 REDFIELD, SD 57469 (44.871967, -98.520169)
## 3394                        3360 BURNS RD PALM BEACH GARDENS, FL 33410 (26.830685, -80.085388)
## 3395                              145 PEACOCK STREET COCHRAN, GA 31014 (32.384545, -83.345927)
## 3396                           30 SOUTH BEHL STREET APPLETON, MN 56208 (45.199658, -96.009224)
## 3397                         1525 WEST 5TH STREET STORM LAKE, IA 50588 (42.644356, -95.222008)
## 3398                          1600 N CHESTNUT AVE MARSHFIELD, WI 54449 (44.682063, -90.164903)
## 3399                                550 FIRST AVENUE NEW YORK, NY 10016 (40.74226, -73.974661)
## 3400                             1101 26TH ST S GREAT FALLS, MT 59405 (47.491848, -111.262615)
## 3401                                 150 DUNCAN ROAD BUCKEYE, WV 24924 (38.201423, -80.108701)
## 3402                                                P O BOX 310, 706 EWING AVE GENOA, NE 68640
## 3403                              13535 NEMOURS PKWY ORLANDO, FL 32827 (28.374908, -81.276694)
## 3404                            4801 INTEGRIS PARKWAY EDMOND, OK 73034 (35.643593, -97.420038)
## 3405                               5200 HARROUN ROAD SYLVANIA, OH 43560 (41.711013, -83.69442)
## 3406              100 N E SAINT LUKE'S BOULEVARD LEES SUMMIT, MO 64086 (38.940551, -94.378443)
## 3407                250 HOSPITAL DRIVE PO BOX 1817 LEXINGTON, NC 27293 (35.802754, -80.287224)
## 3408                                                 1323 WEST 6TH STREET STILLWATER, OK 74076
## 3409                              #4 HOSPITAL DRIVE MORRILTON, AR 72110 (35.16997, -92.721702)
## 3410                     1680 EAST 120TH STREET LOS ANGELES, CA 90059 (33.924361, -118.244331)
## 3411                              903 SOUTH ADAMS RITZVILLE, WA 99169 (47.120959, -118.372258)
## 3412                                1100 WEST BLUFF WOODVILLE, TX 75979 (30.775287, -94.42822)
## 3413                                2525 S DOWNING ST DENVER, CO 80210 (39.67064, -104.973482)
## 3414                               1102 ROSE STREET PRENTISS, MS 39474 (31.593991, -89.872381)
## 3415                              2233 W DIVISION ST CHICAGO, IL 60622 (41.903104, -87.683213)
## 3416                    510 ROOSEVELT STREET AMERICAN FALLS, ID 83211 (42.781858, -112.849047)
## 3417                     1 MEDICAL CENTER BOULEVARD COOKEVILLE, TN 38501 (36.16996, -85.50935)
## 3418                                903 N COURT STREET QUITMAN, GA 31643 (30.795012, -83.5595)
## 3419                                                        ONE MEMORIAL DRIVE ALTON, IL 62002
## 3420                              18321 CLARK STREET TARZANA, CA 91356 (34.169777, -118.53183)
## 3421                          5000 MEMORIAL DRIVE TWO RIVERS, WI 54241 (44.125862, -87.615137)
## 3422                                  6250 HWY 83/84 ABILENE, TX 79606 (32.374006, -99.742595)
## 3423                                 209 MOLLER DRIVE SITKA, AK 99835 (57.058992, -135.345929)
## 3424                                                  BAY AND HIGHLAND AVE MONTCLAIR, NJ 07042
## 3425                                      905 MAIN ST LISBON, ND 58054 (46.437002, -97.681427)
## 3426                  258 PINE TREE DRIVE PO BOX 258 BIGFORK, MN 56628 (47.746885, -93.646822)
## 3427                       1110 GULF BREEZE PKWY GULF BREEZE, FL 32561 (30.358649, -87.156803)
## 3428                               200 HOSPITAL DRIVE ANAHUAC, TX 77514 (29.753012, -94.68685)
## 3429                           7400 BARLITE BLVD SAN ANTONIO, TX 78224 (29.352988, -98.546589)
## 3430                     1000 SAINT CHRISTOPHER DRIVE ASHLAND, KY 41101 (38.509303, -82.69305)
## 3431                             1400 SOUTH DOBSON ROAD MESA, AZ 85202 (33.39091, -111.874624)
## 3432                         700 WEST AVENUE SOUTH LA CROSSE, WI 54601 (43.804038, -91.239557)
## 3433                    83825 HIGHWAY 9 P O BOX 1270 ASHLAND, AL 36251 (33.276548, -85.823789)
## 3434                        701 NORTH BROADWAY SLEEPY HOLLOW, NY 10591 (41.107555, -73.859639)
## 3435                                401 GETWELL DR SENATOBIA, MS 38668 (34.624678, -89.956744)
## 3436                               725 AMERICAN AVE WAUKESHA, WI 53188 (43.011279, -88.245522)
## 3437                          2041 GEORGIA AVE NW WASHINGTON, DC 20060 (38.917011, -77.021896)
## 3438                            1301 N ROSE DRIVE PLACENTIA, CA 92870 (33.886612, -117.842096)
## 3439                          2251 NORTH SHORE DR RHINELANDER, WI 54501 (45.638482, -89.31114)
## 3440                             98 POPLAR STREET BLACKFOOT, ID 83221 (43.192952, -112.347442)
## 3441                              250 W 9TH STREET HOISINGTON, KS 67544 (38.521549, -98.77941)
## 3442                        2661 COUNTY HWY I CHIPPEWA FALLS, WI 54729 (44.951661, -91.358217)
## 3443                        700 EAST ALICE STREET BLACKFOOT, ID 83221 (43.187269, -112.336601)
## 3444                                                     40100 US HWY 27 N DAVENPORT, FL 33837
## 3445                 8TH AVENUE AND C STREET SALT LAKE CITY, UT 84143 (40.778509, -111.880576)
## 3446                                                            WASHINGTON ST ELMIRA, NY 14901
## 3447                                    751 DERBY DRIVE YORK, AL 36925 (32.491825, -88.296081)
## 3448                             2525 SEVERN AVENUE METAIRIE, LA 70002 (29.999162, -90.159583)
##  [ reached 'max' / getOption("max.print") -- omitted 1896 rows ]
res <- dbSendQuery(con, "SELECT * FROM hospital_info WHERE Facility_ID = '400120'")
dbFetch(res)
##   Facility_ID         Facility_Name              Address   City State
## 1      400120 HIMA SAN PABLO-CAGUAS AVE LUIS MUNOZ MARIN CAGUAS    PR
##   ZIP_Code County_Name   Phone_Number        Hospital_Type
## 1    00725      CAGUAS (787) 653-3434 Acute Care Hospitals
##   Hospital_Ownership Emergency_Services
## 1        Proprietary               true
##   Meets_criteria_for_meaningful_use_of_EHRs Hospital_overall_rating
## 1                                                                 1
##   Hospital_overall_rating_footnote Mortality_national_comparison
## 1                               17  Same as the national average
##   Mortality_national_comparison_footnote
## 1                                       
##   Safety_of_care_national_comparison
## 1                      Not Available
##   Safety_of_care_national_comparison_footnote
## 1                                          16
##   Readmission_national_comparison Readmission_national_comparison_footnote
## 1      Below the national average                                         
##   Patient_experience_national_comparison
## 1                          Not Available
##   Patient_experience_national_comparison_footnote
## 1                                              16
##   Effectiveness_of_care_national_comparison
## 1                Below the national average
##   Effectiveness_of_care_national_comparison_footnote
## 1                                                   
##   Timeliness_of_care_national_comparison
## 1                          Not Available
##   Timeliness_of_care_national_comparison_footnote
## 1                                               5
##   Efficient_use_of_medical_imaging_national_comparison
## 1                                        Not Available
##   Efficient_use_of_medical_imaging_national_comparison_footnote
## 1                                                            16
##                                Location
## 1 AVE LUIS MUNOZ MARIN CAGUAS, PR 00725
dbListFields(con, "spending_by_beneficiary")
## Warning: Closing open result set, pending rows
##  [1] "Facility.ID"   "Facility.Name" "Address"       "City"         
##  [5] "State"         "ZIP.Code"      "County.Name"   "Phone.Number" 
##  [9] "Measure.ID"    "Measure.Name"  "Score"         "Footnote"     
## [13] "Start.Date"    "End.Date"      "Location"
# Disconnect from the database
dbDisconnect(con)